Crates.io | indexes-rs |
lib.rs | indexes-rs |
version | 1.1.0 |
created_at | 2025-02-07 15:05:52.61762+00 |
updated_at | 2025-08-19 07:30:13.635841+00 |
description | A comprehensive collection of technical analysis indicators including RSI, EMA, Bollinger Bands, and more. Designed for financial market analysis with a focus on accuracy and performance. |
homepage | |
repository | https://github.com/Flicker-Finance/indexes-rs |
max_upload_size | |
id | 1547040 |
size | 278,637 |
A Rust library providing a comprehensive collection of technical analysis indicators for financial market analysis(especially crypto market analysis).
Developed and maintained by Flicker
Currently supported technical indicators:
Add this to your Cargo.toml
:
[dependencies]
indexes-rs = "1.1.0"
Basic example:
use indexes_rs::v1::rsi::main::RSI;
fn main() {
let prices = vec![10.0, 12.0, 11.0, 13.0, 15.0, 14.0];
let rsi = RSI::new(14); // 14-period RSI
}
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.