Change double A[]; to double A[1];

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
I'm new to MT4 programming, I guess the answer to my question is simple:
in the definition part there is:
double A[];
in the program part there is:
A[0]=trend[1]; // trend[1] in this case has the value -1
Comment(trend[1]," ",A[0]);
now, when looking at the comment window by launching the (complete) indicator,
I see in the comment window -1 and 0 (-1 for trend[1] is correct) but I'd like to have the variable A[0] showing the same value ("-1"),
but it shows 0??
thanks in advance