Rust driver for MarketStore
rsmarketstore can query and [write TBD
] financial timeseries data from MarketStore
bash
cargo add rsmarketstore
```rust // Connect let agent = Agent::connect( Uri::from_static("http://localhost:5995").into()).await;
// Query agent .query(QueryParams { symbols: vec!["NIFTY 50".tostring()], timeframe: marketstore::MIN, attrgroup: "OHLCV".tostring(), ..Default::default() }) .await? ```
Source can be found in examples/ohlcv
```bash
cargo run --example ohlcv --features=serde ```