Search & Filter

Rate-Limited Methods

OpenFIGI.Search.instrument_searchMethod
instrument_search(tasks, results, query, properties...)

Spawn a instrument_search task that processes query in batches and populates results

Arguments

  • tasks::Channel{Task}: a rate-limited channel for scheduling API requests (see OpenFIGI.search_channel())
  • results::Channel{Instrument}: the search results in order of return
  • query::String: search keywords
  • properties::AbstractProperty...: optional properties for limiting results

The task returned from this method is bound to results.

source
OpenFIGI.Filter.instrument_filterMethod
instrument_filter(tasks, results, properties...; [query])

Spawn a instrument_search task that processes query in batches and populates results

Arguments

  • tasks::Channel{Task}: a rate-limited channel for scheduling API requests (see OpenFIGI.search_channel())
  • results::Channel{Instrument}: the search results in order of return
  • properties::AbstractProperty...: optional properties for limiting results
  • query::String: optional filter keywords

The task returned from this method is bound to results.

source

Direct Methods