Scalp_net_v1.3

3.375
Average: 3.4 (8 votes)
Editor's Rating: 
5
Time Frame: 
All Time Frame
Date Added: 
August 13, 2008

This scalping EA still profitable till now. Likely this is a stable version of scalping EA. Great job for sharing this EA.

I remember this EA from tsd.

5

I remember this EA from tsd. New digital, You might want to share which pairs tested the best and if IBFX mini accounts are possible.

ES

In the EA code it states

In the EA code it states this is good for EUR/USD M1 TF only...

ES

Yes newdigital recommend to

Yes newdigital recommend to use M1, but you can try on different TF to explore this EA. It's give good result too but less trade than M1.

====================================================================
FAQ | Ask to FAQ
Privacy policy | Term of use |

Yes newdigital recommend to

Yes newdigital recommend to use M1, but you can try on different TF to explore this EA. It's give good result too but less trade than M1.

====================================================================
FAQ | Ask to FAQ
Privacy policy | Term of use |

How often should this EA

How often should this EA trade?

Hi guys.I instaled it few

4

Hi guys.I instaled it few hours ago,but i dont't know how to set it.I've only changed T/P=10.Would you tell me some good settings because i'm new.Thanks in advance and have a great trading ;-)
I forgot, i changed the "Magicnumber"=1.was it wrong :( ?

No need to activate it.

4

No need to activate it. Close your mt4 program, and then copy paste the .mq4 to your mt4 installed folder/experts/. make sure the extension is .mq4, if the filename only Scalp_net_v1.3 then rename it to Scalp_net_v1.3.mq4

And now you may run your mt4, and as usually drag and drop Scalp_net_v1.3 from Expert Advisor panel to your chart. See the face on the right top corner of your chart. I hope it's smile face. IF you don't see the smile face please read http://www.autotradingfx.com/tutorial/how-run-ea-expert-advisor

I just installed the EA. Do

3

I just installed the EA. Do I change any default settings?
Is the magic number zero?
How often does it trade?
thanks
tommy

off course you must change

off course you must change the setting to meet your own style. Fill the magic number different with the other pairs.

How often? hmm it's depend on which the tf do you attach, and also the setting make affect to.

==================================================================== FAQ | Ask to FAQ Privacy policy | Term of use |

Great EA to get started,

5

Great EA to get started, easy to read for newbis like me, and MOD to your liking. I am having good success with this. I am also having some issues i would like to fix. I posted my concerns here:
http://forum.mql4.com/20418 . If anyone can help let me know.

You can adjust lots, tp, sl

You can adjust lots, tp, sl and ts you liked. Try change to false the mode.

TakeProfit, Stopploss,

TakeProfit, Stopploss, Trailing Stop are not lock. Make sure TakeProfitMode, StoplossMode and TrailingStopMode are true.

  1. Look for this at the bottom of mq4 code

    //---- return lot size
       if(lot<0.1) lot=0.1;

     

    Change to

    //---- return lot size
       if(lot<0.01) lot=0.01;
  2. This EA read MACD and SAR too, you don't need to add more MACD and SAR again.
          double Buy3_1 = iSAR(NULL, 0, 0.005, 0.05, Current + 1); 

          double Buy3_2 = iSAR(NULL, 0, 0.005, 0.05, Current + 0);

          double Buy4_1 = iMACD(NULL, 0, 12, 26, 9, PRICE_CLOSE, MODE_SIGNAL, Current + 1);

          double Buy4_2 = iMACD(NULL, 0, 12, 26, 9, PRICE_CLOSE, MODE_SIGNAL, Current + 0);

           double Sell3_1 = iSAR(NULL, 0, 0.005, 0.05, Current + 1);       double Sell3_2 = iSAR(NULL, 0, 0.005, 0.05, Current + 0);

          double Sell4_1 = iMACD(NULL, 0, 12, 26, 9, PRICE_CLOSE, MODE_SIGNAL, Current + 1);

          double Sell4_2 = iMACD(NULL, 0, 12, 26, 9, PRICE_CLOSE, MODE_SIGNAL, Current + 0);

    If you like to optimize the MACD/SAR setting, you must change and add the code to like this:

    1. find this

            double Buy3_1 = iSAR(NULL, 0, 0.005, 0.05, Current + 1);

            double Buy3_2 = iSAR(NULL, 0, 0.005, 0.05, Current + 0);

            double Buy4_1 = iMACD(NULL, 0, 12, 26, 9, PRICE_CLOSE, MODE_SIGNAL, Current + 1);

            double Buy4_2 = iMACD(NULL, 0, 12, 26, 9, PRICE_CLOSE, MODE_SIGNAL, Current + 0);

            double Sell3_1 = iSAR(NULL, 0, 0.005, 0.05, Current + 1);

            double Sell3_2 = iSAR(NULL, 0, 0.005, 0.05, Current + 0);

            double Sell4_1 = iMACD(NULL, 0, 12, 26, 9, PRICE_CLOSE, MODE_SIGNAL, Current + 1);

            double Sell4_2 = iMACD(NULL, 0, 12, 26, 9, PRICE_CLOSE, MODE_SIGNAL, Current + 0);
    2. change to
            double Buy3_1 = iSAR(NULL, 0, step_b1, maximum_b1, Current + 1);

            double Buy3_2 = iSAR(NULL, 0, step_b2, maximum_b2, Current + 0);

            double Buy4_1 = iMACD(NULL, 0, fastemaperiod_b1, slowemaperiod_b1, signalperiod_b1, PRICE_CLOSE, MODE_SIGNAL, Current + 1);

            double Buy4_2 = iMACD(NULL, 0, fastemaperiod_b2, slowemaperiod_b2, signalperiod_b2, PRICE_CLOSE, MODE_SIGNAL, Current + 0);

            double Sell3_1 = iSAR(NULL, 0, step_s1, maximum_s1, Current + 1);

            double Sell3_2 = iSAR(NULL, 0, step_s2, maximum_s2, Current + 0);

            double Sell4_1 = iMACD(NULL, 0, fastemaperiod_s1, slowemaperiod_s1, signalperiod_s1, PRICE_CLOSE, MODE_SIGNAL, Current + 1);

            double Sell4_2 = iMACD(NULL, 0, fastemaperiod_s2, slowemaperiod_s2, signalperiod_s2, PRICE_CLOSE, MODE_SIGNAL, Current + 0);
    3. Then find this to
      extern int MaxOrders = 1;

       

      #define SIGNAL_NONE 0

      #define SIGNAL_BUY   1

    4. add this
      extern int MaxOrders = 1;

      //-----------------ADD by autotradingfx.com------------------

      extern string MACD_BUY= "Setting MACD for Buy";

      extern int

                  fastemaperiod_b1=12,

                  slowemaperiod_b1=26,

                  signalperiod_b1=9,

                  fastemaperiod_b2=12,

                  slowemaperiod_b2=26,

                  signalperiod_b2=9;

      extern string MACD_SELL= "Setting MACD for Sell"; extern int

                  fastemaperiod_s1=12,

                  slowemaperiod_s1=26,

                  signalperiod_s1=9,

                  fastemaperiod_s2=12,

                  slowemaperiod_s2=26,

                  signalperiod_s2=9;

      extern string SAR_BUY= "Setting SAR for Buy";

      extern double

                  step_b1=0.005,

                  maximum_b1=0.05,

                  step_b2=0.005,

                  maximum_b2=0.05;

      extern string SAR_SELL= "Setting SAR for Sell"; extern double

                  step_s1=0.005,

                  maximum_s1=0.05,

                  step_s2=0.005,

                  maximum_s2=0.05; //-----------------END ADD autotradingfx.com------------------

       

      #define SIGNAL_NONE 0

      #define SIGNAL_BUY   1

  3. This EA can open multi position, change the settings "MaxOrder" larger than 1. If you mean that "1 trade at the time and often missed" is requote, then change "Slippage" to 2*spread, by changing this you must know that you can get higher or lower price that it should be.

====================================================================

FAQ | Ask to FAQ Privacy policy | Term of use |

Hi, I downloaded and edit as

3

Hi,

I downloaded and edit as posted above but i dont see its working that well.
I've attach to my chart 1min eur/usd seem nothing happen..the smile face is shown by the way.
any else i need to add on chart or something?

Where is the link to

1

Where is the link to download it?

MACD/SAR settings: what is

2

MACD/SAR settings: what is the recommended parameters for these indicators?

Sar? which indicator is this one? Is this parabolic sar?

hello friends I have been

hello friends
I have been recently down load this expert,but when ever I check the The alive trade option after a minute the check mark is disappear.what should I do?

Today Content *

Visit this page : FAQ | Ask a question | Privacy policy | Term of use | Risk warning | Contact Us
© 2008 AutoTradingFx.com, All rights reserved.