orcast 0.2.0

OHLCV-driven options ticker screener (Rust). Fetch daily bars; rank tickers per strategy category.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use thiserror::Error;

#[derive(Debug, Error)]
pub enum OrcastError {
    #[error("configuration error: {0}")]
    Config(String),
    #[error("http client error: {0}")]
    Http(#[from] reqwest::Error),
    #[error("not implemented: {0}")]
    NotImplemented(&'static str),
}

pub type Result<T> = std::result::Result<T, OrcastError>;