0

我正在尝试回测我的一个简单策略,第一步是从 yfinance 检索历史数据。但是,每当我运行它时,我都看不到hist的内容。相反,它只是有这个输出这个输出

# import all the libraries
import nsetools as ns
import pandas as pd
import numpy
from datetime import datetime
import yfinance as yf
import matplotlib.pyplot as plot

plot.style.use('classic')
a = input("Enter the ticker name you wish to apply strategy to")
ticker = yf.Ticker(a)
hist = ticker.history(period="1mo", interval="5m")
hist

我真的只想查看历史价格与时间的关系,但无法显示数据框。我将不胜感激对此的任何意见。

4

0 回答 0