ALPHA_VANTAGE
Project status & info:
| Travis Build Status | Dependency Status | Code Coverage | License | Crates Version | Docs |
|---|---|---|---|---|---|
Rust & OS support:
| Stable | Beta | Nightly | Linux | OSX | Windows |
|---|---|---|---|---|---|
Rust Client library built for accessing Alphavantage API.
Project Functionality
- StockTimeSeries
- Quote Endpoint
- Search Endpoint
- Exchange Rate
- Forex
- Crypto Currency
- Technical Indicators
- Sector Performances
Add as dependencies
Edit Cargo.toml file to add alpha_vantage as dependencies
[]
= "0.4.0"
OR For bleeding edge development use
[]
= { = "https://github.com/iamsauravsharma/alpha_vantage"}
Usage
Sample code to find out exchange rate between two currency(both physical & digital supported)
let api_key = set_api;
let exchange = api_key.exchange.unwrap;
let rate = exchange.rate;
println!;