Questions (2348)

Votes
Answers
Views
Question
0
votes
1
answer
144
views
asked 7 years ago by
Category: Stock Scanners
I'm new here and apologize in advance if this is a stupid question. Here's the pseudocode for the scan I'm trying to create: ADX(14) is greater than 30 ADX(14) in this period is higher than ADX(14) in the last period Current bar high is higher than S...
0
votes
0
answers
446
views
Be first to answer!
asked 7 years ago by
Category: Chart Studies
  This is my code for an arrow that plots for me. Is there any way I can add text under that arrow? Thanks! plot edArrow = if signal then low else Double.NaN; edArrow.SetDefaultColor(Color.PLUM); edArrow.SetPaintingStrategy(PaintingStrategy.ARRO...
0
votes
1
answer
141
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, Please help to set up scan for these conditions: Scan for Buy 1) Price crosses above SMA 50 (must be a fresh cross) 2) StochasticFull (k period=8; d period=3) - k period must be below 40 at least; k period increases 5 points from the lowest ...
0
votes
1
answer
65
views
asked 7 years ago by
Category: Chart Studies
Hahn, I have a lower study that plots a number value. How can I color code that value the same color as the candlestick for that day? So if there was a green candlestick on July 27th I need the plot color green. If there was a red candlestick on July...
0
votes
1
answer
59
views
asked 7 years ago by
Category: Chart Studies
Hi Pete, When you use a script multiple times in a quote does it run once or one for each occurrence e.g. def pcc = sp_ichimoku17072101()."price_confirmed_by_chikou"; def ccf = sp_ichimoku17072101()."chikou_crossed_first";
0
votes
1
answer
42
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, I want to modify a script's runtime. using a drawing or anything else would let me setup any symbol without having to edit the values on the script edit panel for each one. i.e. def foo = getdrawingvalue(type);
0
votes
2
answers
20
views
asked 7 years ago by
Category: Strategy Guide
how do you study to buy & sell automatic on trade. I have problem with the code to generators to buy and sell on the indicator to do it automatic.
0
votes
1
answer
202
views
asked 7 years ago by
Category: Chart Studies
Hi Pete, Please take a look at the code below and attached images. I notices that there're times the scanner is not working correctly (I set it to scan on 15 mins.). RSI is below the centerline (50), but it alerts as above 50. Any bug? Please advise....
0
votes
1
answer
668
views
asked 7 years ago by
Category: Chart Studies
Hi Pete, Have you done any study regarding trendlines? Please advise.
0
votes
1
answer
517
views
asked 7 years ago by
Category: Stock Scanners
Hi Pete, Using the code below, how do I set up the scanner to alert with sound when price crosses up 50 or crosses down 50 (it must be a fresh cross though to avoid chops). Please advise. declare lower; input length = 14; input price = close; input a...