a trading strategy based on Elliott Wave Theory - page 296
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
Have you tried additional manipulation of the wavelet transform coefficients.
End up with something like this:
PS: So far I've come up with several variants in MT (MathCAD doesn't have such a problem):
(1). I create a parameter (int count=0;) I loop through the range and check criteria; if it meets them, count=count+1. Next, I create an array with the obtained count, and repeat everything all over again: I write the calculated parameters to the array and select the optimal channel.
(2) Create an array for channel parameters according to the original range length.
... How can I put it correctly - is it possible to dynamically expand the number of elements in the array. For example, I am looking for stable channels at some area from zero bar. I do not know their number at the beginning of the search and I may not find any.
Frankly speaking, the question is not quite clear. The number of elements in an array (size) is dynamically changed with ArrayResize. If you actually want to create structures, they are promised only in MT5.
Purely by the consonance of words - I was solving the problem of additional order properties, we did not know exactly their number and the number of properties (the same 40 indicators) was also not known beforehand. Three functions were used but new properties had to be added to each of them manually, with subsequent recompilation. I don't know if this is right or wrong, but just in case, here is the code of the last version
P.S. By the way, I used the same "structure" for my channels.
Doesn't changing the size of an already created array resize it to zero?
Thank you. I must have written the print wrong somehow. :о)
When the matrix is resized, a null row is added to the matrix.