tdx_dump_core 0.1.0

A Rust library for parsing TDX files
Documentation

Core library for dumping TDX .day files, with optional feature to calculate dif, dea, macd and so on.

Usage

Default is raw data only

let path = "/path/to/tdx/xxx.day";
let daily = DayLine::new(path);

With "macd" feature, you can calculate dif, dea, macd. with default parameters.

tdx_dump_core = { version = "0.1", features = ["macd"] }

let path = "/path/to/tdx/xxx.day";
let daily = DayLine::new(path).with_macd();