Sha256: a490fdc292449a995379120958bedd45a64258a6fda712008ef7d90bb3d700e6
Contents?: true
Size: 960 Bytes
Versions: 3
Compression:
Stored size: 960 Bytes
Contents
module IEX module Endpoints module RefData def ref_data_isin(isins, options = {}) response = get('ref-data/isin', { token: publishable_token, isin: Array(isins).join(',') }.merge(options)) if response.is_a?(Hash) # mapped option was set response.transform_values do |rows| rows&.map { |row| IEX::Resources::Symbol.new(row) } end else response.map { |row| IEX::Resources::Symbol.new(row) } end end def ref_data_symbols(options = {}) response = get('ref-data/symbols', { token: publishable_token }.merge(options)) response.map { |row| IEX::Resources::Symbols.new(row) } end def ref_data_symbols_for_exchange(exchange, options = {}) response = get("ref-data/exchange/#{exchange}/symbols", { token: publishable_token }.merge(options)) response.map { |row| IEX::Resources::Symbols.new(row) } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
iex-ruby-client-1.6.0 | lib/iex/endpoints/ref_data.rb |
iex-ruby-client-1.5.0 | lib/iex/endpoints/ref_data.rb |
iex-ruby-client-1.4.1 | lib/iex/endpoints/ref_data.rb |