Joe Gelet:
Your question is not clear, and the code you posted should use the "SRC" tabWe have a strategy we made in 2009 and it's been running fine in MQL4 all this time.. well today we try to make it mq5 compliant with strict rules and so forth and have a strange integer / lot size problem - no idea how it's possible:
if(subTotalTypeOrders(OP_SELL)>0)
{
double Lots=subTotalTypeOrders(OP_SELL)*Multiplier;
added "Double" or else it wouldn't compile, but it used to work without this. Lots isn't defined anywhere else, or globally.
Now the EA opens orders with huge mistakes on lot size.
Any ideas?
What is the purpose of subTotalTypeOrder(OP_SELL) functions, and what was meant by multiplier variable.
We can not help, because do not understand your function.

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
We have a strategy we made in 2009 and it's been running fine in MQL4 all this time.. well today we try to make it mq5 compliant with strict rules and so forth and have a strange integer / lot size problem - no idea how it's possible:
if(subTotalTypeOrders(OP_SELL)>0)
{
double Lots=subTotalTypeOrders(OP_SELL)*Multiplier;
added "Double" or else it wouldn't compile, but it used to work without this. Lots isn't defined anywhere else, or globally.
Now the EA opens orders with huge mistakes on lot size.
Any ideas?