我尝试使用 python 中的回溯库对股票数据进行回测。我使用这个简单的策略
class CrossOver(bt.SignalStrategy):
def __init__(self):
sma=bt.ind.SMA(period=50)
price=self.data
crossover=bt.ind.CrossOver(price,sma)
self.signal_add(bt.SIGNAL_LONG,crossover)
然后我运行它并尝试绘制它并以流光显示
cerebro=bt.Cerebro()
cerebro.addstrategy(CrossOver)
cerebro.adddata(data)
cerebro.run()
pl=cerebro.plot()
st.pyplot(pl)
但我无法在流光中看到图表。有谁知道如何在 streamlit 中显示反向交易者的图表?提前致谢。