Darknesstrader:
I want close the pending order when the candle close. I want change the BID==CLOSE(0) for Any code that Close the pending order when the candle close. // Copyright ©2011, ForexEAdvisor.com // ForexEAdvisor Strategy Builder version 0.2 |
|

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Some one can help me with this ? I want close the pending order when the candle close.
I would like to close the pending orders of this EA when :
Close buy: Bid<Low[1] and The actual candle closes;
and
Close sell: Bid>High[1] and The actual candle closes;
-----------------------------------------------------------------------------------------------------------
if((Bid>High[1])||(Bid==Close[0])) // here is your close sell rule/ LINE 107
I want change the BID==CLOSE(0) for Any code that Close the pending order when the candle close.
Thank you guys for help me with this!