Quote

Getting stock information.

class finvizfinance.quote.Quote[source]

quote Getting current price of the ticker

get_current(ticker)[source]

Getting current price of the ticker.

Returns:

price of the ticker

Return type:

price(float)

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)

ticker_outer_ratings()[source]

Get outer ratings table.

Returns:

outer ratings table

Return type:

df(pandas.DataFrame)

ticker_signal()[source]

Get all the trading signals from finviz.

Returns:

get all the ticker signals as list.

Return type:

ticker_signals(list)