Bos.Participant
Veteran
Hi there folks,
I’m finding one of the indicators from here displays quite valid setups to add to a watchlist, i’m hoping that someone can please convert the indi to a screener so I can run a scan to bring up pairs that match the criteria of the indicator at the close of the current candle. I’ve attached the indicator and a screenshot displaying the signals displayed by the indicator.
Any help would be greatly appreciated.
Thanks folks.
This is the code of screener:
p = 10
fi=ForceIndex(close)
bu=BollingerUp[p](fi)
bd=BollingerDown[p](fi)
breakValue=0
// Check statistical anomaly(BollingerBands) on price by volume(ForceIndex)
if fi >= bu then // here the BreakOut
breakValue=1
elsif fi <= bd then // here the BreakDown
breakValue=1
endif
screener[breakvalue] (breakvalue)
It should returns the case of when the ForceIndex indicator is breaking its own 2 standard deviation of the last 10 periods.