Hello to all professors
I want the second position to be 1.70% higher than the first position
I also wrote this code, but it is wrong and the second position does not open
Can you tell me where the wrong code is?
70 pips or 70% which one?
Example GBPJPY if price is 150.000 70 Pips = 150.700,
If 70% = 150 * 70% = 225
Which one do you want?
Hello to all professors
I want the second position to be 1.70% higher than the first position
I also wrote this code, but it is wrong and the second position does not open
Can you tell me where the wrong code is?
double lotsi = NormalizeDouble(FindLastSellLot() * 1.70 / 100, 2);
should be ????
double lotsi = NormalizeDouble(FindLastSellLot() * 1.70, 2);
I am assuming that you mean to multiply the lots by 1.70
should be ????
I am assuming that you mean to multiply the lots by 1.70
Thanks dear,
Its working.

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello to all professors
I want the second position to be 1.70% higher than the first position
I also wrote this code, but it is wrong and the second position does not open
Can you tell me where the wrong code is?