FXCM use fractional pips, so you need to multiply everything by 10. Eg. If you have stop at StopLost = 10, just make it 100.
Therefore 1 Pip = 10*Point.
That should work, i use FXCM for my live account and I need to do those changes to my EA.
FXCM use fractional pips, so you need to multiply everything by 10. Eg. If you have stop at StopLost = 10, just make it 100.
Therefore 1 Pip = 10*Point.
That should work, i use FXCM for my live account and I need to do those changes to my EA.
Wierd thing is
Print("Point is :", Point);
Point is : 0
Why ?
Wierd thing is
Print("Point is :", Point);
Point is : 0
Why ?
I would explain. But there's no point.
Sorry, couldn't resist.
Try
Print("Point is : ",DoubleToStr(Point,10));
CB

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
FXCM is offering fractional pips, my EA stops working (it does not place orders) on FXCM demo. I don't know why. Anybody has an idea ?
thanks