Dernière activité 1730172675

Révision a3aad3a9858286e1aa7cb95524ff8236486a0fbb

yfinance-5.py Brut
1import yfinance as yf
2
3msft = yf.Ticker("MSFT")
4
5msft.history(..., proxy="PROXY_SERVER")
6msft.get_actions(proxy="PROXY_SERVER")
7msft.get_dividends(proxy="PROXY_SERVER")
8msft.get_splits(proxy="PROXY_SERVER")
9msft.get_capital_gains(proxy="PROXY_SERVER")
10msft.get_balance_sheet(proxy="PROXY_SERVER")
11msft.get_cashflow(proxy="PROXY_SERVER")
12msft.option_chain(..., proxy="PROXY_SERVER")
13...