orcast 0.2.0

OHLCV-driven options ticker screener (Rust). Fetch daily bars; rank tickers per strategy category.
Documentation
/// Returns a greeting for the input name
///
/// # Examples
///
/// ```
/// let result = orcast::greet("World");
/// assert_eq!(result, "Hello, World!");
/// ```
pub fn greet(name: &str) -> String {
    format!("Hello, {name}!")
}

pub mod config;
pub mod error;
pub mod http;
pub mod market_data;
pub mod screener;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_greet() {
        assert_eq!(greet("World"), "Hello, World!");
    }
}