JECSand / yahoofinancials

A powerful financial data module used for pulling data from Yahoo Finance. This module can pull fundamental and technical data for stocks, indexes, currencies, cryptos, ETFs, Mutual Funds, U.S. Treasuries, and commodity futures.
https://pypi.python.org/pypi/yahoofinancials
MIT License
896 stars 214 forks source link

Yahoo Finance Symbol Profile #156

Open mmoulton12 opened 10 months ago

mmoulton12 commented 10 months ago

Hi,

I used the SHY for a symbol lookup and went to profile:

https://finance.yahoo.com/quote/SHY/profile?p=SHY

Annual Report Expense Ratio (net) 0.15% Holdings Turnover 73.00%

these figures do not show up in yahoofinancials.

get key statistics

SymbolData = yahoo_financials.get_key_statistics_data()

mgmtfee

SymbolData_MgmtFee = SymbolData[symbol]['annualReportExpenseRatio']"

turnover

SymbolData_Turnover = SymbolData[symbol]['annualHoldingsTurnover']"

I always get a zero or None back .

Thanks.