-
Each value does not return anything.
"RSI240P0", "RSI240P1", "RSI240P2"
Those are strings. They have nothing to do with your double variables.
-
How to get the values into the array? Assign them.
double RSIValues[3]; RSIValues[0] = RSI240P0; RSIValues[1] = RSI240P1; RSIValues[2] = RSI240P2;
Or drop the variables and assign the values directly from the iRSI calls.
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
Implicit string to number conversion warning occurs next to all values in the array. Don't understand why considering each value returns a double. How can input the values for RSI240P0, RSI240P1, RSI240P2 in the array without getting that warning?