t0mbfunk:
Hi!
Please explain how can i output several things in comment() function without having to write a mile long line.
I mean how do i write it the following way:
use a string and append to that string the next thing you want to output. new line with "\n".
t0mbfunk:
Hi!
Please explain how can i output several things in comment() function without having to write a mile long line.
I mean how do i write it the following way:
Comment("..",..);
Comment("..",..);
Comment("..",..);
and not Comment("..",..".",..........................................................................................................)
thanks
Comment( " abc ",
"\n d",
"\n e",
"\n\n f ");
i was not asking you...
szgy74: use a string and append to that string the next thing you want to output. new line with "\n".
t0mbfunk: szgy74 Can you give an example?
t0mbfunk: szgy74 Can you give an example?
string threeLines = "this is line one"; threeLines = threeLines + "\n" + "this is line two"; threeLines = threeLines + "\n" + "this is line three"; Comment( threeLines );
WHRoeder:
thanks, this is what I thought of.

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!
Please explain how can i output several things in comment() function without having to write a mile long line.
I mean how do i write it the following way:
Comment("..",..);
Comment("..",..);
Comment("..",..);
and not Comment("..",..".",..........................................................................................................)
thanks