GumRai but if I want it to output minimum of 8 charactersProfit= 10.00How do I do it.\
Change it to do what you wantstring RJust(string s, int size, string fill=" "){ for(int n=size-StringLen(s); n > 0; n--) s = fill+s; return(s); } string LJust(string s, int size, string fill=" "){ for(int n=size-StringLen(s); n > 0; n--) s = s+fill; return(s); } string txt= "Profit="+RJust( DoubleToStr(prof,2), 8);or use StringFormat
double d=54.21; PrintFormat("Profit='%8.2f'", d); // "Profit=' 54.21'" // 876
Thank you William.

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
Hi,
I just don't get the explanation or the example in the documentation.
If I have
for when profit=10 and 1000, output will be
Profit=10.00
Profit=1000.00
but if I want it to output the DoubleTo Str with always a minimum of 8 characters
Profit= 10.00Profit= 1000.00
How do I do it.
Many thanks