Did someone make the remark recently that they did not like to put commas in R2 scan code? A consequence of no comma is no column break in the Browse List spreadsheet.
E.g. println symbol:-2, date(0):8, rsi(0):4:0, qrs(0):4:0
will result in only two columns in the spreadsheet: the symbol itself in the left column, and everything else in the right column. Next,
println symbol, date(0):8,",",rsi(0):4:0,",",qrs(0):4:0
will result in three columns when the spreadsheet is opened. For some reason, symbol and date are now in the same column. Finally,
println symbol, ",",date(0):8,",",rsi(0):4:0,",",qrs(0):4:0
will result in the expected four columns.
Column breaks do not affect spreadsheet sorting, they are only a visual preference.
FYI
-Gary |