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 open-source

Dans le véritable esprit de TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par le règlement. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.

Vous voulez utiliser ce script sur un graphique ?
//
// @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)