Comment on Code your Technical Analysis strategy
Hi,
1. I have written the algoz code in the attached screenshot for
buy signal when 3 EMA break 15 EMA and RSI(14) > 30
sell signal when 15 EMA break 3 EMA and RSI(14) < 70.
Please let me know if any mistake from below code.
CROSSOVER(EMA(CLOSE, 3), EMA(CLOSE, 15)) AND RSI(CLOSE, 14) >30
CROSSOVER(EMA(CLOSE,15), EMA(CLOSE, 3)) AND RSI(CLOSE, 14) < 70
2. I would like to know how this strategy is executed ?
whether this strategy is executed automatically or it just gives alert message ? ( because buy signal already generated long back according to my Time frame 30 min chart)
3. would the strategy be live all the day ?