ObjectCreate problem

 
Hello, I want at ObjectCreate ...  string        object_name,   // object name...have the string like candle1,candle2 etc....How can I make it? how to and to the string some variable(numbers) thanks :)
 
sorry, i solve this now :) https://docs.mql4.com/strings/stringconcatenate
 
augino: string  object_name,   // object name...have the string like candle1,candle2 
int number = ...;
string object_name = "candle" + IntegerToString(number);
Or StringConcatenate or StringFormat
Alphabetic Index of MQL4 Functions (600+) - MQL4 forum
Reason: