lit26 / finvizfinance

Finviz analysis python library.

Home Page:https://finvizfinance.readthedocs.io/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

See valuation/overview/... of specific set of tickers (not filtered through preset)

DidierRLopes opened this issue · comments

Hey,

Great package! I'm using it on https://github.com/DidierRLopes/GamestonkTerminal :)

I was wondering, does your package allows you to see valuation,overview,... of specific tickers? E.g. https://finviz.com/screener.ashx?v=111&t=FB,AMZN,AAPL,AMD, rather than seeing those based on specified presets?

Thanks in advance!

Yes, I can use the code below.

from finvizfinance.screener.overview import Overview

foverview = Overview()
ticker='FB,AMZN,AAPL,AMD'
foverview.set_filter(ticker=ticker)
df = foverview.ScreenerView()

That's exactly what I wanted!

Amazing, thank you so much!

You are welcome.