tickerGenerator

Summary

Classes:

TickerGenerator

Functions:

get_currencies_from_index

get_ticker_from_isin

get_tickers_from_index

Reference

class TickerGenerator(indices=str | list[str])[source]

Bases: object

generate_currencies() list[tuple[str, str]][source]
generate_tickers() list[str][source]
generate_tickers_single_index(
index: str,
) list[str][source]
get_euro_stoxx_600_tickers() list[str][source]
get_nasdaq_100_tickers() list[str][source]
get_russell_2000_tickers() list[str][source]
get_sp500_tickers() list[str][source]
euro_stoxx_600_file = PosixPath('/home/runner/work/stockMarket/stockMarket/stockMarket/../data/euro_stoxx600.csv')
euro_stoxx_600_names = ['eurostoxx600', 'euro_stoxx600', 'euro_stoxx_600']
indices_names = ['s&p500', 'sp500', 'russell2000', 'eurostoxx600', 'euro_stoxx600', 'euro_stoxx_600', 'nasdaq100', 'nasdaq_100', 'nasdaq']
nasdaq_100_names = ['nasdaq100', 'nasdaq_100', 'nasdaq']
russell_2000_file = PosixPath('/home/runner/work/stockMarket/stockMarket/stockMarket/../data/russell2000.csv')
russell_2000_names = ['russell2000']
sp500_names = ['s&p500', 'sp500']
get_currencies_from_index(
index: str | list[str],
) list[tuple[str, str]][source]
get_ticker_from_isin(isin: str) str[source]
get_tickers_from_index(
index: str | list[str],
) list[str][source]