How to remove digits after decimal from exploration reports ??

#1
Hi All,

On my meta stock EOD exploration reports I am getting four digits after decimal on each column which are eating my lots of space on report.

Please share me example for removing digits after decimal.

Thanks in advance
 

mastermind007

Well-Known Member
#2
Hi All,

On my meta stock EOD exploration reports I am getting four digits after decimal on each column which are eating my lots of space on report.

Please share me example for removing digits after decimal.

Thanks in advance
10 characters wide and 3 decimal places: writeval(macd(),10.3)
5 characters wide and 2 decimal places: writeval (rsi(14),5.2)
Left-justified with 3 decimal places: writeval(rsi(21),0.3)
8 characters wide with no decimal places: writeval(rsi(34),8.0)