Green/Red Bar Counts - usage example of indie.MutSeries[T] generic classimage
Green/Red Bar Counts - usage example of indie.MutSeries[T] generic class
We recently released an update to  Indie language 4.1 , which now includes generic series types: indie.Series[T] and indie.MutSeries[T] . The old types indie.SeriesF and indie.MutSeriesF are still available as aliases for indie.Series[float] and
We recently released an update to  Indie language 4.1 , which now includes generic series types: indie.Series[T] and indie.MutSeries[T] . The old types indie.SeriesF and indie.MutSeriesF are still available as aliases for indie.Series[float] and
/indicator/green-red-bar-counts-usage-example-of-indie-mutseries-t-generic-class-94
Support and Resistanceimage
Support and Resistance
Description: The indicator displays Support and Resistance based on High & Low Pivot Points. It is also possible to display Support and Resistance zones, where Support Zone is defined by Support and Candle Bottom and Resistance Zone is defined by Resista…
Description: The indicator displays Support and Resistance based on High & Low Pivot Points. It is also possible to display Support and Resistance zones, where Support Zone is defined by Support and Candle Bottom and Resistance Zone is defined by Resista…
/indicator/support-and-resistance-40
Pivot Points High Lowimage
Pivot Points High Low
Displays the Pivot Points (Pivothigh and Pivotlow). The script has separate parameters for lookback (Left Bars) and lookforward (Right Bars). It also plots a "ZigZag" connecting every pivot point on the chart (though, due to the current limitations of In…
Displays the Pivot Points (Pivothigh and Pivotlow). The script has separate parameters for lookback (Left Bars) and lookforward (Right Bars). It also plots a "ZigZag" connecting every pivot point on the chart (though, due to the current limitations of In…
/indicator/pivot-points-high-low-65
MACD with various MA typesimage
MACD with various MA types
Standard MACD indicator but with various types of Moving Averages, including: SMA, EMA, RMA, VWMA, WMA and HMA
Standard MACD indicator but with various types of Moving Averages, including: SMA, EMA, RMA, VWMA, WMA and HMA
/indicator/macd-with-various-ma-types-64
Keltner Channel with EMA Indicatorimage
Keltner Channel with EMA Indicator
The Keltner Channel with EMA Indicator is a versatile tool that combines the trend-following power of the Exponential Moving Average (EMA) with the volatility measurement of the Average True Range (ATR). This advanced indicator helps traders identify m…
The Keltner Channel with EMA Indicator is a versatile tool that combines the trend-following power of the Exponential Moving Average (EMA) with the volatility measurement of the Average True Range (ATR). This advanced indicator helps traders identify m…
/indicator/keltner-channel-with-ema-indicator-0
SMA algorithm that accepts 'series' length image
SMA algorithm that accepts 'series' length
Indie’s standard  indie.algorithms.Sma  algorithm has a  length  parameter which cannot be dynamically changed. Its common usage looks like this:  Sma.new(self.close, length=12) , where the  length  parameter is typically a literal constant. While it is …
Indie’s standard  indie.algorithms.Sma  algorithm has a  length  parameter which cannot be dynamically changed. Its common usage looks like this:  Sma.new(self.close, length=12) , where the  length  parameter is typically a literal constant. While it is …
/indicator/sma-algorithm-that-accepts-series-length-29