Module: IEX::Endpoints::Price

Included in:
Api::Client
Defined in:
lib/iex/endpoints/price.rb

Instance Method Summary collapse

Instance Method Details

#price(symbol, options = {}) ⇒ Object



4
5
6
7
8
# File 'lib/iex/endpoints/price.rb', line 4

def price(symbol, options = {})
  get("stock/#{symbol}/price", options)
rescue Faraday::ResourceNotFound => e
  raise IEX::Errors::SymbolNotFoundError.new(symbol, e.response[:body])
end