yahoo_finanza v0.3.0 YahooFinanza.QuoteFetcher View Source

The YahooFinanza QuoteFetcher Module fetches a single quote given a stock symbol from the Yahoo Finance API.

Methods

get/1

Link to this section Summary

Functions

The get/1 method accepts a list of strings containing stock symbols and returns the quotes for the given symbols from the Yahoo Finance API

Link to this section Functions

The get/1 method accepts a list of strings containing stock symbols and returns the quotes for the given symbols from the Yahoo Finance API

Example

iex> YahooFinanza.QuoteFetcher.get ["AAPL"]

{:ok, [%{"Symbol" => "AAPL", "Ask" => "119.5", ...}]}