SUYANTO_SE:
I have tried to add Buy and Sell Signal, pop up alert, and push notification from Histogram Indicator.
Following line have errors :
string fullMsg = Symbol() + " + IntegerToString(Period()) + " - " + msg;
The errors after compiling :
'' - double quotes are needed
'-' - illegal operation use
Much appreciate for your kind help to fix it.
Thank you.
string fullMsg = Symbol() + " " + IntegerToString(Period()) + " - " + msg; // assuming that msg is a string
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 tried to add Buy and Sell Signal, pop up alert, and push notification from Histogram Indicator.
Following line have errors :
string fullMsg = Symbol() + " + IntegerToString(Period()) + " - " + msg;
The errors after compiling :
'' - double quotes are needed
'-' - illegal operation use
Much appreciate for your kind help to fix it.
Thank you.