codeidea:
I just sell GBPUSD, try test the code for modify stoploss,
what is the wrong? is m_position error?
if have fix it,
if(m_position.Type()==POSITION_TYPE_BUY)
change to:
if(m_position.PositionType()==POSITION_TYPE_BUY)
There are more code use Type() , it is for the class type, oh,wish this can help you
Documentation on MQL5: Standard Constants, Enumerations and Structures / Trade Constants / Position Properties
- www.mql5.com
Standard Constants, Enumerations and Structures / Trade Constants / Position Properties - Documentation on MQL5

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
I just sell GBPUSD, try test the code for modify stoploss,
what is the wrong? is m_position error?