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
matrixebiz,
Try this:
BongoThank you I'll check it out. So this checks direction of close of previous candle and places trade in that direction correct?
now it's 18:00 and no trades ??
I had EA set to open @ 1700 but nothing happened ??
Do I have to wait until a new day for the EA to start working?
A Question
Hi guys,
anyone knows if there is an EA which open a trade at the crossover of 2 EMA's and close the trade of the next crossover opening at the same time a new trade on the opposite direction?
Thanks a lot
@Bongo - EA doesn't seem to be trading Please check, Thanks
EA is trading, you can check back test.
You have there 2 conditions:
if(ct == StartHour && Low[1]>Open[0] && OpenSell)
if Low[1]>Open[0] (prev. low, curr. open) expert will not open a position.
Bongo
EA is trading, you can check back test.
You have there 2 conditions:
if(ct == StartHour && Low[1]>Open[0] && OpenSell)
if Low[1]>Open[0] (prev. low, curr. open) expert will not open a position.
BongoOk, and what does that mean exactly?
Thanks
and how do I change the Free margin to be allowed allot smaller, like $80?
if(AccountFreeMargin()<(1000*Lots))
Instant of 1000 put 80 if you use 1 lot, 800 if 0.1 lots, etc.
b.