Amplitude is a very simple measurement of subtracting the range (high - low) of a candle by some other data from that candle. in this case, we use the midpoint of the candle, so the calculation is (high - low) / (high + low)/2 . This isn't a new concept, but I could not find this study anywhere so I decided to add it myself.
Script de código aberto

Dentro do verdadeiro espírito TradingView, o autor deste script publicou ele como um script de código aberto, para que os traders possam compreender e checar ele. Um viva ao autor! Você pode usá-lo gratuitamente, mas a reutilização deste código em uma publicação é regida pelas Regras da Casa. Você pode favoritá-lo para usá-lo em um gráfico.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.

Quer usar esse script no gráfico?
//A simple measurement of amplitude
//You can use this to help gauge volatility in the market
//Change the divisor as you wish

study("amplitude")
amplitude = ((high - low)/((high+low)/2))

plot(amplitude, style=histogram)