Page 8 of 11 FirstFirst ... 6 7 8 9 10 ... LastLast
Results 71 to 80 of 107
Like Tree31Likes

Scalping

This is a discussion on Scalping within the Forex Trading forums, part of the Trading Forum category; Originally Posted by newdigital Please find EAs (two EAs) for EURUSD and USDCHF: - angrybird_xscalpingn_usdchf EA for USDCHF M1 timeframe ...

      
   
  1. #71
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2909
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Quote Originally Posted by newdigital View Post
    Please find EAs (two EAs) for EURUSD and USDCHF:

    - angrybird_xscalpingn_usdchf EA for USDCHF M1 timeframe default settings (attached);
    - angrybird_xscalpingn_eurusd EA for EURUSD M1 timeframe default settings (attached).

    And I traded by this EA (EURUSD and USDCHF) for whole the day till morning today:

    Attachment 18297

    Attachment 18298
    This EA was improved (attached) and this version does not use martingale feature.

    Besides, some settings (set files) were uploaded for the old/original version (attached as well):
    • for EURUSD M1;
    • for USDCAD M1;
    • for EURUSD M5.
    Attached Files Attached Files
    Chrisstoff likes this.
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  2. #72
    Junior Member
    Join Date
    Aug 2013
    Posts
    24
    Quote Originally Posted by newdigital View Post
    This EA was improved (attached) and this version does not use martingale feature.

    Besides, some settings (set files) were uploaded for the old/original version (attached as well):
    • for EURUSD M1;
    • for USDCAD M1;
    • for EURUSD M5.
    Hi NewDigital,

    I am interested in this EA, so I put it on a demo account a forward tested for a couple of days. You will find the results attached as well as the settings I used on EURCHF, M1 time frame.

    The odd thing I realised is that the EA opened hardly any sell trades and if it did so, it closed the sell trades within seconds in loss. Can you ask the author what could be behind this behaviour? Is there a fixed version available?

    Regards,

    Chris
    Attached Thumbnails Attached Thumbnails Scalping-detailedstatement_ilan16_new_b-s_rule_2016-02-10.gif  
    Attached Files Attached Files

  3. #73
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2909
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Quote Originally Posted by Chrisstoff View Post
    Hi NewDigital,

    I am interested in this EA, so I put it on a demo account a forward tested for a couple of days. You will find the results attached as well as the settings I used on EURCHF, M1 time frame.

    The odd thing I realised is that the EA opened hardly any sell trades and if it did so, it closed the sell trades within seconds in loss. Can you ask the author what could be behind this behaviour? Is there a fixed version available?

    Regards,

    Chris
    This is Ilan EA - one of the modification of it - so I do not know who created this modification. We may ask igorad to improve but he is overloaded for now with many requests.

    So, pelase, remind me about this EA in the beginning of the next week on this thread and I will send a request to Igorad.
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  4. #74
    Junior Member
    Join Date
    Aug 2013
    Posts
    24
    Quote Originally Posted by newdigital View Post
    This is Ilan EA - one of the modification of it - so I do not know who created this modification. We may ask igorad to improve but he is overloaded for now with many requests.

    So, pelase, remind me about this EA in the beginning of the next week on this thread and I will send a request to Igorad.
    Dear NewDigital,
    Fulfilling your request, I would just like to remind you that the time is here

  5. #75
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2909
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Quote Originally Posted by Chrisstoff View Post
    Dear NewDigital,
    Fulfilling your request, I would just like to remind you that the time is here
    Yes, I reminded to Igorad.
    Chrisstoff likes this.
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  6. #76
    Junior Member
    Join Date
    Aug 2013
    Posts
    24
    Quote Originally Posted by newdigital View Post
    Yes, I reminded to Igorad.
    Thank you.
    In the meantime I found something suspicious that might cause the phenomenon I wrote in my post #72 above.

    I think in Row 94:

    Code:
    if(( Bid < HH && Bid < iLowest(Symbol(),60,0,5,1) && ShortTrade )
    we should replace HH to LL, so it should be something like this:
    Code:
    if(( Bid < LL && Bid < iLowest(Symbol(),60,0,5,1) && ShortTrade )
    I will try it, anyway.

  7. #77
    igorad
    Guest
    Quote Originally Posted by Chrisstoff View Post
    Dear NewDigital,
    Fulfilling your request, I would just like to remind you that the time is here

    Hi Chrisstoff,

    Please check out the fixed Ilan EA where to avoid this problem I just commented this piece of code:


    Code:
    if(( Bid < HH && Bid < iLowest(Symbol(),60,0,5,1) && ShortTrade) || (Bid > HH && Bid > iHighest(Symbol(),60,0,5,1) && LongTrade ))
       
       {
          
             CloseThisSymbolAll();
             Print("Closed All due to TimeOut");
         
       }

    Regards,
    Igor
    Chrisstoff likes this.

  8. #78
    Junior Member
    Join Date
    Aug 2013
    Posts
    24
    Quote Originally Posted by igorad View Post
    Hi Chrisstoff,

    Please check out the fixed Ilan EA where to avoid this problem I just commented this piece of code:


    Code:
    if(( Bid < HH && Bid < iLowest(Symbol(),60,0,5,1) && ShortTrade) || (Bid > HH && Bid > iHighest(Symbol(),60,0,5,1) && LongTrade ))
       
       {
          
             CloseThisSymbolAll();
             Print("Closed All due to TimeOut");
         
       }

    Regards,
    Igor
    Thank you, Igor for your kind help. It is much appreciated

  9. #79
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,317
    Blog Entries
    1634

    Ultra - ATR scalping tool

    Ultra - ATR scalping tool - indicator for MetaTrader 4

    Scalping-gbpchf-m15-alpari-international-limited.png


    Experimental indicator I wrote for myself. It's made to show some reference (it's more like a rifle scope, than a rifle). Main components are pip scale, ATR/pivot, MA level, RSI, and spread alert. Can be used on any timeframe, but since it's made for scalping it is somewhat adjusted for M1-M15.
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  10. #80
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2909
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    I checked the following two indicators for scalping and it works fine:

    AllAbsoluteStrength_v2.1 600+ indicator is on this post.

    AllAbsoluteStrengthTrend_v1.2 600+ indicator is on this post. This is updated AllAbsoluteStrengthTrend indicator with ability to plot CCI mode.

    Scalping-gbpjpy-m5-alpari-international-limited.png


    And this is the results (visual statement for trading) using the following indicator (with template) from premium section: AccountEquityAnalyzer_v1.1 indicator is on this post[COLOR=#333333] (premium section link):

    Scalping-gbpjpy-m1-alpari-international-limited.png
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

Page 8 of 11 FirstFirst ... 6 7 8 9 10 ... LastLast

LinkBacks (?)

  1. 12-27-2013, 09:30 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •