The following code pulls balance sheet data using yfinance. I would like to get the close price as of the corresponding dates in the dataframe on the last row without hard coding dates.
import yfinance as yf
ticker_object = yf.Ticker('AAPL')
balancesheet = ticker_object.balancesheet
# Select specific rows and columns
selected_data = balancesheet.loc[['Share Issued', 'Tangible Book Value']]
selected_data
Current output:
Desired output:
Here is sample code to get price data:
import yfinance as yf
data = yf.download("AAPL", start="2017-01-01", end="2017-04-30")
data.head(3)
Output:
Because trades are close during weekends shift minimal dates for start by 3 days, then select
Close
columns and add new row byDataFrame.loc
withSeries.reindex
withmethod='ffill'
, because Friday's close Price holds until open on Monday.