Home | Trading Alchemy Manual | Alchemy Functions IndexAlchemyBullStrength (Function)AlchemyBullStrength function returns the market's bullish strength based on the Keltner Channel's upside running pattern. A Keltner Channel upside running pattern is defined as an upside penetration of the upper Keltner band by a minimum number of bars. AlchemyBullStrength (FirstBar, Price, Length, Factor, UpPrice, MinBars, Retest) Parameters |
FirstBar |
Specifies the bar number of the first bar calculated |
Price |
Specifies a numeric expression representing the price of a bar to be averaged (that is, Close, Open, Volume, and so on) |
Length |
Specifies the period of time (in bars) over which an average for the Mid Keltner will be taken |
Factor |
A multiplier applied to the current bar’s range. Factor will be positive for the upper band and negative for the lower band |
UpPrice | Specifies a numeric expression representing the price of a bar to penetrate the upper Keltner band (that is, Close, Open, Volume, and so on) |
MinBars | Specifies the minimum number of penetration bars required for an upside running pattern |
Retest | Specifies the minimum penetration amount of the upper Keltner band for a new upside running pattern to set up |
ReturnsThe function returns a value ranging from 0 (no upside strength) to minimum number of bars, determined in the MinBars input (maximum upside strength). UsageKeltner Channel is a channel that is based on a multiple of average true ranges above and below a moving average. KeltnerChannel is most commonly used with studies or strategies that measure or take advantage of market volatility. It is similar in concept to the BollingerBand function. The
AlchemyBullStrength
function
is
designed
to
assist
traders
with
identification
of
strong
up
trending
markets
and
then
identify
possible
entry
points
in
the
direction
of
the
up
trend.
It
can
provide
possible
entry
points
in
the
direction
of
any
strong
trending
market
in
any
time
frame. When a strong up trend is identified, the function will return a minimum number of bars value. A bullish trend is defined as price penetrating the upper band of the Keltner Channel. Once the trend is identified, possible entries into the direction of the up trend can be taken at the next pullback. The entry zone is defined as the mid-Keltner and lower Keltner Channel band in a bullish trend. The AlchemyBullStrength function is self-adaptive and responds to market volatility to adjust the potential entry points in real time. |