An open API service indexing awesome lists of open source software.

https://github.com/benyblack/talib

Technical analysis library
https://github.com/benyblack/talib

elixir indicators technical-analysis

Last synced: 3 months ago
JSON representation

Technical analysis library

Awesome Lists containing this project

README

          

# TAlib

Technical analysis library.

## Indicator list
- [x] Moving Average (SMA, EMA, CMA, and WMA)
- [x] RSI
- [x] MACD
- [x] Stochastic oscillator
- [ ] ...

(The list to be completed)]

Examples can be found in documents and in test modules.

## Installation

The package can be installed
by adding `talib` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:talib, "~> 0.3.6"}
]
end
```