Quote
Getting stock information.
- class finvizfinance.quote.Statements[source]
Getting statements of ticker
- get_statements(ticker, statement='I', timeframe='A')[source]
Getting statements of ticker.
- Parameters:
ticker (str) – ticker string
statement (str) – I(Income Statement), B(Balace Sheet), C(Cash Flow)
timeframe (str) – A(Annual), Q(Quarter)
- Returns:
statements table
- Return type:
df(pandas.DataFrame)
- class finvizfinance.quote.finvizfinance(ticker, verbose=0)[source]
Getting information from the individual ticker.
- Parameters:
ticker (str) – ticker string
verbose (int) – choice of visual the progress. 1 for visualize progress.
- ticker_charts(timeframe='daily', charttype='advanced', out_dir='', urlonly=False)[source]
Download ticker charts.
- Parameters:
timeframe (str) – choice of timeframe (daily, weekly, monthly).
charttype (str) – choice of type of chart (candle, line, advanced).
out_dir (str) – output image directory. default none.
urlonly (bool) – choice of downloading charts, default: downloading chart
- Returns:
url for the chart
- Return type:
charturl(str)
- ticker_description()[source]
Get ticker description.
- Returns:
ticker description.
- Return type:
description(str)
- ticker_full_info()[source]
Get all the ticker information.
- Returns:
insider information table
- Return type:
df(pandas.DataFrame)
- ticker_fundament(raw=True, output_format='dict')[source]
Get ticker fundament.
- Parameters:
raw (boolean) – if True, the data is raw.
output_format (str) – choice of output format (dict, series).
- Returns:
ticker fundament.
- Return type:
fundament(dict)
- ticker_inside_trader()[source]
Get insider information table.
- Returns:
insider information table
- Return type:
df(pandas.DataFrame)
- ticker_news()[source]
Get news information table.
- Returns:
news information table
- Return type:
df(pandas.DataFrame)