TR真实波幅指标金字塔PYTHON码源[系统交易]
TR真实波幅源码公式
num = -1
close = history_bars(\'RB00\',100,\'1d\',\'close\',include_now=True)
high = history_bars(\'RB00\',100,\'1d\',\'high\',include_now=True)
low = history_bars(\'RB00\',100,\'1d\',\'low\',include_now=True)
tr = talib.TRANGE(high,low,close)
print(tr)
#tr的均值就是我们常用的atr指标。talib自带的有atr不过计算出来的值和图表不对,所以我这里计算tr然后均值得到的就一样了
print(talib.SMA(tr,14))
注:在金融领域就有这样一个标准库叫TAlib集成了几乎所有你会使用到的那些基于k线分析的指标。TAlib官网是全英的,另外他的函数列表可以看这个链接http://www.ta-lib.org/function.html。只有简单的说明
num = -1
close = history_bars(\'RB00\',100,\'1d\',\'close\',include_now=True)
high = history_bars(\'RB00\',100,\'1d\',\'high\',include_now=True)
low = history_bars(\'RB00\',100,\'1d\',\'low\',include_now=True)
num = -1
close = history_bars(\'RB00\',100,\'1d\',\'close\',include_now=True)
high = history_bars(\'RB00\',100,\'1d\',\'high\',include_now=True)
low = history_bars(\'RB00\',100,\'1d\',\'low\',include_now=True)
num = -1
close = history_bars(\'RB00\',100,\'1d\',\'close\',include_now=True)
high = history_bars(\'RB00\',100,\'1d\',\'high\',include_now=True)
low = history_bars(\'RB00\',100,\'1d\',\'low\',include_now=True)
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 511411198 或微信:cxhjy888 进行 有偿 编写!(不贵!点击查看价格!)
- 上一篇:威廉指标金字塔PYTHON源码
- 下一篇:没有了!
相关文章
-
没有相关内容