Algo Trading strategy is getting failed in live chart

Hello @Tradehull_Imran Sir,

I am following your coding standard and recent strategy and also included my logic. For 2 minutes chart, it is giving super performance.

This is the main strategy I used for buy:

This is the result I am getting. Almost 17x in daily trading.

Problem is :
Backtest = candle is frozen.
Live = candle is breathing.
So, in real time live trading, it is hitting exit and entry repeatedly. I am requesting you to make a video on this topic with proper solutions.

Thanks,
Sudip Nath

1 Like

Hi @SUDIP_NATH
When we backtest we are working with completed candle.
Now for live, we have a running candle which we can ignore, and work on the completed candle only.

This will make both backtest and live work on completed candles. Thus also matching their results.

let me know if it solves the question.