docs.rs failed to build marketstore-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
marketstore-0.1.1
rsmarketstore
Rust driver for MarketStore
rsmarketstore can query and [write TBD
] financial timeseries data from MarketStore
How to install
Examples
// Connect
let agent = connect.await;
// Query
agent
.query
.await?
// timeframes
let FiveMins = 5 * MIN;
let FifteenMin = 15 * MIN;
let TwoHours = 2 * HOUR;
// stream
let =
.await
.unwrap;
stream.subscribe.await?;
receiver
.for_each
.await;
Serde with Protobuf
Source can be found in examples/ohlcv
# Run
Stream
Source can be found in examples/stream
# Run