vitvlkv's Cover image
Green/Red Bar Counts - usage example of indie.MutSeries[T] generic classimage
Green/Red Bar Counts - usage example of indie.MutSeries[T] generic class
A few days ago the we have released an update to Indie language 4.1 , so now it has a generic series types: indie.Series[T] and indie.MutSeries[T] . Old types indie.SeriesF and indie.MutSeriesF are still there, they are nothing but aliases for i…
A few days ago the we have released an update to Indie language 4.1 , so now it has a generic series types: indie.Series[T] and indie.MutSeries[T] . Old types indie.SeriesF and indie.MutSeriesF are still there, they are nothing but aliases for i…
/indicator/green-red-bar-counts-usage-example-of-indie-mutseries-t-generic-class-93
Median algorithm (written with Indie v4 classes)image
Median algorithm (written with Indie v4 classes)
This is an example of an Indie algorithm that uses class syntax, introduced in the language since version 4 . The Median class of this indicator inherits from the indie.Algorithm base class. It has two methods: the __init__ constructor and calc .…
This is an example of an Indie algorithm that uses class syntax, introduced in the language since version 4 . The Median class of this indicator inherits from the indie.Algorithm base class. It has two methods: the __init__ constructor and calc .…
/indicator/median-algorithm-written-with-indie-v4-classes-19
The Most Awesome Oscillatorimage
The Most Awesome Oscillator
Test. I am trying to publish two different products in MarketPlace with exactly the same indicator uid (from tpi-repo). This is the first of the two products.
Test. I am trying to publish two different products in MarketPlace with exactly the same indicator uid (from tpi-repo). This is the first of the two products.
/indicator/the-most-awesome-oscillator-83
SMA algorithm that accepts 'series' lengthimage
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-86