Comment on Code your Technical Analysis strategy
Srikanth,
How it works on algoZ is that you write a strategy based on the candle size. So we can write a strategy based on 20 candles, if you open on a daily chart it becomes 20 day, if you open on an intraday minute chart it becomes 20 minute average.
Buy:
CLOSE > SMA (CLOSE, 20) AND SOPK (9, 3, 9, EXPONENTIAL) > 12
Sell:
CLOSE < SMA (CLOSE, 20) AND SOPK (9, 3, 9, EXPONENTIAL) < 85
Cheers,