コード例 #1
0
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()
コード例 #2
0
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()
コード例 #3
0
ファイル: __init__.py プロジェクト: mtpradoc/iexfinance
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()
コード例 #4
0
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()
コード例 #5
0
ファイル: __init__.py プロジェクト: mtpradoc/iexfinance
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()
コード例 #6
0
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()
コード例 #7
0
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()
コード例 #8
0
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()
コード例 #9
0
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()
コード例 #10
0
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()
コード例 #11
0
def get_market_losers(**kwargs):
    """
    Function for obtaining top 10 market losers from the
    Stocks list endpoint
    """
    return MoversReader(mover='losers', **kwargs).fetch()