HPotter

Accumulation Swing Index (ASI)

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.

Script de código abierto

Siguiendo el verdadero espíritu de TradingView, el autor de este script lo ha publicado en código abierto, para que los traders puedan entenderlo y verificarlo. ¡Un hurra por el autor! Puede utilizarlo de forma gratuita, aunque si vuelve a utilizar este código en una publicación, debe cumplir con lo establecido en las Normas internas. Puede añadir este script a sus favoritos y usarlo en un gráfico.

Exención de responsabilidad

La información y las publicaciones que ofrecemos, no implican ni constituyen un asesoramiento financiero, ni de inversión, trading o cualquier otro tipo de consejo o recomendación emitida o respaldada por TradingView. Puede obtener información adicional en las Condiciones de uso.

¿Quiere utilizar este script en un gráfico?
////////////////////////////////////////////////////////////
//  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")