My EA stops working after I move it to FXCM demo account

 

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

 
marshall318:

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

Check your journal for errors....It may help you troubleshoot.....

 

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.

 
jirimac:

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 ?

 
marshall318:

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

Reason: