HPotter

Accumulation Swing Index

The Accumulation Swing Index is a cumulative total of the Swing Index.
The Accumulation Swing Index was developed by Welles Wilder.
The SwingIndex function was developed to help cut through the maze of
Open, High, Low and Close prices to indicate the real strength and direction
of the market. The Swing Index function looks at the Open, High, Low and
Close values for a two-bar period. The theory is that there are four cross-bar
and one intra-bar comparisons that are strong indicators of an up or down day.
The Swing Index returns a number between -100 and 100. If the factors point toward
an up day, then the function value will be positive and vice versa. In this way,
the Swing Index gives us definite short-term swing points, and it can be used to
supplement other methods as a breakout indicator. A breakout is indicated when the
value of the Accumulation Swing Index (ASI) exceeds the ASI value on the day when a
previous significant High Swing Point was made. A downside breakout is indicated when
the value of the ASI drops below the ASI value on a day when a previous significant
low swing point was made.
Since only futures have a relative daily limit value, this function only makes sense
when applied to a futures contract. If you use this function and it only plots a zero
flat line, check the Daily Limit value.

Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 26/05/2014
// The Accumulation Swing Index is a cumulative total of the Swing Index. 
// The Accumulation Swing Index was developed by Welles Wilder.
// The SwingIndex function was developed to help cut through the maze of 
// Open, High, Low and Close prices to indicate the real strength and direction 
// of the market. The Swing Index function looks at the Open, High, Low and 
// Close values for a two-bar period. The theory is that there are four cross-bar 
// and one intra-bar comparisons that are strong indicators of an up or down day.
// The Swing Index returns a number between -100 and 100. If the factors point toward 
// an up day, then the function value will be positive and vice versa. In this way, 
// the Swing Index gives us definite short-term swing points, and it can be used to 
// supplement other methods as a breakout indicator. A breakout is indicated when the 
// value of the Accumulation Swing Index (ASI) exceeds the ASI value on the day when a 
// previous significant High Swing Point was made. A downside breakout is indicated when 
// the value of the ASI drops below the ASI value on a day when a previous significant 
// low swing point was made.
// Since only futures have a relative daily limit value, this function only makes sense 
// when applied to a futures contract. If you use this function and it only plots a zero 
// flat line, check the Daily Limit value. 
////////////////////////////////////////////////////////////
study(title="Accumulation Swing Index (ASI)", shorttitle="ASI")
DailyLimit = input(10000, minval=1)
AbsHighClose = abs(high - close[1])
AbsLowClose = abs(low - close[1])
AbsCloseOpen = abs(close[1] - open[1])
K = iff(AbsHighClose >= AbsLowClose, AbsHighClose, AbsLowClose)
R = iff(AbsHighClose >= AbsLowClose, 
        iff(AbsHighClose >= (high - low), AbsHighClose - 0.5 * AbsLowClose + 0.25 * AbsCloseOpen, (high - low) + 0.25 * AbsCloseOpen),
        iff(AbsLowClose >= (high - low),  AbsLowClose - 0.5 * AbsHighClose + 0.25 * AbsCloseOpen, (high - low) + 0.25 * AbsCloseOpen))
nRes = iff(R != 0, 
            (50 * (((close - close[1]) + 0.50 * (close - open) + 0.25 * (close[1] - open[1])) / R ) * K / DailyLimit) + nz(nRes[1], 0), 
            0 + nz(nRes[1], 0))
plot(nRes, color=blue, title="ASI")