def get_market_most_active(**kwargs): """Market Most Active Function for obtaining top 10 most active symbols from the Stocks list endpoint Reference: https://iexcloud.io/docs/api/#list Data Weighting: Weight of ``/stock/quote`` for each quote returned in the list """ return MoversReader(mover="mostactive", **kwargs).fetch()
def get_market_iex_percent(**kwargs): """Market IEX Percent Function for obtaining the 10 symbols with the highest percent change on the IEX exchange from the Stocks list endpoint Reference: https://iexcloud.io/docs/api/#list Data Weighting: Weight of ``/stock/quote`` for each quote returned in the list """ return MoversReader(mover="iexpercent", **kwargs).fetch()
def get_market_in_focus(**kwargs): """Market in Focus Function for obtaining top 10 in focus symbols from the Stocks list endpoint Reference: https://iexcloud.io/docs/api/#list Data Weighting: Weight of ``/stock/quote`` for each quote returned in the list """ return MoversReader(mover='infocus', **kwargs).fetch()
def get_market_losers(**kwargs): """Market Losers Function for obtaining top 10 market losers from the Stocks list endpoint Reference: https://iexcloud.io/docs/api/#list Data Weighting: Weight of ``/stock/quote`` for each quote returned in the list """ return MoversReader(mover="losers", **kwargs).fetch()
def get_market_iex_volume(**kwargs): """Market IEX Volume Function for obtaining the 10 symbols with the highest IEX volume from the Stocks list endpoint Reference: https://iexcloud.io/docs/api/#list Data Weighting: Weight of ``/stock/quote`` for each quote returned in the list """ return MoversReader(mover='iexvolume', **kwargs).fetch()
def get_market_gainers(**kwargs): """ Top-level function for obtaining top 10 market gainers from the Stocks list endpoint """ return MoversReader(mover='gainers', **kwargs).fetch()
def get_market_in_focus(**kwargs): """ Top-level function for obtaining top 10 in focus symbols from the Stocks list endpoint """ return MoversReader(mover='infocus', **kwargs).fetch()
def get_market_iex_percent(**kwargs): """ Top-level function for obtaining the 10 symbols with the highest percent change on the IEX exchange from the Stocks list endpoint """ return MoversReader(mover='iexpercent', **kwargs).fetch()
def get_market_iex_volume(**kwargs): """ Top-level function for obtaining the 10 symbols with the highest IEX volume from the Stocks list endpoint """ return MoversReader(mover='iexvolume', **kwargs).fetch()
def get_market_most_active(**kwargs): """ Top-level function for obtaining top 10 most active symbols from the Stocks list endpoint """ return MoversReader(mover='mostactive', **kwargs).fetch()
def get_market_losers(**kwargs): """ Function for obtaining top 10 market losers from the Stocks list endpoint """ return MoversReader(mover='losers', **kwargs).fetch()