Yes. This WORK! but I don't understand......
Thank you.
Thank you.
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
the program:
double MaxEquity;
int Round;
int init()
{
//----
MaxEquity=AccountEquity();
Round=(OrdersTotal()/13)-1;
//----
return(0);
}
int start()
{
//----
Comment("MaxEquity = ",MaxEquity," ____ Round = ",Round, " ____ Totals = ",OrdersTotal());
//----
return(0);
}
The result is:
MaxEquity = 0 ____ Round = 0 ____ Totals = 26
The variables SEEM NOT PRESERVES THEIR VALUES !!!!
WHY?
Regards