hikyuu2/hikyuu_python/interactive/volume.py

151 lines
5.6 KiB
C++
Raw Normal View History

2015-01-07 01:26:14 +08:00
#!/usr/bin/python
# -*- coding: utf8 -*-
# cp936
2017-09-26 07:07:56 +08:00
#
# The MIT License (MIT)
#
# Copyright (c) 2010-2017 fasiondog
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
2015-01-07 01:26:14 +08:00
#===============================================================================
2017-09-26 07:07:56 +08:00
# History:
# 1. 20100227, Added by fasiondog
2015-01-07 01:26:14 +08:00
#===============================================================================
"""
K线图 +
"""
from hikyuu import Query
from hikyuu.util.mylog import escapetime
2017-11-30 00:52:43 +08:00
from hikyuu.indicator import Indicator, MA, CLOSE, VOL, OP, CVAL, PRICELIST
2016-04-18 19:54:42 +08:00
from hikyuu.trade_sys.signal import SG_Cross
2017-09-26 07:07:56 +08:00
from hikyuu.interactive.drawplot import (create_figure,
2017-11-30 00:52:43 +08:00
get_current_draw_engine,
2017-09-26 07:07:56 +08:00
ax_set_locator_formatter,
adjust_axes_show,
2017-11-29 01:24:31 +08:00
ax_draw_macd,
show_gcf)
2015-01-07 01:26:14 +08:00
2016-04-03 00:08:31 +08:00
def draw(stock, query=Query(-130), ma1_n=5, ma2_n=10, ma3_n=20, ma4_n=60,
ma5_n=100, ma_type="SMA", vma1_n=5, vma2_n=10):
2017-09-26 07:07:56 +08:00
"""绘制普通K线图 + 成交量(成交金额)"""
2015-01-07 01:26:14 +08:00
kdata = stock.getKData(query)
2016-04-03 00:08:31 +08:00
close = CLOSE(kdata,)
ma1 = MA(close, ma1_n, ma_type)
ma2 = MA(close, ma2_n, ma_type)
ma3 = MA(close, ma3_n, ma_type)
ma4 = MA(close, ma4_n, ma_type)
ma5 = MA(close, ma5_n, ma_type)
2015-01-07 01:26:14 +08:00
2017-09-26 07:07:56 +08:00
ax1, ax2 = create_figure(2)
2015-01-07 01:26:14 +08:00
kdata.plot(axes=ax1)
ma1.plot(axes=ax1, legend_on=True)
ma2.plot(axes=ax1, legend_on=True)
ma3.plot(axes=ax1, legend_on=True)
ma4.plot(axes=ax1, legend_on=True)
ma5.plot(axes=ax1, legend_on=True)
2016-04-18 19:54:42 +08:00
sg = SG_Cross(OP(MA(n=ma1_n, type=ma_type)), OP(MA(n=ma2_n, type=ma_type)))
2016-04-03 00:08:31 +08:00
sg.setTO(kdata)
2017-09-26 07:07:56 +08:00
sg.plot(axes=ax1, kdata=kdata)
2016-04-03 00:08:31 +08:00
2015-01-07 01:26:14 +08:00
vol = VOL(kdata)
total = len(kdata)
2017-11-30 00:52:43 +08:00
engine = get_current_draw_engine()
if engine == 'matplotlib':
rg = range(total)
x = [i-0.2 for i in rg]
x1 = [x[i] for i in rg if kdata[i].closePrice > kdata[i].openPrice]
y1 = [vol[i] for i in rg if kdata[i].closePrice > kdata[i].openPrice]
x2 = [x[i] for i in rg if kdata[i].closePrice <= kdata[i].openPrice]
y2 = [vol[i] for i in rg if kdata[i].closePrice <= kdata[i].openPrice]
ax2.bar(x1, y1, width=0.4, color='r', edgecolor='r')
ax2.bar(x2, y2, width=0.4, color='g', edgecolor='g')
elif engine == 'echarts':
vol.bar(axes=ax2, color='r')
else:
pass
2015-01-07 01:26:14 +08:00
vma1 = MA(vol, vma1_n)
vma2 = MA(vol, vma2_n)
vma1.plot(axes=ax2, legend_on=True)
vma2.plot(axes=ax2, legend_on=True)
if query.kType == Query.WEEK and stock.market == 'SH' and stock.code=='000001':
2017-11-30 00:52:43 +08:00
CVAL(0.16e+009, total, color='b',linestyle='--')
#ax2.hlines(0.16e+009,0,len(kdata),color='b',linestyle='--')
2015-01-07 01:26:14 +08:00
ax_set_locator_formatter(ax1, kdata.getDatetimeList(), kdata.getQuery().kType)
adjust_axes_show([ax1, ax2])
2017-11-29 01:24:31 +08:00
return show_gcf()
2015-01-07 01:26:14 +08:00
2017-09-26 07:07:56 +08:00
def draw2(stock, query=Query(-130), ma1_n=7, ma2_n=20, ma3_n=30,
ma4_n=42, ma5_n=100, vma1_n=5, vma2_n=10):
"""绘制普通K线图 + 成交量(成交金额)+ MACD"""
2015-01-07 01:26:14 +08:00
kdata = stock.getKData(query)
close = CLOSE(kdata)
ma1 = MA(close, ma1_n)
ma2 = MA(close, ma2_n)
ma3 = MA(close, ma3_n)
ma4 = MA(close, ma4_n)
ma5 = MA(close, ma5_n)
2017-11-28 01:47:44 +08:00
ax1, ax2, ax3 = create_figure(3)
2015-01-07 01:26:14 +08:00
kdata.plot(axes=ax1)
ma1.plot(axes=ax1, legend_on=True)
ma2.plot(axes=ax1, legend_on=True)
ma3.plot(axes=ax1, legend_on=True)
ma4.plot(axes=ax1, legend_on=True)
ma5.plot(axes=ax1, legend_on=True)
vol = VOL(kdata)
total = len(kdata)
2017-11-30 00:52:43 +08:00
engine = get_current_draw_engine()
if engine == 'matplotlib':
rg = range(total)
x = [i-0.2 for i in rg]
x1 = [x[i] for i in rg if kdata[i].closePrice > kdata[i].openPrice]
y1 = [vol[i] for i in rg if kdata[i].closePrice > kdata[i].openPrice]
x2 = [x[i] for i in rg if kdata[i].closePrice < kdata[i].openPrice]
y2 = [vol[i] for i in rg if kdata[i].closePrice < kdata[i].openPrice]
ax2.bar(x1, y1, width=0.4, color='r', edgecolor='r')
ax2.bar(x2, y2, width=0.4, color='g', edgecolor='g')
elif engine == 'echarts':
vol.bar(axes=ax2, color='r', legend_on=True)
else:
pass
2015-01-07 01:26:14 +08:00
vma1 = MA(vol, vma1_n)
vma2 = MA(vol, vma2_n)
vma1.plot(axes=ax2, legend_on=True)
vma2.plot(axes=ax2, legend_on=True)
ax_draw_macd(ax3, kdata)
ax1.set_xlim((0, len(kdata)))
ax_set_locator_formatter(ax1, kdata.getDatetimeList(), kdata.getQuery().kType)
adjust_axes_show([ax1, ax2, ax3])
2017-11-29 01:24:31 +08:00
return show_gcf()
2015-01-07 01:26:14 +08:00