ALPHA_VANTAGE
Status:
| Travis Build Status | Dependency Status | Code Coverage |
|---|---|---|
Project Info:
| License | LoC | Crates Version |
|---|---|---|
Rust version support:
| Stable | Beta | Nightly |
|---|---|---|
OS support:
| Linux | OSX | Windows |
|---|---|---|
WARNING : may contain bug which may cause undesired functionality
Rust Wrapper/Client built for Alphavantage API. Project is completed and core functionality is already implemented out totally and project is in usable state. Better documentation and optimization are remaining before publishing to crates.io
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
[dependencies]
alpha_vantage = 0.2.0
OR For bleeding edge development use
[dependencies]
alpha_vantage = {git = "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;
let rate = exchange.rate.unwrap;
println!;