Variables
syminfo.minmove
Returns a whole number used to calculate the smallest increment between a symbol's price movements (syminfo.mintick). It is the numerator in the syminfo.mintick formula: syminfo.minmove / syminfo.pricescale = syminfo.mintick
Example
indicator(title="Min Move Example", overlay=true)
min_move = syminfo.minmove
plot(close, color=min_move < 0.01 ? color.blue : color.red)
Type
simple float