
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
Thanks to the author for the article!
Don't do what 1CMaster advises, it's just nonsense.
Do something else, put a vertical line on the chart, moving which indicators show the state of this moment (where is the vertical line), and not the current one?
The code might be of good value but some of the indicators are redundant:
BB and Standard Deviation Channel - same thing;
Price , Donchian and Gallagher Channels - same thing;
Anyway, thanks for the article...
Alligator signal formation error
Copying of these buffers is necessary taking into account the shift of indicator lines, but here it is not.
Second, why copy two indicator values if only one bar is compared, i.e. one value for each buffer (line) is enough.
Signal from AO: a lot of data is also copied (they do not participate in the analysis).
And at the beginning of the article it was said that in order to remove the rattle we will analyse not the zero but the first bar in the history, why copy the zero bar?
We do not save resources ....
Alligator signal formation error
Copying of these buffers is necessary taking into account the shift of indicator lines, but here it is not.
Second, why copy two indicator values if only one bar is compared, i.e. one value for each buffer (line) is enough.
Signal from AO: a lot of data is also copied (they do not participate in the analysis).
And at the beginning of the article it was said that in order to remove the rattle we will analyse not the zero but the first bar in the history, why copy the zero bar?
We do not save resources ....
First of all, it is clearly written in the help.
Необходимо помнить, что смещение линии является чисто визуальным для отображения и значения в индикаторном буфере хранятся без смещения. При получении значений буфера функцией CopyBuffer() значение смещения никакого эффекта иметь не будет.
Secondly, I may have made some mistakes with data copying, but it does not affect the main point of the task. The purpose of the article is to show how to correctly address indicators and data.
By the way, I personally use such a construction, in this case the data from the function can be passed directly to the trade query.
First of all, it is clearly written in the help
Secondly, I may have made some mistakes with data copying, but it does not affect the main point of the task. The purpose of the article is to show how to correctly address indicators and data.
Yes, it is true visual, but we are oriented on the visual value when entering a deal and not on how they lie in the memory of the terminal, so we need to take this into account.
The correct way for alligator is 13 by 8, 8 by 5, 5 by 3 (standard values).
Yes, it is true visual, but we are oriented on the visual value when entering a deal and not on the way they are in the terminal memory, so we need to take this into account.
The correct way for alligator is 13 on 8, 8 on 5, 5 on 3 (standard values).
I'm not going to state it, but I don't think everyone uses an offset aligator. So there is no mistake in this case. You needed an offset, you added it, and so can the steel ones who need it. I will repeat once again, the purpose of the article is to show how to properly address indicators and their data, and how much and in what quantity to get them is a matter of each individual.
Reference...
Technical Indicator Alligator is a combination of Balance Lines (Moving Averages) using fractal geometry and non-linear dynamics.
The key words are in bold.
The result of your code is the analysis of averages
The result of my proposed code is the analysis of alligator lines.