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)