EA - quotSimple Method of Scalping on 5 min chart , especially GBP/JPY - by Imran Saitquot
Page 1 of 734 123 ... LastLast
Results 1 to 10 of 337

Thread: EA - quotSimple Method of Scalping on 5 min chart , especially GBP/JPY - by Imran Saitquot

  1. #1
    Hello,

    I started thread: https://www.forexsoutheast.asia/fore...36-trades.html
    but I thought it might be better to begin new thread.


    About 6 months ago I've created for myself EA according to this method. For 2 months I had been in process of analyzing it because of lack of time (two small women I've never finished and for this reason I've deceided to share this EA, perhaps you've got enough time to test it and could tweak it according to your opinions. I need to understand where EA trades differs comparing to method. EA works needs some tweaking.

    Few words about EA:
    Entry:
    Utilizes original entry requirements for MACD, Laguerre, Stochastic and Pivot.
    EA does not consider Bolinger Bands

    Exit:
    closes place on MACD crossover or
    Stop Loss or
    Take Profit - that is set to closest Pivot resistance or service. If pivot point that is closest is closer than 2 * SL selects one.

    Parameters:
    Lots - clear
    StopLoss - (I use 5 digit broker so default SL is 200. For 4 digit use 20)
    TrailingStop - (for 5 digit broker advoed is 300. For 4 digit use 30)
    UseTailingStop
    SetTakeProfitOnPivots - if true sets Require Profit on closest Pivot resistance or service
    TakeProfit - for 5 digit broker recommended value is 500. For 4 digit - 50
    UseTakeProft - Enables TakeProfit alternative, has higher priority than SetTakeProfitOnPivots, therefore if both are true SetTakeProfitOnPivots is discounted.
    MaxSpread - Max disperse for trading (advoed 100 for 5digit, 10 for 4digit brokers)
    TradeOnNewBar - if true opens positions only on new bar
    ShowPopUpWindows - disables pop-up alert, sound remains busy
    UsePivotsForEntry - place false if you would like to ignore Pivots
    UseEMAForEntry - price needs to be above or under EMA60 and EMA200 for market or buy

    Files - replie them to apropriate directories:
    /experts/indiors - AutoPivot.mq4, Laguerre-ACS1. Ex4, MACDTraditional.ex4, StochHistogram.mq4
    /specialists - Scalpel.mq4
    /templates - scalpel.tpl
    5min_trade_egy_imransait_ver1.2.pdf - egy documentation

    Important information:
    EA can be used on different timeframes within platform, but you can not mix pairs. If you would like to test it on differen pairs you need to open new window. This EA was not tested on pair than GBP/JPY.

    EA can be used as signal alert - just don't signal box Allow live trading. To turn off alarms un-tick box Empower alerts

    Joyful analyzing and trading
    Daniel

    Update version 1.23 25.08.2009
    Changes:
    Added TakeProfit and UseTakeProfit parameters - in case UseTakeProfit is untrue utilizes standard TP amounts as described in 1st post. If collections TP to TakeProfit parameter.
    Added ShowPopWindows parameter - if fictitious pop-up windows wont't open, includes close commerce. Sound alarm is obviously busy

    Ver. 1.24 26.08.2009
    Added alternative UsePivotsForEntry

    Ver 1.26 26.08.2009
    Added SetTakeProfitOnPivots parameter
    Added UseEMAForEntry parameter
    https://www.forexsoutheast.asia/fore...al-2008-a.html
    https://www.forexsoutheast.asia/atta...1335921614.mq4
    https://www.forexsoutheast.asia/atta...4785109147.ex4
    https://www.forexsoutheast.asia/atta...1794949049.ex4
    https://www.forexsoutheast.asia/atta...0728260793.tpl
    https://www.forexsoutheast.asia/atta...1055027784.mq4
    https://www.forexsoutheast.asia/atta...3470297166.mq4

  2. #2
    Quote Originally Posted by ;
    How was performance over longer period of time?
    Do you mean to search for confirmation on quick lag on H1 chart? At direction? What about long trades?
    Hmm interesting notion, I could attempt to add it is it just condition for entry? What about exit?

    Done! Model 1.24 in 1st post. After testing that is rapid I presume that when UsePivotsForEntry is false then it's better to allow EA trades just on new candle opening place TradeOnNewBar - authentic.

    Kevin: You can use TrailingStop option.

    Daniel
    Thank you Daniel for ver1.26.

    Pls let me operate it for a few days to track trades. I'll then come back to answer your questions over.

    The difficulty some people had was in tracking multiple timeframes, nevertheless, yas1rs adaptation worked quite nicely. I'll see if I could get him to help out too, also a few other traders.

    Thanks

  3. #3
    Thanks djanowski! I'm gonna try your EA. I believe it's worth having even and if for the alert track the trade. Here's the link if anybody wants to have a look at the egy:

    https://www.forexsoutheast.asia/gene...-gaps-nfp.html

  4. #4
    Inserted Code // MACD if (MACDHistgt;0) MACDbuy=true; MACDsell=false; MACD=MACD buy; else MACDbuy=false; MACDsell=false; MACD=MACD no signal; if (MACDHistlt;0) MACDbuy=false; MACDsell=true; MACD=MACD sell; MACDHistgt;0 doesn't represent our signal state, and I think else is best positioned at the past.

    I think that it ought to be:
    if (MACD crossover to positive) MACDbuy=true;blabla
    else if (MACD crossover to negative) MACDsell=true;blabla
    else MACDbuy=false;MACDsell=false

    that part of code do you wish to get tweaked sir ?

  5. #5
    Can you please explain TradeOnNewBar - if true positions on new pub mechanism, I don't ch it yet.

    What is the significance to iVolume ?

  6. #6
    Quote Originally Posted by ;
    [code]//...
    Code doesn't have errors, it works nicely. I want to enhance general idea of closure positions, setting stops etc.. Usually transactions are closed too late, quite often still on and but could be better. Run it you will see what I mean.

    Trade on new pub?
    You mean online:
    if (iVolume(NULL,0,0)lt;11) Bar=false; Bar_s=; Trade=true; should (TradeOnNewBar) TradingOpenNewBar=New Bar Trading Activen; else Trade=false; TradingOpenNewBar=; //Unlock Bar

    I use iVolume to discover new candle and allow to exchange only during on opening, practically during first few seconds. When iVolume is near 0 means it is new bar Maybe there's neater method to discover it which don't know, but this only works as well

    Daniel

  7. #7
    Will have a looksee. Dzieki kolego!

  8. #8
    hoo i got it. . thx for sharing sir. .

    I have egy to develop EA based on imran said method and I'll try to tweak your code, so it may take time because I am new in mql programming

  9. #9
    Thanks Djanowski for this EA.

    Have a lot a pips !!

    Regards

  10. #10
    Hi,

    Is Anybody re-coding That EA? If so, here are some suggestions. Insert a up box option in the properties tab so that that it is going to give an alert every time a new setup happens with no buy/sell box popping up. And just offer a close alert on traders. Check the s/l function, I had it set to 20 and it gave me a 26 pip s/l. Also a t/p amount would be fine. All these are the ones right now, I have more thoughts. If your re-coding this EA and wish to hear some suggestions PM me.

    Thank You...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.