QuandlTicker#
- class qf_lib.common.tickers.tickers.QuandlTicker(ticker: str, database_name: str, database_type: QuandlDBType = QuandlDBType.Timeseries, security_type: SecurityType = SecurityType.STOCK, point_value: int = 1, currency: str | None = None)[source]#
Bases:
TickerRepresentation of Quandl tickers.
- Parameters:
ticker (str) – string containing series ID within a specific database
database_name (str) – name of the database where the series is located
database_type (QuandlDBType) – type of the database
security_type (SecurityType) – denotes the type of the security, that the ticker is representing e.g. SecurityType.STOCK for a stock, SecurityType.FUTURE for a futures contract etc. By default equals SecurityType.STOCK.
point_value (int) – size of the contract as given by the ticker’s Data Provider. Used mostly by tickers of security_type FUTURE and by default equals 1.
currency (str) – ISO code of the currency of the ticker. Example “USD”.
- classmethod from_string(ticker_str: str | Sequence[str], db_type: QuandlDBType = QuandlDBType.Timeseries, security_type: SecurityType = SecurityType.STOCK, point_value: int = 1, currency: str | None = None) QuandlTicker | Sequence[QuandlTicker][source]#
Example: QuandlTicker.from_string(‘WIKI/MSFT’) Note: this method supports only the Timeseries tickers at the moment.