edwinodus:
The moving average EA is buying when its suppose to be selling, isnt the code suppose to diferentiate between buy and sell, how do i correct it?
I think you should review the code for the entry condition.
I think that something like,
if (FastMA > SlowMA)
go buy
if (FastMA < SlowMA)
go sell
is enough to describe the entry in the simple way.
You may wrote wrong comparison signs !
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
The moving average EA is buying when its suppose to be selling, isnt the code suppose to diferentiate between buy and sell, how do i correct it?