marketsurvivalist

Volume Spike Analysis [marketsurvivalist]

This indicator is based on the ideas about Volume Spike Analysis written about by Vincent Kott in his book Volume Spike Analysis. Formulas are presented in the book for another platform, but I wrote the script based on the charts he provided.

The indicator basically takes out the noise and colors bars based on factors of time and volume for day. There are three different time periods you can set: Short, Medium, Long. Each period can be set with a different color. The period value looks for highest volume bar within that period. If today's volume bar is the hightest value, it colors the volume bar based on the formatted color. It does not matter if the price bar is up or down. The defaults are 4 days, 20 days, 100 days. There is also a volume moving average available to show or hide based on you trading style.

The purpose is to easily see changes in volume. Typically, you would like to see volume rising as a new trend begins. This will show up quickly as you will see a cluster of rising red and / or purple bars.
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?
//
// @author MarketSurvivalist
// This indicator is based on the ideas written about by Vincent Kott in his book Volume Spike Analysis 
// (http://www.amazon.com/Volume-Spike-Analysis-Includes-indicators-ebook/dp/B00F87ZMK8)
//

study("Volume Spike Analysis [marketsurvivalist]", shorttitle="VSA_MS")

shortLookback=input(4)
mediumLookback=input(20)
longLookback=input(100)
showMA=input(true)
lengthMA=input(60)

v2 = volume

highestShort = highest(volume, shortLookback)
highestMedium = highest(volume, mediumLookback)
highestLong = highest(volume, longLookback)

c = iff(highestLong == v2, blue, iff(highestMedium == v2, purple, iff(highestShort == v2, red, white)))
    
plot(v2, style=columns, color=c)
plot(showMA?sma(v2, lengthMA):na, color=aqua)