使用python的pandas为你的股票绘制趋势图

作者:瓦尔特有范 时间:2023-12-29 19:48:46 

前言

手里有一点点公司的股票, 拿不准在什么时机抛售, 程序员也没时间天天盯着看,不如动手写个小程序, 把股票趋势每天早上发到邮箱里,用 python 的 pandas, matplotlib 写起来很容易, 几十行代码搞定。

准备环境


python3 -m venv venv
source ./venv/bin/activate
pip install pandas
pip install pandas_datareader
pip install matplotlib

代码如下

绘制 2019 年到今天2019-02-15 的我司 ( Cisco ) 的股票趋势 ( open:开盘价, close: 收盘价, high 最高价:, low: 最低价,单位为美元)

$ vi stock.py


import matplotlib.pyplot as plt
import pandas as pd
pd.core.common.is_list_like = pd.api.types.is_list_like
import pandas_datareader.data as web
import matplotlib
import time
import matplotlib.pyplot as plt
import argparse
def drawStockTrend(inc, startDate, endDate, pngFile):
fig = matplotlib.pyplot.gcf()
fig.set_size_inches(18.5, 10.5)
df = web.DataReader(name=inc, data_source='iex', start=startDate, end=endDate)
print(df)
plt.style.use('seaborn-whitegrid')
plt.xticks(rotation=30)
plt.plot(df.index, df['open'], label='open', marker='o', linestyle=':', linewidth=1, markersize=3, color='gray')
plt.plot(df.index, df['high'], label='high', marker='o', linestyle=':', linewidth=1, markersize=3, color='green')
plt.plot(df.index, df['low'], label='low', marker='o', linestyle=':', linewidth=1, markersize=3, color='blue')
plt.plot(df.index, df['close'], label='close', marker='o', linestyle='-', linewidth=2, markersize=6, color='red')
for x, y in zip(df.index, df['close']):
plt.text(x, y + 0.3, '%.2f' % y, ha='center', va='bottom', color='red')
plt.legend()
plt.title("%s' stock trend" % company)
plt.show(block=True)
time.sleep(1)
if(not pngFile):
fig.savefig(pngFile)
plt.close()
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('-c', action='store', dest='company', help='specify company')
parser.add_argument('-s', action='store', dest='start', help='specify start date')
parser.add_argument('-e', action='store', dest='end', help='specify end date')
parser.add_argument('-f', action='store', dest='file', help='specify the filename')
args = parser.parse_args()
company = 'CSCO'
startDate = '2019-01-01'
endDate = '2019-02-19'
pngFile = None
if(args.company):
company = args.company
if (args.start):
startDate = args.start
if (args.end):
endDate = args.end
if (args.file):
pngFile = args.file
drawStockTrend(company, startDate, endDate, pngFile)
#example
# python stock.py -c GOOGL -s 2019-01-01 -e 2019-02-19 -f google_stock_trend.png
# python stock.py -c CSCO -s 2019-01-01 -e 2019-02-19 -f cisco_stock_trend.png
# python stock.py -c SINA -s 2019-01-01 -e 2019-02-19 -f sina_stock_trend.png
# python stock.py -c BIDU -s 2019-01-01 -e 2019-02-19 -f baidu_stock_trend.png
# python stock.py -c NTES -s 2019-01-01 -e 2019-02-19 -f netease_stock_trend.png

运行命令如下


python stock.py -c CSCO -s 2019-01-01 -e 2019-02-19 -f cisco_stock_trend.png

图表如下

cisco

使用python的pandas为你的股票绘制趋势图

cisco

看来最近股价涨势不错。

再看看其他公司

Google

使用python的pandas为你的股票绘制趋势图

google

Baidu

使用python的pandas为你的股票绘制趋势图

baidu

Netease

使用python的pandas为你的股票绘制趋势图

netease

来源:https://www.jianshu.com/p/ca3f5008c55c

标签:python,pandas,绘制,趋势图
0
投稿

猜你喜欢

  • 基于golang uint8、int8与byte的区别说明

    2024-05-09 09:56:03
  • jquery的$(document).ready()和onload的加载顺序

    2023-08-23 18:57:40
  • 缓存是如何实现的?

    2009-11-01 15:35:00
  • Python变量作用域LEGB用法解析

    2022-12-05 19:18:22
  • 深入了解Django View(视图系统)

    2022-07-18 14:47:13
  • 在Python中使用gRPC的方法示例

    2021-02-02 16:20:21
  • JavaScript变量提升和严格模式实例分析

    2024-04-17 10:35:52
  • ORACLE常见错误代码的分析与解决(二)

    2010-08-02 13:31:00
  • ORACLE正则匹配查询LIKE查询多个值检索数据库对象

    2024-01-20 18:11:01
  • Python中的 if 语句及使用方法

    2022-12-19 16:35:10
  • 如何基于Python爬取隐秘的角落评论

    2022-02-17 05:31:43
  • ASP初学者学习ASP指令

    2008-10-14 17:27:00
  • Python Unittest ddt数据驱动的实现

    2023-10-29 14:54:14
  • pygame实现方块动画实例讲解

    2022-11-01 13:37:46
  • 基于Python编写简易的成语接龙游戏

    2022-08-26 02:15:05
  • Python列表对象实现原理详解

    2022-09-07 10:24:58
  • Python实现的银行系统模拟程序完整案例

    2023-03-15 21:00:26
  • Python中文件的读取和写入操作

    2023-01-08 22:05:52
  • php修改NetBeans默认字体的大小

    2024-06-05 09:48:07
  • Vue使用vux-ui自定义表单验证遇到的问题及解决方法

    2024-05-10 14:18:07
  • asp之家 网络编程 m.aspxhome.com