stock-trek 0.2.11

Stock Trek time-series analysis
Documentation
1
2
3
4
5
6
7
use crate::dto::raw_market::RawMarket;
use std::collections::HashMap;

#[derive(Debug)]
pub struct RawExchange {
    pub markets: HashMap<String, RawMarket>,
}