Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen
pradeepmaxim  
Adnan Iqbal:
It should be 1 dollar with .01 lot and 10 pip. Please share your input settings.

Thanks got it, Confusion between pip and points (SAAD Trend Tracker , SAADSCALPER )

Rabeia Abdelhamid Saleh Mussa  

I have a question. I have miniaccount. Why cant I let less than 1 in Target pips? takeprofit need more than 100 pips 

Adnan Iqbal  
Reebo:

I have a question. I have miniaccount. Why cant I let less than 1 in Target pips? takeprofit need more than 100 pips 


Hi Reebo,

Current ver is not supporting properly for miniaccount in term of targets, we have to adjust inputs to meet target, I need some detail to provide you temporary solution. I will include it in future release.

I send you PM for further support.

tungiro13  

Hello Adnan

I rent your EA. I start last week but now no have order

Adnan Iqbal  
tungiro13:

Hello Adnan

I rent your EA. I start last week but now no have order


Hi ,

Will you please share some detail to understand. MT4 screenshot if you can share.

ForexTraderSF  

It is supposed to open a trade after going negative 100 pips? My GBPJPY 15m has not done yet and 100 pips down now.

K-J  

Hi,


What is your best setting parameter for the EA?

Adnan Iqbal  
ForexTraderSF:

It is supposed to open a trade after going negative 100 pips? My GBPJPY 15m has not done yet and 100 pips down now.


Hi 

Please share your MT4 Screenshot.

Please note that it is not openingtrade immediately after 100 pip. It will open trade once identify reversal of market again after 100 pips using TrendTracker indicator.

K-J  
Adnan Iqbal:

Please find attached best settings.


Thank you!

Henry De Jongh  
ForexTraderSF:

It is supposed to open a trade after going negative 100 pips? My GBPJPY 15m has not done yet and 100 pips down now.

Hello ForexTraderSF,

thee needeth to has't patience. All trades shall closeth soon'r 'r lat'r.
SaadTT will throw in the occasional trade in the opposite direction so you will continue to profit regardless of the draw-down, so just sit back and enjoy Microsoft mspaint.exe while it's available (it got discontinued, now that's some real news).

Henry de Jongh
Software Developer
https://00laboratories.com/MT4 Trading Signal

ATM09  

Hi Adnan

I like the EA and see it has a lot of potential but would be great if it had a NEWs Filter and NEWs Time Filter to go along with it so in times of big news etc

We can say  . . have a 120 minute , etc delay between resuming trading activities. Thus avoiding been caught out when big news happens such as FED rate hike, NFP or BOE rate changes etc.

Would it be possible to include this with the next updated version release?

ATM09 

Henry De Jongh  
ATM09:

Hi Adnan

I like the EA and see it has a lot of potential but would be great if it had a NEWs Filter and NEWs Time Filter to go along with it so in times of big news etc

We can say  . . have a 120 minute , etc delay between resuming trading activities. Thus avoiding been caught out when big news happens such as FED rate hike, NFP or BOE rate changes etc.

Would it be possible to include this with the next updated version release?

ATM09 

It would be even more awesome to *cough* steal *cough* the feed from the myfxbook economic calendar public page and provide SaadTT with that information (and display it on the graph as well).
In fact, I think I will do just that and send the code over to Adnan.

Doesn't mean he shouldn't look into your time option, I just think we can do even better!
I will report back, time to go to my secret laboratory.

Henry de Jongh
Software Developer
https://00laboratories.com/MT4 Trading Signal

Adnan Iqbal  
ATM09:

Hi Adnan

I like the EA and see it has a lot of potential but would be great if it had a NEWs Filter and NEWs Time Filter to go along with it so in times of big news etc

We can say  . . have a 120 minute , etc delay between resuming trading activities. Thus avoiding been caught out when big news happens such as FED rate hike, NFP or BOE rate changes etc.

Would it be possible to include this with the next updated version release?

ATM09 


Hi,

Timing factor is available in inputs to stop trading during news hr. But it will support to stop trading for initial trades. Secondary trades we should not control part of strategy.

Adnan Iqbal  
Henry De Jongh:

It would be even more awesome to *cough* steal *cough* the feed from the myfxbook economic calendar public page and provide SaadTT with that information (and display it on the graph as well).
In fact, I think I will do just that and send the code over to Adnan.

Doesn't mean he shouldn't look into your time option, I just think we can do even better!
I will report back, time to go to my secret laboratory.

Henry de Jongh
Software Developer
https://00laboratories.com/MT4 Trading Signal


Hi Henry,

Great, it will save my time. I will be awaiting. 

Adnan Iqbal  
Reebo:

Thanks Adnan for the message. I replied to u. Did u read the message?


Yes I read the message, I will provide you settings or solution for mini account.

Henry De Jongh  

I did it! What a breakthrough! :)

I have created a header script (see attachment) that provides you with the live forex economic calendar of myfxbook (so truly the latest forex news events).
For efficiency the news is downloaded from an external REST API.

Additional usage instructions for users

To enable access to the news server, SaadTT users must add the full URL in the list of allowed URLs (Main Menu -> Tools -> Options, tab "Expert Advisors"). In case my REST API:
http://api.00labs.net/v01/forex/calendar/mt4

About the REST API

The service must return 'text/plain' with status 200 OK.
Every line of the response body should be in this format:

Time\tIsPassed\tImportance\tDescription

Where:

Time
In format 'yyyy.mm.dd hh:mi' (see StringToTime()).
IsPassed Is 'true' when it's old news or else 'false'.
ImportanceIs '0' (none), '1' (low), '2' (medium) or '3' (high).
DescriptionIs a brief title for the news event.

Example:

2017.08.06 23:50    false    1    JP Foreign Reserves
2017.08.07 00:00    false    0    August Civic Holiday

My REST API (http://api.00labs.net/v01/forex/calendar/mt4) fetches the news data from the myfxbook economic calendar. Then stores the news events in a cache to speed up further requests. A new fetch is done once per hour (we don't want to spam them).

MetaTrader Limitations

The WebRequest() function is synchronous, which means it breaks the program execution and waits for the response from the requested server. The function can only be called from Expert Advisors as they run in their own execution threads. WebRequest() cannot be executed in the Strategy Tester. As the REST API only fetches new data once per hour this script will also only fetch new data from the REST API once per hour. This makes the overhead of that function negligible.

Example Expert Advisor (outputs news data to the "experts" tab)

btw. in case you are still wondering why I am not doing all of the REST API stuff in MQ4 directly... the reason for that is processing time. The MT4 WebRequest() function is synchronous and will freeze the Expert Advisor, retrieving the little information I provide takes nearly no time and I put a timeout of 5 seconds, however, the myfxbook page is massive and slow and takes way too long to download. I also do all the HTML processing on the server and MQL4 is based on C/C++ and the string manipulation functions are a nightmare. Adnan should make the URL configurable so that you can choose to use some other server or your own homebrew server. I will provide the source code to the C# server if Adnan goes through with using this to detect news events.

#include "HForexCalendar.mqh";
//+------------------------------------------------------------------+
//| Expert global variables                                          |
//+------------------------------------------------------------------+
HForexCalendar* forexCalendar;

//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
{
//---
   forexCalendar = new HForexCalendar();
  
   for(int i = 0; i < forexCalendar.GetNewsCount(); i++)
   {
      Print(IntegerToString(i) + ": Time      : " + TimeToStr(forexCalendar.GetNewsTime(i)));
      Print(IntegerToString(i) + ": Is Passed : " + (forexCalendar.GetNewsIsPassed(i) ? "true" : "false"));
      Print(IntegerToString(i) + ": Importance: " + IntegerToString(forexCalendar.GetNewsImportance(i)));
      Print(IntegerToString(i) + ": Description: " + forexCalendar.GetNewsDescription(i));
   }
//---
   return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---
   delete forexCalendar;
}

Anyone that needs JSON output

Use this link instead: http://api.00labs.net/v01/forex/calendar/json


Henry de Jongh
Software Developer
https://00laboratories.com/MT4 Trading Signal

Dateien:
Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen