Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
I'm programming a very complex visual indicator that combines many indicators.
Because of the (very, very stupid) limitation that indicators can only have 8 lines, I'm now thinking if I could use EA to plot indicators to the main window (Line objects are too slow, tried them too).
Is there any function that can be used to add new indicators to the main window?
I already started to reverse-engineer template files..
(they are ascii files if someone is interested, they can be generated by some other program - that was my next plan)
edit: DECEMA_v1 only seems to plot one line, that was not what I had in mind - I want to plot about 200 indicator values to the main window (don't ask why yet :-D - I'm working on a kind of visual layout that plots different things to the screen so that visual image shows a basic market mood)
I'm programming a very complex visual indicator that combines many indicators.
Because of the (very, very stupid) limitation that indicators can only have 8 lines, I'm now thinking if I could use EA to plot indicators to the main window (Line objects are too slow, tried them too).
Is there any function that can be used to add new indicators to the main window?
Thanks in advance!
The 8 buffers is only a limitation if all buffers are used to display signals - many indicators 'waste' display buffers for general calculations, instead of using arrays to do this. Also, if display buffer shortage is a problem, split the signals between two indicators, and drop one on top of the others window.
The 8 buffers is only a limitation if all buffers are used to display signals - many indicators 'waste' display buffers for general calculations, instead of using arrays to do this. Also, if display buffer shortage is a problem, split the signals between two indicators, and drop one on top of the others window.
I have about 300 lines per screen (see the screenshots), that would require me to use 300/8 = 37 indicators per screen that I would have to manually add to the graph.. so I'll rather create a different program in another language that can create templates on the fly if EA cannot add new indicators to the screen automatically.
By the way there is a real nasty reason why many times you have to use buffers for calculations, indicator arrays lost all the old data between redraws even if the array is global.