No description
|
Daniel Mueller
e538f7488f
This change bumps the crate to version 0.25.0. The following notable changes have been made since 0.24.0: - Added gzip compression support for transparent API response compression controlled by default enabled gzip feature - Added support for subscribing to realtime trades - Reworked symbols related types in data::v2::stream module - Added class member to api::v2::order::Order type - Added symbols member to api::v2::orders::OrdersReq type - Added Deserialize implementation for more types - Updated ActivityType enum to be in sync with upstream variants - Made api::v2::position::Position exhaustive - Bumped uuid dependency to 1.0 |
||
|---|---|---|
| ci | Add gzip content decoding support | |
| examples | Bump uuid dependency to 1.0 | |
| src | Adjust stock split & spin off account activity strings | |
| Cargo.toml | Bump version to 0.25.0 | |
| CHANGELOG.md | Bump version to 0.25.0 | |
| LICENSE | Introduce error module | |
| README.md | Replace "trade update" terminology with "order update" | |
| rustfmt.toml | Add rustfmt.toml to the repository | |
pipeline coverage crates.io Docs rustc
apca
apca is a library for interacting with the Alpaca API at
alpaca.markets. The crate is entirely written in Rust and exposes a
fully async API based on the native async/await language feature.
The crate provides access to the majority of functionality provided by Alpaca, including, but not limited to:
- inquiring of account information
- changing of the account configuration
- retrieving of past account activity
- accessing the market clock
- submitting, changing, listing, and canceling orders
- listing and closing open positions
- listing and retrieving general asset information
- streaming of order updates over WebSocket
- historic market data retrieval through Alpaca's Data API
- real time market data streaming via Alpaca's websocket API
For convenient command-line based access to the API, please use
apcacli.
Usage
The following example illustrates how to create a Client object and
then submit a limit order for AAPL with a limit price of USD 100:
letapi_info=ApiInfo::from_env().unwrap();letclient=Client::new(api_info);letrequest=order::OrderReqInit{type_: Type::Limit,limit_price: Some(Num::from(100)),..Default::default()}.init("AAPL",Side::Buy,order::Amount::quantity(1));letorder=client.issue::<order::Post>(&request).await.unwrap();The returned order object can subsequently be inspected to find out
details about the order (such as its ID). The full example is available
here.
Please refer to the full documentation for more details.