An API for interacting with Alpaca.
```rust use alpaca_finance::{ Account, Alpaca };
async fn main() { // Get a connection to the live API let alpaca = Alpaca::live("My KEY ID", "My Secret Key").await.unwrap(); let account = Account::get(&alpaca).await.unwrap();
println!("I have ${:.2} in my account.", account.cash) } ```
```rust use alpaca_finance::{ Account, Alpaca };
async fn main() { // Get a connection to the live API let alpaca = Alpaca::paper("My KEY ID", "My Secret Key").await.unwrap(); let order = Order::buy("AAPL", 100, OrderType::Limit, TimeInForce::DAY) .limit_price(100.0) .place(sandbox).await.unwrap(); } ```
```rust use alpaca_finance::{ Alpaca, Streamer, StreamMessage }; use futures::{ future, StreamExt };
async fn main() { // Get a connection to the live API let alpaca = Alpaca::paper("My KEY ID", "My Secret Key").await.unwrap();
let streamer = Streamer:new(&alpaca); streamer.start().await .foreach(|msg| { match msg { StreamMessage::Account() => println!("Got an account update!"), StreamMessage::Order(_) => println!("Got an order update!"), _ => println!("Got an unexpected msg") } future::ready(()) }) .await; } ```
Add this to your Cargo.toml
:
toml
alpaca-finance = "0.2"