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
Does any one know if the AccountProfit() report the daily account profit, the open order account profit, or the total history of the account profit?
My goal is to add a code to a MT4 expert to stop trading when the DAILY account profit (not the open order) reaches 20-30 pips of profit.
Would this work?
Example:
profit=AccountProfit();
if(profit>=30) return(0);
Thank you in advance.