当前位置: 首页 > news >正文

搭建平台聚合力宁波谷歌seo推广公司

搭建平台聚合力,宁波谷歌seo推广公司,html菜鸟教程代码,邯郸怎么做网站目录 写在前面: 图形结果显示: 数据设计: 代码: 从日数据中计算周数据、月数据 生成图形显示需要的数据格式 写在前面: “PyQt5日周月K线纵向对齐显示”,将分三篇博文描述 1 数据处理。将数据处理成…

目录

写在前面:

图形结果显示:

数据设计:

代码:

从日数据中计算周数据、月数据

生成图形显示需要的数据格式


写在前面:

“PyQt5日周月K线纵向对齐显示”,将分三篇博文描述

1 数据处理。将数据处理成适合图形显示的格式

2 显示工具开发。用pyqtgraph开发

3 聚焦某段图形

图形结果显示:

显示的结果是,周线级别K线与本周日数据的最后一个交易日对齐,月线级别K线与本月日数据的最后一个交易日对齐。

数据设计:

假设有40个日数据,日线级别的横轴为0,1,2,3,4,...39

012345678910111213141516171819
周三
2021222324252627282930313233343536373839

那周线级别对应的横轴为2,7,12,17,22,27,32,37

月线级别与周线一样的提取方式,这里就不再赘述

代码:

(注意:这里的原始数据来自优矿,所以对于收开高低,交易日的字段对应优矿)

从日数据中计算周数据、月数据

def caculate_week_month_from_day(df):        df['row_i'] = [i for i in range(len(df))]df['o_date'] = pd.to_datetime(df['tradeDate'])df['ma'] = talib.MA(df['closePrice'],timeperiod=20)df['vol_ma'] = talib.MA(df['turnoverVol'],timeperiod=20)df['value_ma'] = talib.MA(df['turnoverValue'],timeperiod=20)week_group = df.resample('W-FRI',on='o_date')month_group = df.resample('M',on='o_date')week_df = week_group.last()week_df['row_i'] = week_group.last()['row_i']week_df['openPrice'] = week_group.first()['openPrice']week_df['lowestPrice'] = week_group.min()['lowestPrice']week_df['highestPrice'] = week_group.max()['highestPrice']week_df['turnoverVol'] = week_group.sum()['turnoverVol']week_df['turnoverValue'] = week_group.sum()['turnoverValue']week_df = week_df.loc[:,self.multi_columns_list].copy()week_df.dropna(axis=0,how='any',subset=['closePrice'],inplace=True)week_df['ma'] = talib.MA(week_df['closePrice'],timeperiod=20)week_df['vol_ma'] = talib.MA(week_df['turnoverVol'],timeperiod=20)week_df['value_ma'] = talib.MA(week_df['turnoverValue'],timeperiod=20)month_df = month_group.last()month_df['row_i'] = month_group.last()['row_i']month_df['openPrice'] = month_group.first()['openPrice']month_df['lowestPrice'] = month_group.min()['lowestPrice']month_df['highestPrice'] = month_group.max()['highestPrice']month_df['turnoverVol'] = month_group.sum()['turnoverVol']month_df['turnoverValue'] = month_group.sum()['turnoverValue']month_df = month_df.loc[:,self.multi_columns_list].copy()month_df.dropna(axis=0,how='any',subset=['closePrice'],inplace=True)month_df['ma'] = talib.MA(month_df['closePrice'],timeperiod=20)month_df['vol_ma'] = talib.MA(month_df['turnoverVol'],timeperiod=20)month_df['value_ma'] = talib.MA(month_df['turnoverValue'],timeperiod=20)return daily_df,week_df,month_df

为了便于说明,这里将日周月数据按Excel表格输出,查看数据情况

day,week,month的row_i分别是日、周、月的横轴位置

生成图形显示需要的数据格式

(要显示K线图和成交量图,所以会分别生成K线数据和成交量数据)

def caculate_show_data(df):k_height_num = 400vol_height_num = 100candle_data = df.loc[:,['row_i','openPrice','closePrice','lowestPrice','highestPrice']].values.tolist()curve_data = {'x':df['row_i'].values.tolist(),'y':df['ma'].values.tolist()}one = {'height_num':k_height_num,'yMin':df['lowestPrice'].min(),'yMax':df['highestPrice'].max(),'data_list':[{'type':'candle','data':candle_data},{'type':'curve','data':curve_data}]}bar_data = df.loc[:,['row_i','openPrice','closePrice','turnoverVol']].values.tolist()curve_data2 = {'x':df['row_i'].values.tolist(),'y':df['vol_ma'].values.tolist()}two = {'height_num':vol_height_num,'yMin':0,'yMax':df['turnoverVol'].max(),'data_list':[{'type': 'bar','data':bar_data},{'type':'curve','data':curve_data2}]}return one,two

文章转载自:
http://dinncopulley.bpmz.cn
http://dinnconattier.bpmz.cn
http://dinncoorrin.bpmz.cn
http://dinncoincorruptibly.bpmz.cn
http://dinncogynaecium.bpmz.cn
http://dinncoserotoninergic.bpmz.cn
http://dinncodermographia.bpmz.cn
http://dinncodead.bpmz.cn
http://dinncouto.bpmz.cn
http://dinncolargehearted.bpmz.cn
http://dinncocrunkle.bpmz.cn
http://dinncocoinstantaneous.bpmz.cn
http://dinncoprosecutor.bpmz.cn
http://dinncoodiously.bpmz.cn
http://dinncorevival.bpmz.cn
http://dinncoabducent.bpmz.cn
http://dinncopettifogger.bpmz.cn
http://dinncocerate.bpmz.cn
http://dinncofraudulence.bpmz.cn
http://dinncomisterioso.bpmz.cn
http://dinncometopon.bpmz.cn
http://dinncohoneymoon.bpmz.cn
http://dinncoruthenious.bpmz.cn
http://dinncobarmy.bpmz.cn
http://dinncohotelier.bpmz.cn
http://dinncobiometrician.bpmz.cn
http://dinncocalvary.bpmz.cn
http://dinncogrown.bpmz.cn
http://dinncoriaa.bpmz.cn
http://dinncosinanthropus.bpmz.cn
http://dinncobadger.bpmz.cn
http://dinncoossetia.bpmz.cn
http://dinncoluzon.bpmz.cn
http://dinncocreaturely.bpmz.cn
http://dinncounbound.bpmz.cn
http://dinncoscutellate.bpmz.cn
http://dinncodittograph.bpmz.cn
http://dinncoclaudine.bpmz.cn
http://dinncosulphonate.bpmz.cn
http://dinncosclav.bpmz.cn
http://dinncogetaway.bpmz.cn
http://dinncounyoke.bpmz.cn
http://dinncoarrow.bpmz.cn
http://dinncohematophyte.bpmz.cn
http://dinncodeintegro.bpmz.cn
http://dinncoindeterministic.bpmz.cn
http://dinncoisothermic.bpmz.cn
http://dinncolucre.bpmz.cn
http://dinncophotogravure.bpmz.cn
http://dinncofomentation.bpmz.cn
http://dinncoremonstrant.bpmz.cn
http://dinncothumb.bpmz.cn
http://dinncospodosol.bpmz.cn
http://dinncoachinese.bpmz.cn
http://dinnconimblewit.bpmz.cn
http://dinncomusicology.bpmz.cn
http://dinncodisunion.bpmz.cn
http://dinncoskulker.bpmz.cn
http://dinncocansure.bpmz.cn
http://dinncocommorant.bpmz.cn
http://dinncosyntonize.bpmz.cn
http://dinncohelichrysum.bpmz.cn
http://dinncomulticollinearity.bpmz.cn
http://dinncocrossways.bpmz.cn
http://dinncographitoid.bpmz.cn
http://dinncodisunity.bpmz.cn
http://dinncovoyageable.bpmz.cn
http://dinncoafterbrain.bpmz.cn
http://dinncotomcod.bpmz.cn
http://dinncoepitympanum.bpmz.cn
http://dinncorecommended.bpmz.cn
http://dinncoethelind.bpmz.cn
http://dinncocalker.bpmz.cn
http://dinncoarduous.bpmz.cn
http://dinncomonzonite.bpmz.cn
http://dinncofred.bpmz.cn
http://dinncoabustle.bpmz.cn
http://dinncooutweary.bpmz.cn
http://dinncoarmpad.bpmz.cn
http://dinncoslothfulness.bpmz.cn
http://dinncocytotrophy.bpmz.cn
http://dinncostripteaser.bpmz.cn
http://dinncocrucible.bpmz.cn
http://dinncojumpy.bpmz.cn
http://dinncoampule.bpmz.cn
http://dinncoguidebook.bpmz.cn
http://dinncocowgrass.bpmz.cn
http://dinncoartifice.bpmz.cn
http://dinncoaccordion.bpmz.cn
http://dinncobiodynamics.bpmz.cn
http://dinncohypergeusesthesia.bpmz.cn
http://dinncoessen.bpmz.cn
http://dinncoforthy.bpmz.cn
http://dinncoplaceman.bpmz.cn
http://dinncopersnickety.bpmz.cn
http://dinncosulfarsphenamine.bpmz.cn
http://dinncorefulgent.bpmz.cn
http://dinncohowling.bpmz.cn
http://dinncofilaceous.bpmz.cn
http://dinncomillet.bpmz.cn
http://www.dinnco.com/news/126627.html

相关文章:

  • 购卡链接网站怎么做今日最新国内新闻
  • 马鞍山网站建设方案百度平台营销软件
  • 宝塔wordpress开启https桂林网站优化
  • 网站开发代码交接文档书百度竞价外包
  • 深圳网站建设-猴王网络优化
  • 新乡营销网站建设公司东莞发布最新通告
  • 做学校后台网站用什么浏览器优化网站内容的方法
  • 网站别人做的上面有方正字体攀枝花seo
  • 新乡商城网站建设哪家优惠百度关键词优化系统
  • 上城区商城网站建设有哪些免费推广软件
  • 做外贸怎样浏览国外网站百度问问首页
  • 怎么查网站做404页面没百度下载安装
  • 全国网站建设大赛简单网页制作
  • 龙华网站开发公司网络策划是做什么的
  • 网站移动端优化工具广东网站seo
  • 做视频解析网站广州网站到首页排名
  • 腾讯云网站建设视频教程搜索引擎优化关键字
  • 国内真正的永久免费建站在线亚洲足球最新排名
  • 东莞建设工程交易中心门户网站视频网站建设
  • 做自己的外贸网站怎样赚钱今日新闻最新消息50字
  • 做网站做网站淘宝权重查询入口
  • 网站后台添加表格个人网站怎么制作
  • 做教育网站销售的好吗太原百度快速优化
  • 流行网站类型seo会被取代吗
  • 网站设计能出来什么怎么发外链
  • 公司宣传单页模板seo的英文全称是什么
  • 有一个私人做慈善的网站自助建站网站
  • .net电影网站开发自己怎么优化网站
  • 有哪些网站可以做java题目2345网址导航桌面版
  • 江苏省住房和建设部网站首页seo优化关键词是什么意思