module IEX::Endpoints::Ohlc

Public Instance Methods

market(options = {}) click to toggle source
# File lib/iex/endpoints/ohlc.rb, line 10
def market(options = {})
  Hash[get('stock/market/ohlc', { token: publishable_token }.merge(options)).map do |k, v|
    [k, IEX::Resources::OHLC.new(v)]
  end]
end
ohlc(symbol, options = {}) click to toggle source
# File lib/iex/endpoints/ohlc.rb, line 4
def ohlc(symbol, options = {})
  IEX::Resources::OHLC.new(get("stock/#{symbol}/ohlc", { token: publishable_token }.merge(options)))
rescue Faraday::ResourceNotFound => e
  raise IEX::Errors::SymbolNotFoundError.new(symbol, e.response[:body])
end