Available translations

HL Pivot Points

foundations.png
Summary: The HL Pivots indicator analyses highs and lows of the past 14 candles and produces the current high and low in that period. It also keeps track of the previous high and low which can be used to predict a potential support or resistance level.
HL Pivots on the Charts
The indicator analyses high and low pivots through the past 14 periods and keeps track of the value until a new pivot is found.
The length of the pivot finder, as well as the pivot length can be changed by locating and opening the Javascript Code under Data Building Procedure -> Procedure Loop under ’HL Pivot Points’ Procedure Loop.
Products & Properties
The following properties are available to access:
Product Name Product Variable Properties
HL-Pivot-Points HLpivot candleHighVal, candleLowVal, candleHighValPrev, candleLowValPrev
Examples:
A basic strategy could use the previous period's high to enter a trade if that high ie expected to become a support:
 chart.at01hs.candle.close > chart.at01hs.HLpivot.candleHighValPrev
The indicator could also be used as a stop loss value when using the previous low value as a resistance:
 chart.at01hs.HLpivot.candleLowValPrev
Maintainer:
Previous
Pivots by @quantum8
Next
Daily Pivot Points