Replies: 1 comment
-
这个自己计算一下就可以,比如下面这个计算 5 日均线的例子 import efinance as ef
import pandas as pd
df = ef.stock.get_quote_history('600519')
MA5 = df['收盘'].rolling(window=5).mean()
print(MA5) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
请问如何获取股票均线数据
Beta Was this translation helpful? Give feedback.
All reactions