tradingview-rs 0.2.0

Tradingview datafeed api `tradingview-rs` project.
Documentation
1
2
3
4
5
6
7
8
9
//! Generic market event types.
//!
//! This module defines [`MarketEvent`](crate::events::MarketEvent), a non-exhaustive enum that represents
//! any kind of market data that the loader can produce. New event variants can
//! be added without breaking existing consumers.

pub mod models;

pub use models::*;