Comment() function... trouble for "\n"

 
Hello,



How to use "\n" or "\r" into Comment() ??



instead of "  >|--|<  " to separate, I would like to go to the line down.


Comment("|--|<  Daily Opened Price = ",Daily_Open_Comment,"  >|--|<  Marge_Pips = ",Pips_Marge_v1,"  >|--|<  Today_Profit = €",Today_Profit_USD_News,"  >|--|<  DrawDown = %",round(Today_Profit_USD_News/(AccountBalance()-Today_Profit_USD_News)*100));


Please advice



Thank you.
 
Comment(
"Daily Opened Price = ",Daily_Open_Comment,   "\n",
"Marge_Pips = ",Pips_Marge_v1,                "\n",
"Today_Profit = €",Today_Profit_USD_News,     "\n",
"DrawDown = %",round(Today_Profit_USD_News/(AccountBalance()-Today_Profit_USD_News)*100)
);
Was that so hard you couldn't even try it?
 
I did try... not this way

Thank you