Python金融: How to use macd indicator for signals strategy?

标签 python finance stocks algorithmic-trading

我正在努力了解股票数据及其在 python 中的实现。一开始,我在 Python stockstats 库中使用 MACD 指标。

我想知道的是,如果我有某只股票的 100 个 OHLC 条目,我如何使用 MACD 输出来产生我应该买入、卖出还是持有的信号?在 Graph 中可以可视化,但在编程方面我如何理解这个想法?示例代码如下:

import pandas as pd
from stockstats import StockDataFrame as Sdf
from pandas_datareader import data, wb

data = pd.read_csv('data.csv')

stock = Sdf.retype(data)
print(stock.get('pdi'))

它产生如下所示的输出:

0       0.000000e+00
1      -8.951923e-08
2       1.758777e-07
3      -3.844324e-08
4      -2.217396e-07
5      -3.893329e-07
6      -2.373225e-07
7      -5.082528e-07
8      -8.260595e-07
9      -1.099751e-06
10     -1.429675e-06
11     -1.211562e-06
12     -8.230303e-07
13     -5.163039e-07
14     -4.979626e-07
15     -4.777865e-07
16     -6.217018e-07
17     -1.145459e-06
18     -1.461550e-06
19     -1.744250e-06
20     -1.677791e-06
21     -1.820319e-06
22     -2.024092e-06
23     -1.958413e-06
24     -2.450087e-06
25     -2.805521e-06
26     -3.443776e-06
27     -4.047889e-06
28     -4.839084e-06
29     -5.208106e-06
            ...     
1410    4.856951e-06
1411    6.075773e-06
1412    9.159968e-06
1413    9.985022e-06
1414    1.069234e-05
1415    1.140865e-05
1416    1.136520e-05
1417    1.156541e-05
1418    1.065633e-05
1419    9.176497e-06
1420    9.275813e-06
1421    8.254755e-06
1422    7.583274e-06
1423    7.301820e-06
1424    6.959007e-06
1425    6.292826e-06
1426    8.411427e-06
1427    8.746155e-06
1428    1.112640e-05
1429    1.299290e-05
1430    1.398810e-05
1431    1.441297e-05
1432    1.509612e-05
1433    1.462091e-05
1434    1.436198e-05
1435    1.390849e-05
1436    1.419959e-05
1437    1.554140e-05
1438    1.884861e-05
1439    2.163656e-05
Name: macd, Length: 1440, dtype: float64

最佳答案

给你,在评论中解释。

import pandas as pd
from stockstats import StockDataFrame as Sdf

data   = pd.read_csv('data.csv')

stock  = Sdf.retype(data)

signal = stock['macds']        # Your signal line
macd   = stock['macd']         # The MACD that need to cross the signal line
#                                              to give you a Buy/Sell signal
listLongShort = ["No data"]    # Since you need at least two days in the for loop

for i in range(1, len(signal)):
    #                          # If the MACD crosses the signal line upward
    if macd[i] > signal[i] and macd[i - 1] <= signal[i - 1]:
        listLongShort.append("BUY")
    #                          # The other way around
    elif macd[i] < signal[i] and macd[i - 1] >= signal[i - 1]:
        listLongShort.append("SELL")
    #                          # Do nothing if not crossed
    else:
        listLongShort.append("HOLD")

stock['Advice'] = listLongShort

# The advice column means "Buy/Sell/Hold" at the end of this day or
#  at the beginning of the next day, since the market will be closed

print(stock['Advice'])

关于Python金融: How to use macd indicator for signals strategy?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47000495/

相关文章:

c - 用 C 语言编写的回测器

database - 寻找相关或联动的股票

http - 获取股票的历史价格

python - 如何使用 python 抓取地理 TIFF 图像

python - 将日期从一个数据框映射到另一个数据框的优雅而高效的方法 - 大数据

python - Flask - 如何重用 URL 参数替换函数?

python - 在Python中合并时间序列数据帧

php - 公司市场信息 雅虎 RSS 源

python - 检查 pandas 数据框中相邻行的值以进行库存回测的更有效方法

python - PyLint:使用可能未定义的循环变量警告