Creating Custom Indicators
unfortunately, we didn't write this article yet.
Here are some quick hints:
- an indicator is an extension method, typically running on TimeSeries< double>.
- if your indicator is a simple combination of existing indicators, have a look at the implementation of DEMA
- if your indicator does not need to buffer its results, have a look at the implementation of Add
- if your indicator needs to buffer its results, have a look at the implementation of EMA