chapaty 0.1.4

A software to backtest trading strategies.
Documentation
1
2
3
4
5
6
7
8
use crate::{chapaty, enums::indicator::TradingIndicatorKind};
use std::collections::HashMap;

#[derive(Debug, Clone, Default)]
pub struct ExecutionData {
    pub market_sim_data: chapaty::types::DataFrameMap,
    pub trading_indicators: HashMap<TradingIndicatorKind, chapaty::types::DataFrameMap>,
}