-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Financial tables attribute changes in yfinance 0.2
Purpose: This page is an attempt to assist other yfinance users that come across 'backward compatibility' issues due to some financial attributes that either changed names or were moved to other tables, due to changes made by yahoo.
- 'Total Stockholder Equity' -> 'Stockholders Equity' and moved to
quarterly_balancesheet
- 'Ebit' -> 'EBIT`
- 'Income Before Tax' -> 'Pretax Income`
- 'Net Income Applicable To Common Shares' -> 'Net Income Common Stockholders`
- 'Cash' -> 'Cash And Cash Equivalents'
- 'Total Liab' -> 'Total Liabilities Net Minority Interest'
- 'Short Term Investments'-> 'Other Short Term Investments'
- 'Total Current Liabilities'-> 'Current Liabilities'
- 'Total Current Assets'-> 'Current Assets'
- 'Capital Expenditures' -> 'Capital Expenditure'
- 'Total Cash From Operating Activities' -> 'Cash Flow From Continuing Operating Activities'
-
Ticker.info['marketCap'] -> Ticker.fast_info['market_cap']
-
Ticker.info['fiftyTwoWeekLow'] -> Ticker.fast_info['year_low']
-
Ticker.info['fiftyTwoWeekHigh'] -> Ticker.fast_info['year_high']
-
Ticker.info['regularMarketPreviousClose'] -> Ticker.fast_info['previous_close']
-
Ticker.info['52WeekChange'] -> Ticker.fast_info['year_change']
-
Ticker.info['averageVolume10days'] -> Ticker.fast_info['ten_day_average_volume']
-
Ticker.info['averageVolume'] -> Ticker.fast_info['three_month_average_volume']
-
Ticker.info['fiftyDayAverage'] -> Ticker.fast_info['fifty_day_average']
-
Ticker.info['twoHundredDayAverage'] -> Ticker.fast_info['two_hundred_day_average']
-
Ticker.info['regularMarketPrice'] -> Ticker.history_metadata['two_hundred_day_average'] # need to call
Ticker.history(period='1d')
first in order to get access to history_metadata
.analysis -> .earnings_trend