orcast 0.1.2

Lean Alpaca options trading client scaffolding (paper-first, Level 3-ready)
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::error::{OrcastError, Result};

pub async fn subscribe_trade_updates() -> Result<()> {
    Err(OrcastError::NotImplemented("trading updates websocket"))
}

pub async fn subscribe_option_quotes() -> Result<()> {
    Err(OrcastError::NotImplemented("option data websocket (msgpack)"))
}