Dashboard Premium
FREE
Veröffentlicht:
1 April 2022
Aktuelle Version:
1.2
Keinen passenden Roboter gefunden?
Geben Sie Ihren Eigenen in Auftrag
auf Freelance!
Gehen Sie zu Freelance
Geben Sie Ihren Eigenen in Auftrag
auf Freelance!
Wie man einen Roboter oder Indikator kaufen kann
Starte Deinen EA im
Virtual Hosting
Virtual Hosting
Teste einen Indikator/Roboter vor dem Kauf
Möchtest Du Geld im Market verdienen?
Wie man Produkte richtig präsentiert
Sie verpassen Handelsmöglichkeiten:
- Freie Handelsapplikationen
- Über 8.000 Signale zum Kopieren
- Wirtschaftsnachrichten für die Lage an den Finanzmärkte
Registrierung
Einloggen
Sie stimmen der Website-Richtlinie und den Nutzungsbedingungen zu.
Wenn Sie kein Benutzerkonto haben, registrieren Sie sich

All components should be running in one window.
I installed all components as they should. However, I am getting signals allover the place. Also, the zigzag indicator showing annoying arrows. What is wrong? I need to replicate your result ( as it shown above in the picture)
I installed all components as they should. However, I am getting signals allover the place. Also, the zigzag indicator showing annoying arrows. What is wrong? I need to replicate your result ( as it shown above in the picture)
Thank you very much for your interest in my developments!
I have added additional checks to the indicators. If some indicator is not found, then you will receive an alert.
In addition, I have added significant improvements to the ZigZag+ indicator.
In order for the updates to take effect, you need to compile after copying the new files.
In order for the updates to take effect, you need to compile after copying the new files.
Good job Boris, can you combine several indicators in the same dashboard?
I want to add ichimoku, plus rsi, plus moving average, plus stochastic, plus rsi, plus CCI, and let me summarize the strength of the signalHow could it be done or do I have to create different signal collections in different charts?
How could it be done or do I have to create different signal collections in different charts?
Hello!
All of the above can be added to one collection of signals.
Describe the logic of all the signals that you want to add, I will help you do it correctly.
Hello!
All of the above can be added to one collection of signals.
Describe the logic of all the signals that you want to add, I will help you do it correctly.
Hi I did the test that way, but only the RSI appears on the Dashboard, how could the others be seen?
How could the others be seen?
Hello!
I added all the indicators as in your first screenshot. Study my code and comments inside.
Use "Config" with ready input parameters for the signal panel.
More details about this.
Each individual indicator requires two separate indicator buffers. One indicator buffer is for the up arrow, and the second one is for the down arrow.
In order for everything to work, arrays are needed to bind to indicator buffers.
It is necessary to link arrays and indicator buffers.
To distinguish the arrows, you need to assign a code for each arrow.
By adding multiple indicators, buffers need to be maintained.
Now we are resetting all the values that are located on the left.
In the main loop of our signal collection, we will reset all the values that we are calculating now.
We calculate all the indicators.
Each indicator uses its own pair of arrays.
That's all!
r everything to work, arrays are needed to bind to indicator buffers
ok nice job, another query, if there are 3 indicators in the same temporality and same pair, does the dashboard show it to you, example RSI/STOCASTIC/MA (enlarging the module)?
second query. Could a programmable robot read (Buffers) the dash board to put, for example, only long or only short?
ok nice job, another query, if there are 3 indicators in the same temporality and same pair, does the dashboard show it to you, example RSI/STOCASTIC/MA (enlarging the module)?
second query. Could a programmable robot read (Buffers) the dash board to put, for example, only long or only short?
You can program all this in the signal collection.
For example, in order for the panel to show when three indicators give a signal at the same time, you need to add two more separate buffers. You will receive such a signal separately. It will turn out not three indicators, but three + one more combined of three at the same time, only four.
Only the up or down arrows, you also program this in the signal collection.
You can put the switch in the input parameters of the signal collection, but you need to follow the rule — the input variable "Limit" should be the first in the list. Only below the "Limit" variable can you add your own new input variables.
ok, thank you very much, I'm doing some tests
ideally the indicators can be seen in the same temporality, I do not know how to do it
I was able to integrate the ichimoku, but I need to improve (At the moment there is the cross in each candle)I was able to integrate the ichimoku, but I need to improve.
If you need the moment of intersection of two lines, then it is done the same way as other indicators.
First, we check that one line is higher than the other on the i-th candle, and on the i+1st candle, the same line is lower or equal to the other. This is for purchase. For sale, everything is exactly the opposite.
How does it work?
If TENKANSEN i-th is higher than KIJUNSEN i-th and
TENKANSEN i+1st is lower or equal to KIJUNSEN i+1st, then bf6[i]=low[i]
Also for bf7[i]=high[i], but the signs — (< and >=) change.
I tried use with neuroshell indicator but it wrong every time.
Could you help with this?