traquer
WIP - api is not stable.
Technical analysis library that gives you false hope that you can beat the market.
installation
- (optional) https://rustup.rs/
- (optional) cargo new
- cargo add traquer
quick start
use smooth;
contributing
encouraged.
- git clone git@github.com:chungg/traquer.git
- https://rustup.rs/
- cargo test
- cargo bench
types of indicators
- momentum - indicators where crossing a threshold (zero line) may signify opportunities.
- trend - indicators where the direction (uptrend/downtrend) may signify opportunities.
- volume - indicators that factor in how much an asset has been traded in a period of time.
- smooth - moving average functions. often used to track trend, levels of support, breakouts, etc... Is the same scale as input data.
TODO
- docs
- simplify reqs
- more algos
- handle div by zero scenarios
- pad results with nan to match len of inputs
- allow other numeric types rather than just f64