Comment on algoZ- a simple example
Hello zerodha.
How can write strategy for different time frame . Suppose i want to write following strategy for 5 min candles.
Also i want use Fibonacci retracement condition for ex buy IF close>38% level
Buy;
close>ema(close,110)&CCI(simple,14)>100
Sell:
close<ema(close,110)&CCI(simple,14)=-100<CCI(simple,14)<-500 (Is this CCI exp is correct. I want to only sell when CCI is greater than -100 for ex -110,-120)
Where i can write Stop loss for buying and selling
for buy close<EMA(Close,3)
for sell close>EMA(close,3)
Eagerly waiting for your valuable guidance.