Hi,
I struggle for hours with this simple problem that was no problem before:
I read the terminal symbol names and descriptions from the symbols.raw file.
string desc=FileReadString(handle, 75);
Print("symbol#",i,"/",n_pairs,": ", sSymbol, " / ", desc, " trade: ", trallow);
in the print nothing appears after the symbol name, not only here, in any kind of print. when I change the sSymbol to "xxxxxx" then it is OK.
now the result:
EURUSD,H1: symbol#63/22: GBPAUD
earlier it was:
EURUSDi,H1: symbol#63/22: GBPAUD / Great Britain Pound Sterling vs Australian Dollar trade: 1
How can I print anything what comes after this name?
Thank you.
Not sure if you deserve to be helped
It's no more needed to use hack :
Print("Symbol : ",_Symbol, " => ",SymbolInfoString(_Symbol,SYMBOL_DESCRIPTION));
Not sure if you deserve to be helped
It's no more needed to use hack :
I'm not sure too, but thank you, really.

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi,
I struggle for hours with this simple problem that was no problem before:
I read the terminal symbol names and descriptions from the symbols.raw file.
string desc=FileReadString(handle, 75);
Print("symbol#",i,"/",n_pairs,": ", sSymbol, " / ", desc, " trade: ", trallow);
in the print nothing appears after the symbol name, not only here, in any kind of print. when I change the sSymbol to "xxxxxx" then it is OK.
now the result:
EURUSD,H1: symbol#63/22: GBPAUD
earlier it was:
EURUSDi,H1: symbol#63/22: GBPAUD / Great Britain Pound Sterling vs Australian Dollar trade: 1
How can I print anything what comes after this name?
Thank you.