24101800:
If I am trying to output multiple lines, how do I do this?
The code above will only output: Oranges
As if it is being re-written on the same line again.
Comment("Apples"+"\n"+ "Oranges");
Emir Revolledo:
Comment("Apples"+"\n"+ "Oranges");
Awesome, ty
24101800:
If I am trying to output multiple lines, how do I do this?
The code above will only output: Oranges
As if it is being re-written on the same line again.
String what_to_post; what_to_post="we start here"; what_to_post+= "\nwe come here"; what_to_post+= "\nthird line"; what_to_post+= "\nthe current time is: "+TimeToString(iTime(Null,Period(),i)); what_to_post+= "\nlast line: \nThank You Happy trading"; Comment(what_to_post);

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
If I am trying to output multiple lines, how do I do this?
The code above will only output: Oranges
As if it is being re-written on the same line again.