Comment on algoZ- a simple example
Sudarshan, on algoZ we cannot write strategies for different time frames. Strategies are independent of time frame and can be applied on any time frame.
Your expressions are pretty much correct, except for small things.
Buy: CLOSE > EMA(CLOSE,110) AND CCI(14, SIMPLE) > 100
Sell: CLOSE < EMA (CLOSE,110) AND CCI(14, SIMPLE) < -100
Buy Exit: CLOSE<EMA(CLOSE,3)
Sell Exit: CLOSE>EMA(CLOSE,3)
Sorry about the delay in responding.