Hi,
All the screeners I have build so far are using the intraday data (open, close, high and low). Now I am looking to build a screener that uses end of the day data with the purpose to start a new trading day based on the screener results of the close of the day before. Does anyone know how to build in this criteria?
Thank you……
Make a whole condition variable that stored all your screener conditions:
majorcondition = minor1 and minor2 and minor3
Test if majorcondition was true at previous candle:
screener [ majorcondition[1] ]
Thank you, it seems to work on this inside bar (Harami) screener on the daily timeframe.
//Inside Bar screener door Marcel van Vliet
//Versie 1.1
//Datum 06-11-2017
majorcondition = (C1) or (C2)
C1= Exponentialaverage[50]>AVERAGE[200] and High[1]>Exponentialaverage[50] and High<High[1] and Low>Low[1]and Open>Open[1] and Close<Close[1]
C2= Exponentialaverage[50]<AVERAGE[200] and High[1]<Exponentialaverage[50] and High<High[1] and Low>Low[1]and Open<Open[1] and Close>Close[1]
screener [ majorcondition[1] ]