#indicator #technical-analysis #macd #kdj

financial_indicators

A library providing various financial algorithms including but not limited to the following - KDJ — MACD

2 releases

0.1.1 Sep 5, 2024
0.1.0 Jul 26, 2024

#79 in Finance

Download history 114/week @ 2024-07-24 8/week @ 2024-07-31 159/week @ 2024-09-04

159 downloads per month

MIT license

13KB
164 lines

Financial Indicators Last Commit

Crates.io Documentation

A Rust library providing various financial algorithms, including but not limited to KDJ and MACD indicators, for technical analysis.

Features

  • Easy integration with existing projects
  • Well-documented and tested

Indicators:

  • KDJ
  • MACD

Installation

Add financial_indicators to your Cargo.toml:

cargo add financial_indicators

Or manual add to cargo.toml

[dependencies]
financial_indicators = "0.1.0"

Usage

Here's an example of how to use the library to calculate KDJ indicators:

use financial_indicators::kdj::{calculate_kdj, OHLC};

fn main() {
    let prices = vec![
        OHLC {
            close: 10.0,
            high: 12.0,
            low: 8.0,
        },
        OHLC {
            close: 11.0,
            high: 13.0,
            low: 9.0,
        },
        OHLC {
            close: 12.0,
            high: 14.0,
            low: 10.0,
        },
        OHLC {
            close: 11.5,
            high: 13.5,
            low: 10.5,
        },
        OHLC {
            close: 13.0,
            high: 15.0,
            low: 11.0,
        },
    ];

    let (k_values, d_values, j_values) = calculate_kdj(&prices, 3);
    println!("K values: {:?}", k_values);
    println!("D values: {:?}", d_values);
    println!("J values: {:?}", j_values);
}

Examples

examples

Indicators Docs

indicator anatomy

Contributing

We welcome contributions!👏

License

This project is licensed under the MIT License - see the LICENSE file for details.

No runtime deps