ALPHA_VANTAGE
Project status & info:
| License | Crates Version | Docs |
|---|---|---|
Rust Client library built for accessing Alphavantage API.
Project Functionality
- Crypto Currency
- Custom function and parameters
- Earning
- Economic Indicator
- Exchange Rate
- Forex
- Quote Endpoint
- Search Endpoint
- Stock Time Series
- Technical Indicators
Add as dependencies
Edit Cargo.toml file to add alpha_vantage as dependencies
[]
= "0.11.0"
OR For bleeding edge development use
[]
= { = "https://github.com/iamsauravsharma/alpha_vantage"}
Usage
Sample code to find exchange rate between two currency(both physical & digital supported)
let api_key = set_api;
let exchange = api_key.exchange.json.await.unwrap;
let rate = exchange.rate;
println!;
See docs for detailed example of other functionality