Python绘制股票移动均线的实例


Posted in Python onAugust 24, 2019

1. 前沿

移动均线是股票最进本的指标,本文采用numpy.convolve计算股票的移动均线

2. numpy.convolve

numpy.convolve(a, v, mode='full')

Returns the discrete, linear convolution of two one-dimensional sequences.

The convolution operator is often seen in signal processing, where it models the effect of a linear time-invariant system on a signal [R17]. In probability theory, the sum of two independent random variables is distributed according to the convolution of their individual distributions.

If v is longer than a, the arrays are swapped before computation.

Parameters:

a : (N,) array_like

 First one-dimensional input array.

 v : (M,) array_like

 Second one-dimensional input array.

 mode : {‘full', ‘valid', ‘same'}, optional

 ‘full':

  By default, mode is ‘full'. This returns the convolution at each point of overlap, with an output shape of (N+M-1,). At the end-points of the convolution, the signals do not overlap completely, and boundary effects may be seen.
 ‘same':

  Mode same returns output of length max(M, N). Boundary effects are still visible.
 ‘valid':

  Mode valid returns output of length max(M, N) - min(M, N) + 1. The convolution product is only given for points where the signals overlap completely. Values outside the signal boundary have no effect.

Returns:

out : ndarray

 Discrete, linear convolution of a and v.

计算公式:

Python绘制股票移动均线的实例

eg:

>>> import numpy as np
>>> 
>>> np_list = np.array([1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> 
>>> np_list
array([1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> x = np.convolve(np_list, 2)
>>> x
array([ 2, 4, 6, 8, 10, 12, 14, 16, 18])
>>> x = np.convolve(np_list, [0.5, 0.5])
>>> x
array([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 4.5])

3. 移动均线计算

def moving_average(x, n, type='simple'):
 x = np.asarray(x)
 if type == 'simple':
  weights = np.ones(n)
 else:
  weights = np.exp(np.linspace(-1., 0., n))

 weights /= weights.sum()

 a = np.convolve(x, weights, mode='full')[:len(x)]
 a[:n] = a[n]
 return a
ma10 = moving_average(close_data, 10, 'simple')
 ma20 = moving_average(close_data, 20, 'simple')

 ax1.plot(data['date'], ma10, color='c', lw=2, label='MA (10)')
 ax1.plot(data['date'], ma20, color='red', lw=2, label='MA (20)')

4. 效果图

Python绘制股票移动均线的实例

以上这篇Python绘制股票移动均线的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python中matplotlib的颜色及线条控制的示例
Mar 16 Python
Python实现的多进程和多线程功能示例
May 29 Python
python画一个玫瑰和一个爱心
Aug 18 Python
Python利用字典破解WIFI密码的方法
Feb 27 Python
详解python执行shell脚本创建用户及相关操作
Apr 11 Python
NumPy 数组使用大全
Apr 25 Python
python获取地震信息 微信实时推送
Jun 18 Python
Python3.7 读取 mp3 音频文件生成波形图效果
Nov 05 Python
Python3 使用selenium插件爬取苏宁商家联系电话
Dec 23 Python
Python MySQL 日期时间格式化作为参数的操作
Mar 02 Python
Python实现常见的几种加密算法(MD5,SHA-1,HMAC,DES/AES,RSA和ECC)
May 09 Python
python爬虫快速响应服务器的做法
Nov 24 Python
python+selenium 鼠标事件操作方法
Aug 24 #Python
python+selenium select下拉选择框定位处理方法
Aug 24 #Python
Python封装成可带参数的EXE安装包实例
Aug 24 #Python
python识别文字(基于tesseract)代码实例
Aug 24 #Python
python图片二值化提高识别率代码实例
Aug 24 #Python
关于Python形参打包与解包小技巧分享
Aug 24 #Python
python-序列解包(对可迭代元素的快速取值方法)
Aug 24 #Python
You might like
咖啡店都有些什么常规豆子呢?有什么风味在里面
2021/03/04 咖啡文化
关于PHPDocument 代码注释规范的总结
2013/06/25 PHP
php中数字0和空值的区别分析
2014/06/05 PHP
PHP输出英文时间日期的安全方法(RFC 1123格式)
2014/06/13 PHP
javascript 类定义的4种方法
2009/09/12 Javascript
jQuery判断iframe中元素是否存在的方法
2013/05/11 Javascript
简洁Ajax函数处理(示例代码)
2013/11/15 Javascript
jQuery DOM删除节点操作指南
2015/03/03 Javascript
JS实现控制表格行文本对齐的方法
2015/03/30 Javascript
全屏滚动插件fullPage.js使用实例解析
2016/10/21 Javascript
JS轮播图中缓动函数的封装
2020/11/25 Javascript
Angular.js实现多个checkbox只能选择一个的方法示例
2017/02/24 Javascript
JS使用cookie实现只出现一次的广告代码效果
2017/04/22 Javascript
微信小程序的分类页面制作
2017/06/27 Javascript
jQuery UI 实例讲解 - 日期选择器(Datepicker)
2017/09/18 jQuery
使用vue实现简单键盘的示例(支持移动端和pc端)
2017/12/25 Javascript
vue 实现通过手机发送短信验证码注册功能
2018/04/19 Javascript
uni-app如何实现增量更新功能
2020/01/03 Javascript
微信小程序实现身份证取景框拍摄
2020/09/09 Javascript
vue+flask实现视频合成功能(拖拽上传)
2021/03/04 Vue.js
[01:57]2016完美“圣”典风云人物:国士无双专访
2016/12/04 DOTA
python 使用正则表达式按照多个空格分割字符的实例
2018/12/20 Python
Python3.4学习笔记之 idle 清屏扩展插件用法分析
2019/03/01 Python
使用python+poco+夜神模拟器进行自动化测试实例
2020/04/23 Python
HTML5 canvas画矩形时出现边框样式不一致的解决方法
2013/10/14 HTML / CSS
摩飞电器俄罗斯官方网站:Morphy Richards俄罗斯
2020/07/30 全球购物
linux面试题参考答案(6)
2016/06/23 面试题
String s = new String(“xyz”);创建了几个String Object?
2015/08/05 面试题
期终自我鉴定
2014/02/17 职场文书
2014年环境整治工作总结
2014/12/10 职场文书
导游词欢迎词
2015/02/02 职场文书
2015年仓库管理员工作总结
2015/04/21 职场文书
幼儿园园长安全责任书
2015/05/08 职场文书
教师节主题班会教案
2015/08/17 职场文书
Vue2.0搭建脚手架
2022/03/13 Vue.js
Oracle数据库事务的开启与结束详解
2022/06/25 Oracle