TakeProfit's Cover image
TakeProfit
Jul 18, 2024
Green/Red Bar Count - usage example of indie.Var[T] image
Indicator
This update of  "Green/Red Bar Counts"  indicator showcases the latest feature in  Indie language 4.3 , the  indie.Var[T]  container. In this implementation: State Tracking : The  indie.Var[T]  container counts consecutive green (up) or red (down) bars w…
Green/Red Bar Count - usage example of indie.Var[T]
/indicator/green-red-bar-count-usage-example-of-indie-var-t-93
Sma-Ema Crossover - usage example of indie.Var[T] image
Indicator
With the recent update to  Indie language 4.3 , we've introduced the  indie.Var[T]  container. This new container type functions similarly to  indie.MutSeries[T] , but it has a single-value history depth, making it ideal for storing and updating the curr…
Sma-Ema Crossover - usage example of indie.Var[T]
/indicator/sma-ema-crossover-usage-example-of-indie-var-t-90
Custom VWAP - usage example of indie.Schedule class image
Indicator
We have recently released an update to Indie language 4.4 , which now includes new types for managing time periods: indie.schedule.ScheduleRule ,  indie.schedule.Schedule  and  indie.TradingSession . The "Custom VWAP" indicator demonstrates the usage o…
Custom VWAP - usage example of indie.Schedule class
/indicator/custom-vwap-usage-example-of-indie-schedule-class-23
Median Algorithm (written with Indie v4 classes) image
Indicator
This is an example of an Indie algorithm that uses class syntax, introduced in the language since  version 4 . We've just released a major update of our Indie language - Indie version 4 . This release is an important milestone on our way to provide draw…
Median Algorithm (written with Indie v4 classes)
/indicator/median-algorithm-written-with-indie-v4-classes-8
SMA algorithm that accepts 'series' length  image
Indicator
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 …
SMA algorithm that accepts 'series' length
/indicator/sma-algorithm-that-accepts-series-length-29