Of course, it doesn't work.
- You can't store values into an array that has no size.
- When i is zero, you try to read High[0-1]
William Roeder:
Of course, it doesn't work.
- You can't store values into an array that has no size.
- When i is zero, you try to read High[0-1]
is not the non-specified size of one-dimension initialized array , defined by a compiler based on the initialized sequence?
would help me by sending me where exactly in the documentation I should set the size of an array?
Michael:
I have created the below function that would look for the value of peak points and trying to store its value in an array but for some reason, it did not work
can anyone help me?
I have created the below function that would look for the value of peak points and trying to store its value in an array but for some reason, it did not work
can anyone help me?
int s = ArraySize(Recent_TD_Point); ArrayResize(Recent_TD_Point,s+1); Recent_TD_Point[s]=High_TD_Point_Value(i);

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
can anyone help me?