Quote

Getting individual ticker information.

class finvizfinance.quote.Quote

quote Getting current price of the ticker

getCurrent(ticker)

Getting current price of the ticker.

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

Getting statements of ticker

getStatements(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.
TickerCharts(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)

TickerDescription()

Get ticker description.

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

Get all the ticker information.

Returns:insider information table
Return type:df(pandas.DataFrame)
TickerFundament(raw=True)

Get ticker fundament.

Parameters:raw (boolean) – if True, the data is raw.
Returns:ticker fundament.
Return type:fundament(dict)
TickerInsideTrader()

Get insider information table.

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

Get news information table.

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

Get outer ratings table.

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

Get all the trading signals from finviz.

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