dan100: please can someone help me make it like this === 0.1, 0.2, 0.4, 0.6, 0.8, 0.10
if(lot == 0.1) lot += 0.1; else lot += 0.2;
WHRoeder:
thanks WHRoeder for your quickest response but please which line should i fix the code already am a bit confused
Wherever you are trying to increment the lot size in your code. That is where this line needs to be. It all depends on where in your code you want the lot size changed.
No, the code needs to go within your code, where you are trying to figure out what lot size you want to trade next. Possibly within the below block of code.
if(Martingale) { if(checkforlosses()) { lot=NormalizeDouble(lastlot()+Multiplier,0); } else { lot=StartLot; }
I am not very familiar with MQL programming yet, but I am trying to learn. Basing it on the little I remember from my Java classes, the above advice might be way off as far as where it needs to be. How you would fit in there might take some experimentation.
thanks wHRoeder you never stop assisting me each time i post for help thanks, i appriciate.jda never forgetting, thanks for your guide.
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
please i am looking for a way to get my lot calculation step like this 0.1, 0.2, 0.4, 0.6, 0.8, 0.10 etc
but i fine it had to code out instead i get 0.01, 2.00, 4.00, 6.00, 8.00, 10.00 etc
please can someone help me make it like this === 0.1, 0.2, 0.4, 0.6, 0.8, 0.10
below is what i have done so far