Quote

Getting individual ticker information.

class finvizfinance.quote.Quote

quote Getting current price of the ticker

get_current(ticker)

Getting current price of the ticker.

Returns:price of the ticker
Return type:price(float)
class finvizfinance.quote.Statements

Getting statements of ticker

get_statements(ticker, statement='I', timeframe='A')

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)

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)

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()

Get ticker description.

Returns:ticker description.
Return type:description(str)
ticker_full_info()

Get all the ticker information.

Returns:insider information table
Return type:df(pandas.DataFrame)
ticker_fundament(raw=True, output_format='dict')

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()

Get insider information table.

Returns:insider information table
Return type:df(pandas.DataFrame)
ticker_news()

Get news information table.

Returns:news information table
Return type:df(pandas.DataFrame)
ticker_outer_ratings()

Get outer ratings table.

Returns:outer ratings table
Return type:df(pandas.DataFrame)
ticker_signal()

Get all the trading signals from finviz.

Returns:get all the ticker signals as list.
Return type:ticker_signals(list)