Another trick that I use is don't print the comment right away, just set a variable for each line comment. After the checking routine is done, then print all comment variable.
Example :
if (somecode=othercode){
Comment1 = "Yesterday quotations";}
if (anothercode=yetanother){
Comment2 = "\nTodays quotations";}
Comment(Comment1,Comment2);
Maybe other programmer got other solution. Hope this help
