Discussing the article: "How to create a simple Multi-Currency Expert Advisor using MQL5 (Part 1): Indicator Signals based on ADX in combination with Parabolic SAR" - page 3

 
Can seem to find the include files in the downloaded zip.  It only contain ADXPSAR_MCEA.mq5.  Can you point me to the location for the mqh ?
 
Say Tan #:
Can seem to find the include files in the downloaded zip.  It only contain ADXPSAR_MCEA.mq5.  Can you point me to the location for the mqh ?

This expert uses the built-in header file (mqh) from MQL5. In the folder: MQL5>Include

 
Good evening!

For those who do not know how to code: can you attach the EA file?
And can I know on what settings and on what timeframe the Expert Advisor was used? I would like to test it on a large range of dates.
 
summertop #:
can you attach the EA file?

The file with the EA code is located at the very end of the article.


Regards, Vladimir.

 
... curious, but it is not clear on which part of the history the testing was done, because a hundred trades on 30 currency pairs is confusing.
 
Sergey Pavlov #:
... curious, but it is not clear on which part of the history the testing was done, because a hundred trades on 30 currency pairs is confusing.

This was not written to sell to suckers. There are no fish here...

 

Maybe I'm missing something, but it's not a multicurrency trading system. It doesn't correlate signals from different instruments with each other.

It's a rather complicated way to combine autonomous trading on different symbols into one programme. It's like running a much simpler owl on several tabs.

 
Hello Roberto,
This is the first of your articles I read and I have the following curiosity in:
    ...    
    difDi(0.34),
    ...
    bool gadxrise=(ADXDIp[2]<=ADXDIm[2] && ADXDIp[1]>ADXDIm[1]+difDi && ADXDIp[0]>ADXDIp[1] && GiADXc==rise);
    bool gadxdown=(ADXDIp[2]>=ADXDIm[2] && ADXDIp[1]<ADXDIm[1]-difDi && ADXDIp[0]<ADXDIp[1] && GiADXc==down);

about the 0.34 value: what does it mean, what is its purpose, what does it intend to compensate, how did you arrive at it?

Thanks in advance,

Juan Luis

 
Juan Luis De Frutos Blanco #:
about the 0.34 value: what does it mean, what is its purpose, what does it intend to compensate, how did you arrive at it?

There must be a difference between PLUSDI_LINE and MINUSDI_LINE to get the value that there is a significant movement between PLUSDI_LINE and MINUSDI_LINE.
The value is 0.34 based only on observations and estimates.
If you want to replace it, it's up to you.

 
Roberto Jacobs #:

There must be a difference between PLUSDI_LINE and MINUSDI_LINE to get the value that there is a significant movement between PLUSDI_LINE and MINUSDI_LINE.
The value is 0.34 based only on observations and estimates.
If you want to replace it, it's up to you.

Thanks. 👍