Ray Eagle: implicit conversion from 'number' to 'string' + h + ":" + m + ":" + s,
So stop doing that. Convert your variables to a string before concatenation. Or use StringFormat.
Thank you William for your fast reply,
Ok, understand I hope
ObjectSetText("lineti", "Bar: "+StringConcatenate( "", h, ":", m, ":", s, "" ));
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 have taken this code from an indicator and placed it into my EA so I can see the Bar Timer countdown
Yet I have 3 Warnings - implicit conversion from 'number' to 'string' + h + ":" + m + ":" + s,
I would like to correct/remove these warnings All help appreciated.