ECURRENCY TEAM:
please correct the error
I am guessing that you have already declared ADX_trend_level as a global scope variable.
The error report should tell you in which line the variable was declared.
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
color assigncolor(double adx_time,double ADX_trend_level,double di_p_time,double di_m_time) { if (adx_time < ADX_trend_level) { return (LightSkyBlue); } else if (di_p_time > di_m_time) { return (Lime); } else {return (Red); } } color assignCCIcolor(double cci_time) { if (cci_time > 0) { return (Lime); } else {return (Red); } }please correct the error