Day Percent Change Trigger

Day Percent Change Trigger works only for positive move. What do I have to do if I have to capture negative move also?

Just use (-) when creating a trigger.

Hi Bhuvanesh,
I would like to short banknifty when below coditition met , i wrte below condition for alert , can you plz confirm this is right ?

OpenInterest(‘NFO:BANKNIFTY18AUG28200CE’) > OpenInterest(‘NFO:BANKNIFTY18AUG28000CE’)

{ So when BNF 28200 CE OI is greater then BNF 28000 CE then i would to go short , here i am suuming tradres creating short position and selling 28200 CE}

OR

OpenInterest(‘NFO:BANKNIFTY18AUG28200CE’) > 20 && OpenInterest(‘NFO:BANKNIFTY18AUG28000CE’) > 20

{ Here also same concept but i am assuming when OI up by atleast 20% then i will go short in BNF}

Ca you please confirm this is right way ?

Bumping up this thread to get the answer on the last query

BNF 28200 CE OI is greater then BNF 28000 CE

For this,

OpenInterest(‘NFO:BANKNIFTY18AUG28200CE’) > OpenInterest(‘NFO:BANKNIFTY18AUG28000CE’)

OI up by atleast 20% then i will go short in BNF

For this,
((OpenInterest('NFO:BANKNIFTY18AUG28200CE') / OpenInterest('NFO:BANKNIFTY18AUG28000CE')) - 1) * 100 >= 20

1 Like