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
it can be easily ... AK-47 Scalper EA - expert for MetaTrader 5
I optimized and test run it on xauusd. the results are good. As per testing, it only makes sell positions. I tried to add a 2 ma as condition for buy or sell orders but it only send sell orders. I inserted the code below...
Improperly formatted code edited by moderator. Please always use the CODE button (Alt-S) when inserting code.
double fastEMA = iMA(Symbol(), 0, FastEMA_Period, 0, MODE_EMA, PRICE_CLOSE); double slowEMA = iMA(Symbol(), 0, SlowEMA_Period, 0, MODE_EMA, PRICE_CLOSE); string strTrend = ""; //if (upFractal > 0) { if(fastEMA > slowEMA) { string strTrend = "UP"; OrdType = ORDER_TYPE_BUY; } //if (downFractal > 0) { if(fastEMA < slowEMA) { string strTrend = "DOWN"; // Open a sell trade here OrdType = ORDER_TYPE_SELL; }
you have to fix OrdType for mql4
it can be easily ... AK-47 Scalper EA - expert for MetaTrader 5
Unfortunately, this code is not cross-platform.
double meybe?
you have to fix OrdType for mql4
hello, could you please update the EA, so it would have an option to buy only or sell only.
Thank you in advance
You can try to use donchain indicator to get entry signal.