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
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
//
// @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)