RSI Strategy Condition passed but order not placed

Hi ,

I created sample RSI Strategy , condition is passed but orders not placed . I checked notification log some debug messages came what does it mean?

And also i have another question , if there are multiple stcoks in my list once Algo executed for paricular stock and will it keep continue checking conditions for other stocks or it will stop checking once status changed from Active to Live-entered.

If you are getting Debug. It means you have entered some wrong input in position builder.

i wrote buy when rsi crosses above 50, i duplicated rsi template and modified my logic . can you please tell me what is wrong.

Use for Buy entry
RSI -2 < 50
RSI -1 > 50
For Sell Entry
RSI -2 > 50
RSI -1 < 50

This situation only happens only when both parameters conscide with two candle in parallel way.
Better to use to add another more indicator as ema 20 cross up ema 50 and RSI > 50 for good result

1 Like

Another point I observed, u have created ur own list, I don’t know whether it resembles to non nfo futs stocks or nfo stocks.
If u want to trade in NFO then use as “Futures” instead of " instrument name" .

1 Like

Hi thanks for reply,

My strategy is to check if rsi of current candle crosses above 50 , i want to buy.

and also i want to buy when futures and ATM options both crosses above rsi 50 , how to do this?

i will try this option