LazyBear

Indicator: Price Headley Accelaration Bands [LazyBear]

The Acceleration Band System was published in "Big Trends in Trading" by Price Headley in 2002. The system designed to catch stocks as they start to trend but before they go parabolic. The system is simple but supposed to be very effective.

This system makes use of %R and ADX a lot to determine the entries/exits. Refer to the documents listed below for the complete set of rules.

More info:
* System Trading Rules: drive.google.co...UlmSnNpZ0k/edit?usp=sharin...
* www.bigtrends.com/accelerationbands.pdf
* www.slideshare.net/B...acceleration-bands-r

List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
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 LazyBear
//
// If you use this code in its orignal/modified form, do drop me a note. 
// 
study(title = "Price Headley Accelaration Bands [LazyBear]", shorttitle="PHAB_LB", overlay=true)
length=input(20)
ub=(high*(1+2*((((high-low)/((high+low)/2))*1000)*0.001)))
su=sma(ub, length )
lb=(low*(1-2*((((high-low)/((high+low)/2))*1000)*0.001)))
sl=sma(lb, length )
u=plot(su, color=blue, linewidth=2)
l=plot(sl, color=red, linewidth=2)
fill(u,l,gray, transp=90)
plot(avg(su,sl), style=3, color=gray)