Hi,
How can i backtest the following strategy:
timeframe(DAILY)
EMA50=ExponentialAverage[50](Close)
C1=Summation[12](Close<EMA50)=12
ATRpercent=100*(AverageTrueRange[14](close))/close
c2 = ATRpercent>=3
C3=Close*Average[30](Volume)>7500000
c4= close>open
C5=(high-close) >= (close- Low)
test = c1 AND C2 AND C3 and c4 and c5
screener[test]
If above requirements are met:
Go short 3 cents below the low of last candle
Exit the trade on the first close above EMA10 (daily)
Thanks
gr Marco