zoop Posted June 6, 2011 Report Posted June 6, 2011 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();} } Quote
soundfx Posted June 6, 2011 Report Posted June 6, 2011 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. zoop 1 Quote
zoop Posted June 6, 2011 Author Report Posted June 6, 2011 thanks for the heads up soundfx, i put something together, works great Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.