Hi,
Every now an again I get Euro values with a very large amount of decimal places.
How can I adapt the below script to make sure it only prints 1.xxxx when I use Math.round(close())
function rnd(value){
value *=100;
return Math.round((value, 2)/100)}
Thanks Roger
Every now an again I get Euro values with a very large amount of decimal places.
How can I adapt the below script to make sure it only prints 1.xxxx when I use Math.round(close())
function rnd(value){
value *=100;
return Math.round((value, 2)/100)}
Thanks Roger
Comment