Page 5 of 41 FirstFirst ... 3 4 5 6 7 15 ... LastLast
Results 41 to 50 of 404
Like Tree30Likes

NewsTrader EA

This is a discussion on NewsTrader EA within the Trading tools forums, part of the Trading Forum category; This is USD - Retail Sales which was today - high impacted news event (trading by this NewsTrader EA fixed ...

      
   
  1. #41
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    This is USD - Retail Sales which was today - high impacted news event (trading by this NewsTrader EA fixed version v5.92 - you can download this EA from the first post of this thread):

    NewsTrader EA-eurusd-m5-metaquotes-software-corp.png


    NewsTrader EA-usdjpy-m5-metaquotes-software-corp.png


    EA made the following for this news event:

    EURUSD GBPUSD USDCHF USDJPY USDCAD
    16 pips 24 pips 6 pips 18 pips 12 pips
    $ 16.90 $ 24.00 $ 6.29 $ 18.61 $ 10.38

    NewsTrader EA-retail_sales_mtstatement.gif


    Statements are attached
    Attached Files Attached Files
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  2. #42
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    This is USD - CPI: high impacted news event which was now. Please find the resulkts of trading this news event by NewsTrader EA.

    EA made the following for this news event:

    EURUSD GBPUSD USDCHF USDJPY USDCAD
    -4 pips -24 pips 29 pips 16 pips -1 pips
    $ -4.40 $ -24.60 $ 33.77 $ 14.22 $ -1.25

    NewsTrader EA-cpi2.png


    NewsTrader EA-cpi3.png


    NewsTrader EA-cpi_mtstatement_1601.gif


    Statements are attached
    Attached Files Attached Files
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  3. #43
    Member
    Join Date
    Oct 2013
    Posts
    40
    Hi,
    why do I not get any new events. I wanted to trade EZB but that event was not existing.
    NewsTrader EA-eurnzdh1.jpg

  4. #44
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Their excel file is empty http://www.dailyfx.com/calendar :

    NewsTrader EA-excel1.png


    Last time - Igorad sent email to dailyfx asking them to fix this bug on their calendar, and they fixed it.
    Seems - it is same situation for now ...
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  5. #45
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Quote Originally Posted by Gods_Clown View Post
    Hi,
    why do I not get any new events. I wanted to trade EZB but that event was not existing.
    It works now. The next high impacted news event will be tomorrow (Durable Goods Orders):

    NewsTrader EA-eurusd-m5-metaquotes-software-corp.png
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  6. #46
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    It was good profit for USD - Consumer Confidence news event:

    NewsTrader EA-usconsumer.png
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  7. #47
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    This is high impacted news event (USD - GDP) - good profit for USDCAD:

    NewsTrader EA-gdp1.png


    NewsTrader EA-gdp2.png


    NewsTrader EA-gdp3.png


    NewsTrader EA-gdp4.png
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  8. #48
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    It was Consumer Confidence news event yesterday:

    NewsTrader EA-consumer_confidence_1.png
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  9. #49
    igorad
    Guest
    Hi,

    Please download the updated version v5.93 of the NewsTrader EA with ability to trade using the ForexFactory Calendar.

    Regards,
    Igor
    chartartist likes this.

  10. #50
    Junior Member
    Join Date
    Apr 2015
    Posts
    1

    Talking

    Hi Igor, I'm still trying to modify the ea that I downloaded from this topic because I like it a lot and I like the possibility to make a backtest. Would you help me modify it? I need it to trade after the bar where the news has been released is closed so that it can put a buy stop and a sell stop order over the top and under the minimum of the closed bar.
    I can't find a way to change the folllowing code to tell the ea to consider the last news release time.
    Code:
    datetime TimeToOpen()
    {
       int i;
       double procTime;
       datetime result;
          
       if(ECN_Mode) procTime = OrderDuration; else procTime = ProcessTime;
       
       for (i=0;i<=NewsNum;i++)
       { 
       datetime oTime = (datetime)(dt[i] - TimeGap*60);
       
          if(TimeCurrent() >= oTime && TimeCurrent() <= oTime + procTime*60 && oTime >= pEventTime)
          {
          result = oTime; 
          break;
          }
       }
          
       return(result);
    }
    //-----
    bool IsNewEvent()
    {
       bool result = false;
            
       for (int i=0; i < NewsNum; i++)
       { 
       datetime oTime = (datetime)(dt[i] - TimeGap*60);
       
          if(TimeCurrent()>= oTime && oTime > pEventTime)
          {
          result     = true; 
          pEventTime = oTime;
          break;
          }
       }
       return(result);
    }
    Thank you for this great EA

Page 5 of 41 FirstFirst ... 3 4 5 6 7 15 ... LastLast

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
  •