alpaca-trader-rs 0.6.0

Alpaca Markets trading toolkit — async REST client library and interactive TUI trading terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Alpaca Markets trading library.
//!
//! Provides an async REST client, real-time WebSocket stream abstractions, and
//! all supporting domain types for building Alpaca trading applications in Rust.

#![deny(missing_docs)]

pub mod client;
pub mod clipboard;
pub mod commands;
pub mod config;
pub mod events;
pub mod logging;
pub mod prefs;
pub mod stream;
pub mod types;