fin_iex 0.1.1

The IEX provider for financial operations.
docs.rs failed to build fin_iex-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: fin_iex-0.1.2

Crate fin_iex

This is an implementation of a number of the request traits in the fin_model crate calling the IEX Cloud.

Modules

  • ::provider provides an implementation of the Provider trait, IEXProvider

Implemented Traits

  • fin_model::quote::FetchPriceQuote
  • fin_model::quote::FetchPriceRangeSeries
  • fin_model::analysis::Peers
  • fin_model::analysis::AnalystRecommendations

Example

use fin_iex::IEXProvider;

use fin_model::provider::Provider;

let provider = match IEXProvider::new() {
    Ok(provider) => provider,
    Err(err) => panic!("Error configuring provider, {:?}", err)
};

println!("Provider = [{}]({}).", provider.attribution(), provider.url());

Tools

The optional feature iex-tool builds a command-line tool that can exercise some of the APIs above.