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
- Host: GitHub
- URL: https://github.com/benyblack/talib
- Owner: benyblack
- Created: 2019-03-27T09:44:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-15T09:56:37.000Z (over 6 years ago)
- Last Synced: 2025-10-21T18:54:31.221Z (3 months ago)
- Topics: elixir, indicators, technical-analysis
- Language: Elixir
- Homepage:
- Size: 48.8 KB
- Stars: 16
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```