NR7 trade setup
scan for last 6 day candles range greater than current day candle and give signal. i need code for that
if possible to use in 15 min, 30 min candle then need tradescript code for signal produce?
NR7 trade setup
scan for last 6 day candles range greater than current day candle and give signal. i need code for that
if possible to use in 15 min, 30 min candle then need tradescript code for signal produce?
hElLO tRaDeR,
"scan for last 6 day candles range greater than current day candle and give signal. i need code for that"
Assuming you need a code to identify Scrips where price breaks above the 6 day range.
On the scanner use the following settings:
PERIODICITY = HOUR
BAR INTERVAL = 6
DAYS = 7
CODE:
LAST = HHV(6)
Try this out on your side and let me know the results.