3个不稳定版本
0.2.1 | 2020年5月12日 |
---|---|
0.2.0 | 2020年5月12日 |
0.1.0 | 2020年4月27日 |
#297 in 财务
在 vapore 中使用
43KB
484 行
Alpaca Finance
与Alpaca交互的API。
- 账户信息
use alpaca_finance::{ Account, Alpaca };
#[tokio::main]
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)
}
- 下订单
use alpaca_finance::{ Account, Alpaca };
#[tokio::main]
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();
}
- 监听账户或订单变化
use alpaca_finance::{ Alpaca, Streamer, StreamMessage };
use futures::{ future, StreamExt };
#[tokio::main]
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
.for_each(|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;
}
用法
将其添加到您的 Cargo.toml
alpaca-finance = "0.2"
依赖关系
~11–24MB
~380K SLoC