
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
If you don't have access to the Indicator source code then no it isn't possible.
What if you do have the source code for the indicator?
Then you have modify it to output its inputs to terminal variables so the EA can read them and call iCustom with the correct parameters.
Then you have modify it to output its inputs to terminal variables so the EA can read them and call iCustom with the correct parameters.
Is it possible if the case is like this:
I've got an indicator file, for example MyIndi.mq4, and I want the value of it: string Signal="BUY" becoming the output, which I can use it as the input of my EA file "MyEA.mq4".
How this MyEA.mq4 can read this string Signal="BUY".
I do really appreciate for your help.
Thank you.
It can't. You have to code something that the EA can read. Create a buffer with 0, or ±1.
How this MyEA.mq4 can read this string Signal="BUY".
As long as the Custom Indicator uses buffers for plotting out the indicator, these buffer values can be read via the iCustom function in your EA.
There is a way to read it from a chart. However, it cannot be a string. Just a number.
There is a way to read it from a chart. However, it cannot be a string. Just a number.
If there is a text object drawn by an indicator on the chart, then the EA can read it ( as long as the object name is known or can be worked out).
Not ideal, but sometimes it is the only way, especially if the source code for the indicator that draws the object is not available.
There is a way to read it from a chart. However, it cannot be a string. Just a number.
Hi, Ivan.
You have already had this confirmed by both William and Fernando.
You have already had this confirmed by both William and Fernando.
Thank you for your help, William, Fernando, Ivan, & Keith.