Editing ISSAME function

MA(BARS=50, STYLE=Simple, ) IsSame MA(BARS=50, STYLE=Simple, )
How do I edit the decimal places so I can have a range that is considered "the same"

            

Hi Keith,

You can use the ROUND() function to set the number of decimals being used, in this case the DecimalType option is set to 2:

V1=MA(BARS=50, CALC=Close);
ROUND(V1, DECIMALTYPE=0.00) IsSame