Skip to content

vinter_abc.py

vinter_abc

VinterAPIABC

VinterAPIABC(api_key: str, asset_type: str)

Bases: ABC

Parameters:

  • api_key (str) –

    Your API key.

  • asset_type (AssetType(str)) –

    The type of asset you want to get data for. The acceptable asset types listed in the AssetType enum.

Source code in vintersdk/vinter_abc.py
@abstractmethod
def __init__(self, api_key: str, asset_type: str):  # pragma: no cover
    """This function takes in an api_key and asset_type and sets them as attributes of the class

    Parameters
    ----------
    api_key : str
        Your API key.
    asset_type : AssetType (str)
        The type of asset you want to get data for.
        The acceptable asset types listed in the AssetType enum.
    """
    pass

get_active_data abstractmethod

get_active_data(symbol: str) -> dict

This function returns the data for the active asset

Parameters:

  • symbol (str) –

    The symbol of the asset you want to get data for.

Returns:

  • A dictionary of the data for the active asset
Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_active_data(self, symbol: str) -> dict:  # pragma: no cover
    """This function returns the data for the active asset

    Parameters
    ----------
    symbol : str
        The symbol of the asset you want to get data for.

    Returns
    -------
        A dictionary of the data for the active asset

    """
    pass

get_all_active_data abstractmethod

get_all_active_data(
    frequency: str = None, symbol_only: bool = False
) -> Union[list, dict]

This function returns a list of all the active symbols for the asset type

Parameters:

  • frequency (Frequency(str), default: None ) –

    The frequency of the asset you want to get data for., by default None

  • symbol_only (bool, default: False ) –

    If True, it returns a list of symbols only, by default False

Returns:

  • Union[list, dict]

    A list of data for the active symbols for the asset type

Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_all_active_data(
    self, frequency: str = None, symbol_only: bool = False
) -> Union[list, dict]:  # pragma: no cover
    """
    This function returns a list of all the active symbols for the asset type

    Parameters
    ----------
    frequency : Frequency (str), optional
        The frequency of the asset you want to get data for., by default None
    symbol_only : bool, optional
        If True, it returns a list of symbols only, by default False

    Returns
    -------
    Union[list, dict]
        A list of data for the active symbols for the asset type
    """
    pass

get_data_by_date abstractmethod

get_data_by_date(
    symbol: str, date: Union[str, list]
) -> dict

This function takes in a symbol and a date and returns a dictionary of the data for that date

This function is only for daily data.

Parameters:

  • symbol (str) –

    The symbol of the asset you want to get data for.

  • date (str | list) –

    The date of the data you want to get. format: YYYY-MM-DD

Returns:

  • A dictionary of the data
Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_data_by_date(
    self, symbol: str, date: Union[str, list]
) -> dict:  # pragma: no cover
    """This function takes in a symbol and a date and returns a dictionary of the data for that date

    This function is only for daily data.

    Parameters
    ----------
    symbol : str
        The symbol of the asset you want to get data for.
    date : str | list
        The date of the data you want to get. format: YYYY-MM-DD

    Returns
    -------
        A dictionary of the data

    """
    pass

get_data_by_range abstractmethod

get_data_by_range(
    symbol: str,
    start: str,
    end: str = None,
    limit: int = 1000,
) -> dict

This function takes in a symbol and a start and end date and returns a dictionary of the data for that period

Parameters:

  • symbol (str) –

    The symbol of the asset you want to get data for.

  • start (str) –

    The start datatime . format: YYYY-MM-DDTHH:MM:SSZ or YYYY-MM-DDTHH:MM:SS.sssZ

  • end (str, default: None ) –

    The end datatime. format: YYYY-MM-DDTHH:MM:SSZ or YYYY-MM-DDTHH:MM:SS.sssZ

Returns:

  • A dictionary of the data
Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_data_by_range(
    self, symbol: str, start: str, end: str = None, limit: int = 1000
) -> dict:  # pragma: no cover
    """This function takes in a symbol and a start and end date and returns a dictionary of the data
    for that period

    Parameters
    ----------
    symbol : str
        The symbol of the asset you want to get data for.
    start : str
        The start datatime . format: YYYY-MM-DDTHH:MM:SSZ or YYYY-MM-DDTHH:MM:SS.sssZ
    end : str
        The end datatime. format: YYYY-MM-DDTHH:MM:SSZ or YYYY-MM-DDTHH:MM:SS.sssZ

    Returns
    -------
        A dictionary of the data

    """
    pass

get_latest_data abstractmethod

get_latest_data(symbol: str, limit: int = 1) -> dict

It takes a symbol and a limit as parameters, and returns a dictionary of the latest data for that symbol

Parameters:

  • symbol (str) –

    The symbol of the asset you want to get data for.

  • limit (int, default: 1 ) –

    The number of data points to return.

Returns:

  • A dictionary of the latest data for the symbol and limit.
Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_latest_data(
    self, symbol: str, limit: int = 1
) -> dict:  # pragma: no cover
    """It takes a symbol and a limit as parameters, and returns a dictionary of the latest data for
    that symbol

    Parameters
    ----------
    symbol : str
        The symbol of the asset you want to get data for.
    limit : int
        The number of data points to return.

    Returns
    -------
        A dictionary of the latest data for the symbol and limit.

    """
    pass

get_latest_value abstractmethod

get_latest_value(symbol: str) -> float

This function takes in a symbol and returns the latest value for that symbol

Parameters:

  • symbol (str) –

    The symbol of the asset you want to get data for.

Returns:

  • The latest value for the symbol
Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_latest_value(self, symbol: str) -> float:  # pragma: no cover
    """This function takes in a symbol and returns the latest value for that symbol

    Parameters
    ----------
    symbol : str
        The symbol of the asset you want to get data for.

    Returns
    -------
        The latest value for the symbol

    """
    pass

get_multi_current_rebalance_weight abstractmethod

get_multi_current_rebalance_weight(symbol: str) -> dict

This function returns the current rebalance weight of multi_assets symbol

Returns:

  • Weight of the current rebalance of the multi_assets symbol

    OR

    ValueError if the symbol is not a present in the list of active symbols for asset_type multi_assets

Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_multi_current_rebalance_weight(
    self, symbol: str
) -> dict:  # pragma: no cover
    """This function returns the current rebalance weight of multi_assets symbol

    Returns
    -------
        Weight of the current rebalance of the multi_assets symbol

        OR

        ValueError if the symbol is not a present in the
        list of active symbols for asset_type multi_assets

    """
    pass

get_multi_next_rebalance_date abstractmethod

get_multi_next_rebalance_date(
    symbol: str,
) -> Union[str, None]

This function returns the next rebalance date of multi_assets symbol

Returns:

  • Date of the next rebalance of the multi_assets symbol

    OR

    ValueError if the symbol is not a present in the list of active symbols for asset_type multi_assets

    OR

    None if the symbol Rebalance is not scheduled

Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_multi_next_rebalance_date(
    self, symbol: str
) -> Union[str, None]:  # pragma: no cover
    """This function returns the next rebalance date of multi_assets symbol

    Returns
    -------
        Date of the next rebalance of the multi_assets symbol

        OR

        ValueError if the symbol is not a present in the
        list of active symbols for asset_type multi_assets

        OR

        None if the symbol Rebalance is not scheduled

    """
    pass

get_multi_next_rebalance_weight abstractmethod

get_multi_next_rebalance_weight(
    symbol: str,
) -> Union[str, None]

This function returns the next rebalance weight of multi_assets symbol

Returns:

  • Weight of the next rebalance of the multi_assets symbol

    OR

    ValueError if the symbol is not a present in the list of active symbols for asset_type multi_assets

    OR

    None if the symbol Rebalance is not present in the payload

Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_multi_next_rebalance_weight(
    self, symbol: str
) -> Union[str, None]:  # pragma: no cover
    """This function returns the next rebalance weight of multi_assets symbol

    Returns
    -------
        Weight of the next rebalance of the multi_assets symbol

        OR

        ValueError if the symbol is not a present in the
        list of active symbols for asset_type multi_assets

        OR

        None if the symbol Rebalance is not present in the payload

    """
    pass

get_multi_next_review_date abstractmethod

get_multi_next_review_date(symbol: str) -> Union[str, None]

This function returns the next review date of multi_assets symbol

Returns:

  • Date of the next review of the multi_assets symbol

    OR

    ValueError if the symbol is not a present in the list of active symbols for asset_type multi_assets

    OR

    None if the symbol Review is not scheduled

Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_multi_next_review_date(
    self, symbol: str
) -> Union[str, None]:  # pragma: no cover
    """This function returns the next review date of multi_assets symbol

    Returns
    -------
        Date of the next review of the multi_assets symbol

        OR

        ValueError if the symbol is not a present in the
        list of active symbols for asset_type multi_assets

        OR

        None if the symbol Review is not scheduled

    """
    pass

get_multi_previous_rebalance_date abstractmethod

get_multi_previous_rebalance_date(
    symbol: str,
) -> Union[str, None]

This function returns the previous rebalance date of multi_assets symbol

Returns:

  • Date of the previous rebalance of the multi_assets symbol

    OR

    ValueError if the symbol is not a present in the list of active symbols for asset_type multi_assets

    OR

    None if the symbol Rebalance is not scheduled

Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_multi_previous_rebalance_date(
    self, symbol: str
) -> Union[str, None]:  # pragma: no cover
    """This function returns the previous rebalance date of multi_assets symbol

    Returns
    -------
        Date of the previous rebalance of the multi_assets symbol

        OR

        ValueError if the symbol is not a present in the
        list of active symbols for asset_type multi_assets

        OR

        None if the symbol Rebalance is not scheduled

    """
    pass

get_multi_previous_review_date abstractmethod

get_multi_previous_review_date(
    symbol: str,
) -> Union[str, None]

This function returns the previous review date of multi_assets symbol

Returns:

  • Date of the previous review of the multi_assets symbol

    OR

    ValueError if the symbol is not a present in the list of active symbols for asset_type multi_assets

    OR

    None if the symbol Review is not scheduled

Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_multi_previous_review_date(
    self, symbol: str
) -> Union[str, None]:  # pragma: no cover
    """This function returns the previous review date of multi_assets symbol

    Returns
    -------
        Date of the previous review of the multi_assets symbol

        OR

        ValueError if the symbol is not a present in the
        list of active symbols for asset_type multi_assets

        OR

        None if the symbol Review is not scheduled

    """
    pass

get_single_contributions abstractmethod

get_single_contributions(symbol: str) -> dict

This function returns the contributions of the single_assets symbol

Returns:

  • A dictionary of the contributions of the single_assets symbol

    OR

    ValueError if the symbol is not a present in the list of active symbols for asset_type single_assets

Source code in vintersdk/vinter_abc.py
@abstractmethod
def get_single_contributions(
    self, symbol: str
) -> dict:  # pragma: no cover
    """This function returns the contributions of the single_assets symbol

    Returns
    -------
        A dictionary of the contributions of the single_assets symbol

        OR

        ValueError if the symbol is not a present in the
        list of active symbols for asset_type single_assets

    """
    pass