
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
////////////////////// trailing profit BOOL function /////////
void TrailingProfit()
{
if profit<=100 useLossToClose=false;
else useLossToClose=true;
if profit>profitToClose
lossToClose=profitToClose;
profitToClose=profitToClose+50;
}
and I put it in the EA like :
int start()
{
TrailingProfit();
....
}
Thank you.