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.
Skript med en öppen källkod

I sann TradingView-anda har författaren publicerat detta skript med öppen källkod så att andra handlare kan förstå och verifiera det. Hatten av för författaren! Du kan använda det gratis men återanvändning av den här koden i en publikation regleras av våra ordningsregler. Du kan ange den som favorit för att använda den i ett diagram.

Frånsägelse av ansvar

Informationen och publikationerna är inte avsedda att vara, och utgör inte heller finansiella, investerings-, handels- eller andra typer av råd eller rekommendationer som tillhandahålls eller stöds av TradingView. Läs mer i Användarvillkoren.

Vill du använda det här skriptet i ett diagram?
//
// @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)