import pfeed as pe
import pfund_plot as plt
from docs.utils import display_html
feed = pe.YahooFinanceFeed()
df = feed.get_historical_data(product='AAPL_USD_STK', resolution='1d', rollback_period='1y')
Loading...
fig = plt.df(df, display_mode='notebook', backend='tabulator', streaming=False)
display_html(fig)
Loading...