|
AutoTradingFx.comLearn to Trade Forex |
|||
Today Content *
Search downloadsLanguageLatest tutorialTop Banner* |
(82 votes) Editor's Rating: Developer: newdigitalTime Frame: All Time FrameDate Added: August 13, 2008This scalping EA still profitable till now. Likely this is a stable version of scalping EA. Great job for sharing this EA. |
CNBC Top VideoCNBC.com Latest VideosPopular Content
|
Very good EA ! I am take a
Very good EA !
I am take a good result, recommend use on 1M, 5M, 15M TF.
With small account play on 1M TF and 0.01 lot, will help you take profit fast.
With big account use 15M TF, with 0.1 lot, i play slower but very exactly.
Thanks for post this EA, good luck to you .
This scalping EA still
This scalping EA still profitable till now. Likely this is a stable version of scalping EA. Great job for sharing this EA.
hi i am new in forex i
hi i am new in forex i download your EA can i use in demo account servis for test result. i
I have this EA running using
I have this EA running using the template. It is not placing any trades, although I have had some manual wins by following the change of direction of the SAR.
Is anyone using it - or know why it might not be trading?
Also, what does the Each Tick Mode (T/F) flag do?
right click on your mouse
right click on your mouse and then choose Save Link As... or Save Target As...
how do I download this?
how do I download this? Whenever I click on download, it takes me to a page that shows all it's codes.
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?
MACD/SAR settings: what is
MACD/SAR settings: what is the recommended parameters for these indicators?
Sar? which indicator is this one? Is this parabolic sar?
Where is the link to
Where is the link to download it?
Hi, I downloaded and edit as
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?
TakeProfit, Stopploss,
TakeProfit, Stopploss, Trailing Stop are not lock. Make sure TakeProfitMode, StoplossMode and TrailingStopMode are true.
//---- return lot sizeif(lot<0.1) lot=0.1;
Change to
//---- return lot sizeif(lot<0.01) lot=0.01;
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:
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);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);extern int MaxOrders = 1;
#define SIGNAL_NONE 0
#define SIGNAL_BUY 1
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
====================================================================
FAQ | Ask to FAQ Privacy policy | Term of use |
You can adjust lots, tp, sl
You can adjust lots, tp, sl and ts you liked. Try change to false the mode.
Great EA to get started,
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.
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 |
I just installed the EA. Do
I just installed the EA. Do I change any default settings?
Is the magic number zero?
How often does it trade?
thanks
tommy
No need to activate it.
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
Hi guys.I instaled it few
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 :( ?
How often should this EA
How often should this EA trade?
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.
====================================================================- Login or register to post comments
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.
====================================================================- Login or register to post comments
FAQ | Ask to FAQ
Privacy policy | Term of use |
In the EA code it states
In the EA code it states this is good for EUR/USD M1 TF only...
ES
I remember this EA from tsd.
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