文件名称:ta-技术分析库。 实施指标数量:EMA,SMA,RSI,MACD,随机指标等-Rust开发
文件大小:45KB
文件格式:ZIP
更新时间:2024-06-16 12:26:06
Rust Science
Rust的技术分析(ta)Rust的技术分析库。 入门基本思想指标列表运行基准测试许可证Contri Rust的技术分析(ta)Rust的技术分析库。 入门基本思想指标列表运行基准测试许可证提供者入门添加到您的Cargo.toml:[dependencies] ta =“ 0.1.5”示例:使用ta :: indicators :: ExponentialMovingAverage; 使用ta :: Next; //如果传递了无效的长度(例如0),则可能返回错误,请让mut ema = ExponentialMovingAverage :: new(3).unwrap(); assert_eq!(ema.next(2.0),2.0); assert_eq!(ema.next(5.0),3.5); 资产
【文件预览】:
ta-rs-master
----Cargo.toml(1021B)
----src()
--------data_item.rs(5KB)
--------errors.rs(841B)
--------traits.rs(1KB)
--------lib.rs(3KB)
--------helpers.rs(335B)
--------indicators()
--------test_helper.rs(2KB)
----examples()
--------data()
--------ema.rs(686B)
--------ema_serde.rs(548B)
----.travis.yml(300B)
----LICENSE(1KB)
----README.md(3KB)
----tests()
--------test.rs(652B)
----.gitignore(38B)
----CHANGELOG.md(2KB)
----benches()
--------indicators.rs(2KB)