Experts: AK-47 Scalper EA

Automated-Trading  

AK-47 Scalper EA:

AK-47 Scalper EA is fully automated. It uses the strategy of entering the sell Stop order continuously and will modifythe order when the price is opposite to the pending order.

Author: Nguyen Quoc Hung

Nguyen Quoc Hung  
itso1970 #:

It's not working for me. I downloaded it and mounted it then run it as per the instructions, but it was not trading on my demo account.

I tried also on my actual account on US30Cash and after analizing the results nothing happened. The script doesn't put orders.

I'm I doing something wrong or?!

you try to check value of Spread, it must be lower than allowed value (input)
Skyrider  

The EA does not work in the tester, on the demo and on the real account. Changed the spread value. When testing, it does not display error messages. The advisor has not been finalized.

Nguyen Quoc Hung  
Skyrider #:

The EA does not work in the tester, on the demo and on the real account. Changed the spread value. When testing, it does not display error messages. The advisor has not been finalized.

you try to check value of Spread, it must be lower than allowed value (input)

RitzFalih  

  Nguyen Quoc Hung (mql5.com)

it works on large volatility signals, but not with small ones, maybe you can improve the signal, especially on candles that are not 100% and then fall back, while the order has been placed. I'm glad I could try it. great job thanks

void OpenOrder(){
   
   //int OrdType = OP_SELL;//-1;

   double TP = 0;
   double SL = 0;
   string comment = ExtBotName;

   //Calculate Lots    double lot1 = CalculateVolume();       //if(OrdType == OP_SELL){       double OpenPrice = NormalizeDouble(Bid - (StopLevel * _Point) - (InpSL_Pips/2) * Pips2Double, Digits);       SL = NormalizeDouble(Ask + StopLevel * _Point + InpSL_Pips/2 * Pips2Double, Digits);                if(CheckSpreadAllow())                                    //Check Spread       {          if(!OrderSend(_Symbol, OP_SELLSTOP, lot1, OpenPrice, slippage, SL, TP, comment, InpMagicNumber, 0, clrRed))          Print(__FUNCTION__,"--> OrderSend error ",GetLastError());       }    //} }
Hong Ling Mu  
Looks really nice, but I wonder if there are so many modifications, then it may affect on the broker issus?
Reason: