Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

Recommended Posts

Posted

hi i have a hedging EA im experimenting with,

 

what i would like to do is add code so if any open orders hit stoploss then close all open or pending orders

 

i use close all code below, but how to make

 

anystoploss to Closeall

 

 

 

void Closeall(){

RefreshRates();

{delete(OP_BUYSTOP);delete(OP_SELLSTOP);closebuy();closesell();}

}

Posted
loop around all open orders and check current price against stoploss. If trade = buy and current price <= stoploss, then call closeall() and exit the loop. If trade = sell and current price >= stoploss, then call closeall() and exit the loop.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...