Hi guys,
I'm starting to look into the MQL5 Indicators Market and I would like to implement them in my EAs. Can someone explain the procedure?
Can I call them with iCustom?
I didn't see any of them giving in the description the apropriate iCustom parameters to call the buffers. Some of them have buy/sell signals but how to call them too?
Is there any documentation or tutorial that talks about this subject?
Thanks for your help
Solail
you need to ask the sellers as only they will know how they have developed it and if they are using buffer or otherwise..
Thanks for your answer
Well that's too bad. All of the indicators I looked didn't have these indications in their description. That means that we have to contact each of them to get the proper way to work with.
That also means that most of the indicators I bought by manual trader rather than EA builders?!
Open the data window and see if the indicator has values there. Those are buffers.
I get question
in indicator define like this
//--- indicator buffers #property indicator_buffers 6 #property indicator_plots 2 #property indicator_type1 DRAW_COLOR_HISTOGRAM #property indicator_type2 DRAW_COLOR_LINE double xx1[];double xx2[];double xx3[];double xx4[];double xx5[];double xx6[]; void OnInit() {... //--- indicator buffers mapping SetIndexBuffer(0, ExtMacdBuffer, INDICATOR_DATA); SetIndexBuffer(1, ExtMacdColorBuffer, INDICATOR_COLOR_INDEX); SetIndexBuffer(2, ExtSignalBuffer, INDICATOR_DATA); SetIndexBuffer(3, ExtSignalColorBuffer, INDICATOR_COLOR_INDEX); SetIndexBuffer(4, ExtFastMaBuffer, INDICATOR_CALCULATIONS); SetIndexBuffer(5, ExtSlowMaBuffer, INDICATOR_CALCULATIONS); ... }
I only can see 2 buffer in data window ?
Does not work in MQL5:
up_buffer = iCustom (_Symbol, PERIOD_CURRENT, ":: Indicators \\ Examples \\ ZigZag.ex5", 12,5,3,1);
Up_buffer is always equal to dn_buffer. Why? How can we obtain the data separately?
Thanks in advance to everyone.
In the meantime, I found the answer to my question.
zz_handle = iCustom (_Symbol, PERIOD_CURRENT, ":: Indicators \\ Examples \\ ZigZag.ex5", 12,5,3);
Zig Zag has two buffers. Their indexes are zero and one.
Open the data window and see if the indicator has values there. Those are buffers.
How exactly can I get a hold of those buffers? I am trying to call a market indicator by getting a hold of the buffers within the data window but I don't how I can.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi guys,
I'm starting to look into the MQL5 Indicators Market and I would like to implement them in my EAs. Can someone explain the procedure?
Can I call them with iCustom?
I didn't see any of them giving in the description the apropriate iCustom parameters to call the buffers. Some of them have buy/sell signals but how to call them too?
Is there any documentation or tutorial that talks about this subject?
Thanks for your help
Solail