stock-trek 0.6.0

Stock Trek time-series analysis
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::execute::{executor::Executor, stub_executor::StubExecutor};

pub struct ExecutorFactory;

impl ExecutorFactory {
    pub fn stub() -> Executor {
        StubExecutor.into()
    }
    // TODO simulated, mocked, delayed, failing
}