README.md
# TAlib
Technical analysis library.
## Indicator list
- [x] Moving Average (SMA, EMA, CMA, and WMA)
- [x] RSI
- [x] MACD
- [ ] 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.0"}
]
end
```