Trait HistoryData

Source
pub trait HistoryData {
    // Required method
    fn history_daily<'life0, 'life1, 'async_trait>(
        self,
        market: &'life0 str,
        symbol: &'life1 str,
        start: NaiveDate,
        end: NaiveDate,
    ) -> Pin<Box<dyn Future<Output = Result<DataResult<DataFrame>, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

历史行情

Required Methods§

Source

fn history_daily<'life0, 'life1, 'async_trait>( self, market: &'life0 str, symbol: &'life1 str, start: NaiveDate, end: NaiveDate, ) -> Pin<Box<dyn Future<Output = Result<DataResult<DataFrame>, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

日行情

Implementors§