Última actividad 1730172675

knox revisó este gist 1730172675. Ir a la revisión

1 file changed, 13 insertions

yfinance-5.py(archivo creado)

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