If you don't have the source code to the other custom indicators that you want to apply to your custom OHLC data, then probably the only way is to create a Custom Symbol for that data and then apply the indicator to it.
Sorry, if that is not really what you want, but unfortunately that is the answer.
If you only wanted to have a single custom data set (single buffer output), then you could use the iCustom method to feed that data into another custom indicator.
But since you want to feed OHLC data to a closed source custom indicator, then only the Custom Symbol method remains.
thanks fernando, kind & helpful as always.. I find your answers almost in very forum thread.
reg. my problem: i have 7 different "virtual charts" that i generate and then I apply the external indicator on each of them. if there is any possibility to automate the process of making a custom symbol and storing the data i want inside it, i would consider such a solution.
i can not ask everyone who uses my indicator on a specific chart to make 7 custom symbols and assign them the correct settings & names in order to get my indicator working.
any suggestions how to solve this issue?
any suggestions how to solve this issue?
I'm somewhat confused.
You stated in your first post that you did not have the source code for the final custom indicator. But in your second post, you state that it is YOUR indicator.
Which is it then?
Assuming that the final custom indicator is indeed NOT yours nor that you have any access to the source code, then maybe you can consider creating a new indicator code to recreate its functionality. Then you can take that new indicator and adapt it to your requirements.
I'm somewhat confused.
You stated in your first post that you did not have the source code for the final custom indicator. But in your second post, you state that it is YOUR indicator.
Which is it then?
Assuming that the final custom indicator is indeed NOT yours nor that you have any access to the source code, then maybe you can consider creating a new indicator code to recreate its functionality. Then you can take that new indicator and adapt it to your requirements.
there are two indicators: my own which I am programming right now, and an external one that I want to use for some part of my indicator's logic.
my own indicator generates custom charts (custom OHLC data), seven series of such data, like they are seven custom symbols. after that, I apply the external indicator on these OHLC series, and fetch the result of these seven series (the external indicator's buffer for each) and use it for my own indicator's further logic.
hope it is clear now :-)
there are two indicators: my own which I am programming right now, and an external one that I want to use for some part of my indicator's logic.
my own indicator generates custom charts (custom OHLC data), seven series of such data, like they are seven custom symbols. after that, I apply the external indicator on these OHLC series, and fetch the result of these seven series (the external indicator's buffer for each) and use it for my own indicator's further logic.
hope it is clear now :-)
Yes! And in that case, the second part of my previous post offers you a suggested solution — recreate the logic of the propriety indicator.
I think I will go for making a script that creates custom symbols (didn't know before that this is possible) and fill them automatically, and than my indicator applies the external Indicator to these symbols and handle the results. Maybe it's easier than rewriting the indicator from scratch...
Personally, I would try recreating the Indicator, but maybe that is just my curious nature of wanting to know how things work. Also, I don't like depending on other people's "black boxes".
Given that if at a later date the ".ex5" file requires it to be recompiled (as has often happened when there are major updates), then your work will have been in vain.
You will forever be dependant on something that is beyond your control, and you will also never be able to sell your indicator on the Market.
Personally, I would try recreating the Indicator, but maybe that is just my curious nature of wanting to know how things work. Also, I don't like depending on other people's "black boxes".
Given that if at a later date the ".ex5" file requires it to be recompiled (as has often happened when there are major updates), then your work will have been in vain.
You will forever be dependant on something that is beyond your control, and you will also never be able to sell your indicator on the Market.
Thanks for this frustrating facts :-)
- 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 wanna make inside my own custom indicator some modifications to the existing chart & period data, and save the results in my own series arrays (let's say: cust_open[], cust_close[], cust_high[], cust_low[], cust_time[], cust_tick_volume[], cust_volume[], cust_spread[]). so it's technically a virtual custom chart.
After that I wanna apply a custom indicator on this virtual chart's data, and handle the results of this indicator inside my own custom indicator. I don't have the source code of the external one, only the EX5 file. It's output is very simple, a single DRAW_COLOR_LINE. As far as I know, this should be one buffer array for the line values and one buffer array for the line color.
How can this concept be done without establishing a real custom timeframe chart and attach the external indicator to this custom chart? as I don't need this at all...
I am asking only for the general concept and the functions to use, I will sort out the details myself. iCustom didn't work for me...
thanks for your help