why EA don't generate trade while tester do ?

 

i test my ea at tester mode, it generated 17 trades

but when i run in live account, it don't generate any trade, what is the reason?


i have make sure i tick the box of " allow live trading", and allow DLL, external experts imports

also at right hand top corner, there is a smile ~ ~

thanks

 

This is a very general question.

Maybe if you post the code here we can help.

 

Also check the EA journal for errors you might not have the indicators required by the EA on the live account. If it's not that put some comments to the screen to see the values your EA is getting to make a decision.

 
chiwing:

i test my ea at tester mode, it generated 17 trades

but when i run in live account, it don't generate any trade, what is the reason?


i have make sure i tick the box of " allow live trading", and allow DLL, external experts imports

also at right hand top corner, there is a smile ~ ~

thanks

Are you the author of the EA??

If not the author/owner may have used a simple "if" command to restrict use on a live account....giving it to you only for testing and evaluation.

if (IsDemo()==true)   
Reason: