Module moexalgo.indices
Expand source code
from moexalgo.tickers import _Ticker
class Index(_Ticker):
""" Индекс
"""
_PATH = 'engines/stock/markets/index'
def get(name: str) -> Index:
return Index(name)
Functions
def get(name: str) ‑> Index
-
Expand source code
def get(name: str) -> Index: return Index(name)
Classes
class Index (secid: str, boardid: str = None)
-
Индекс
Expand source code
class Index(_Ticker): """ Индекс """ _PATH = 'engines/stock/markets/index'
Ancestors
- moexalgo.tickers._Ticker