期货日数据维护与使用_日数据维护_主力合约计算逻辑

目录

主力合约换月规则(文化财经)

主力合约计算逻辑 

数据准备

代码

​下载


主力合约换月规则(文化财经)

主力合约计算逻辑 

数据准备

本文以沪银为例,将沪银所有日数据文件放入一个文件夹中,文件名命名方式为 合约名_交割年份.csv

代码

def caculate_main_from_zero():main_column_list = ['ticker','deliYear','tradeDate','openPrice','highestPrice','lowestPrice','closePrice','settlePrice','turnoverVol','turnoverValue','openInt']# 放置品种所有日数据文件,文件名 合约名_交割年份.csvpre_dir = r'E:/temp000/'file_list = os.listdir(pre_dir)# 将合约日文件合并到一个pd.DataFrame()中df = pd.DataFrame()for item in file_list:file_path = pre_dir + itemitem_str = item.split('.')[0]ticker = item_str.split('_')[0]deliYear = item_str.split('_')[1]df_one = pd.read_csv(file_path,encoding='utf-8')df_one['ticker'] = tickerdf_one['deliYear'] = deliYeardf = pd.concat([df,df_one])pass# 去除数据为空的数据df.dropna(inplace=True)if len(df)<=0:print('所有合约数据为空')return# 按日期分组df['o_date'] = pd.to_datetime(df['tradeDate'])df.sort_values(by='o_date',ascending=True,inplace=True)df['row_i'] = [i for i in range(len(df))]df_group = df.groupby(by='o_date',as_index=False)df_main = pd.DataFrame()cur_main_ticker = Nonecur_main_deliYear = Nonepre_next_ticker = Nonepre_next_deliYear = Nonenext_change_yeah = Falsefor name,group in df_group:if len(group)<=1:# 当日只有一条日数据,那该数据对应的合约即为主力合约df_main = pd.concat([df_main,group.iloc[[0]]])cur_main_ticker = group.iloc[0]['ticker']cur_main_deliYear = group.iloc[0]['deliYear']passelse:# 当日有多条日数据,分别计算成交量最大和持仓量最大的合约# 成交量最大合约df_vol = group.sort_values(by='turnoverVol',ascending=False)# 持仓量最大合约df_inte = group.sort_values(by='openInt',ascending=False)# 如果成交量最大与持仓量最大为同一合约if df_vol.iloc[0]['row_i'] == df_inte.iloc[0]['row_i']:if not cur_main_ticker:# 不存在前主力合约,那该合约即为主力合约df_main = pd.concat([df_main,df_vol.iloc[[0]]])cur_main_ticker = df_vol.iloc[0]['ticker']cur_main_deliYear = df_vol.iloc[0]['deliYear']passelse:if next_change_yeah:# 有【预备主力合约】if df_vol.iloc[0]['ticker'] == pre_next_ticker and df_vol.iloc[0]['deliYear']==pre_next_deliYear:# 【预备主力合约】继昨日是成交量和持仓量同时最大后,今日还是成交量和持仓量最大,切换df_main = pd.concat([df_main, df_vol.iloc[[0]]])cur_main_ticker = pre_next_tickercur_main_deliYear = pre_next_deliYearnext_change_yeah = Falsepasselse:# 【预备主力合约】继昨日是成交量和持仓量同时最大后,今日不济,【预备主力合约】撤销next_change_yeah = False# ----------- 【当日成交量最大和持仓量最大 为同一个合约】 延续当前合约 start# 存在前主力合约,判断该合约是否与前主力合约一致if df_vol.iloc[0]['ticker'] == cur_main_ticker and df_vol.iloc[0]['deliYear'] == cur_main_deliYear:# 一致,主力合约延续,不切换df_main = pd.concat([df_main, df_vol.iloc[[0]]])passelse:# 不一致,主力合约延续,不切换;预备下一交易日切换one_df = group.loc[(group['ticker'] == cur_main_ticker) & (group['deliYear'] == cur_main_deliYear)].copy()df_main = pd.concat([df_main, one_df.iloc[[0]]])next_change_yeah = Truepre_next_ticker = df_vol.iloc[0]['ticker']pre_next_deliYear = df_vol.iloc[0]['deliYear']pass# ----------- 【当日成交量最大和持仓量最大 为同一个合约】 延续当前合约 endpasspasselse:# 无【预备主力合约】# ----------- 【当日成交量最大和持仓量最大 为同一个合约】 延续当前合约 start# 存在前主力合约,判断该合约是否与前主力合约一致if df_vol.iloc[0]['ticker'] == cur_main_ticker and df_vol.iloc[0]['deliYear'] == cur_main_deliYear:# 一致,主力合约延续,不切换df_main = pd.concat([df_main, df_vol.iloc[[0]]])passelse:# 不一致,主力合约延续,不切换;预备下一交易日切换one_df = group.loc[(group['ticker'] == cur_main_ticker) & (group['deliYear'] == cur_main_deliYear)].copy()df_main = pd.concat([df_main, one_df.iloc[[0]]])next_change_yeah = Truepre_next_ticker = df_vol.iloc[0]['ticker']pre_next_deliYear = df_vol.iloc[0]['deliYear']pass# ----------- 【当日成交量最大和持仓量最大 为同一个合约】 延续当前合约 endpasspasselse:# 成交量最大和持仓量最大不是同一合约if not cur_main_ticker:df_main = pd.concat([df_main,df_vol.iloc[[0]]])cur_main_ticker = df_vol.iloc[0]['ticker']cur_main_deliYear = df_vol.iloc[0]['deliYear']passelse:if df_vol.iloc[0]['ticker']==cur_main_ticker and df_vol.iloc[0]['deliYear']==cur_main_deliYear:df_main = pd.concat([df_main,df_vol.iloc[[0]]])elif df_inte.iloc[0]['ticker'] == cur_main_ticker and df_inte.iloc[0]['deliYear']==cur_main_deliYear:df_main = pd.concat([df_main,df_inte.iloc[[0]]])else:df_main = pd.concat([df_main,df_vol.iloc[[0]]])cur_main_ticker = df_vol.iloc[0]['ticker']cur_main_deliYear = df_vol.iloc[0]['deliYear']passpasspasspasspassif len(df_main) <=0:print('主力合约条数为0')returndf_main = df_main.loc[:,main_column_list].copy()df_main.to_csv(pre_dir + 'AG.csv',encoding='utf-8')pass

结果存储为 AG.csv

下载

链接:https://pan.baidu.com/s/1X0O4ZtwX8_ZmdDJB4DJXTA 
提取码:jjdz

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/333939.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

前端八股文(网络篇)一

目录 1.Get和Post的请求的区别 2.常见的HTTP请求头和响应头 3.常见的HTTP请求方法 4.HTTP与HTTPS协议的区别 5.对keep-alive的理解 6.页面有多张图片&#xff0c;HTTP是怎样的加载表现&#xff1f; 7.HTTP请求报文是什么样的&#xff1f; 8.HTTP响应报文是什么样&#x…

Spring——基于注解的AOP配置

基于注解的AOP配置 1.创建工程 1.1.pom.xml <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"…

为什么制作文件二维码?文件做成二维码的优势

现在经常会遇到查看或者下载文件的情况&#xff0c;通过这种方式来完成文件的传递&#xff0c;那么为什么将文件做成二维码的方式来展示呢&#xff1f;二维码的优势有很多&#xff0c;比如能够让更多人同时获取内容才&#xff0c;方便更快的传播&#xff0c;而且没有有效期的限…

Ant Design 日期选择器 a-date-picker 的使用

代码如下&#xff1a; data() {return {initializationTime: } },<a-form-item label"上映时间" :labelCol"labelCol" :wrapperCol"wrapperCol"><a-date-pickerv-model"initializationTime"format"YYYY-MM-DD HH:mm:ss&…

chromium浏览器静默截图

操作系统&#xff1a;统信操作系统 安装浏览器 截图命令 /opt/apps/cn.google.chrome/files/google/chrome/google-chrome --no-sandbox --headless --disable-gpu --screenshottest.png -run-all-compositor-stages-before-draw --window-size1280,1400 http://www.baidu.co…

LeetCode(209)长度最小的子数组⭐⭐

给定一个含有 n 个正整数的数组和一个正整数 s &#xff0c;找出该数组中满足其和 ≥ s 的长度最小的 连续 子数组&#xff0c;并返回其长度。如果不存在符合条件的子数组&#xff0c;返回 0。 示例&#xff1a; 输入&#xff1a;s 7, nums [2,3,1,2,4,3]输出&#xff1a;2…

解决kubelet报failed to get imageFs info: non-existent label \“docker-images\“

问题&#xff1a; 一环境主机重启后&#xff0c;查看kubelet日志经常有大量无法回收镜像文件报错&#xff0c;会导致kubelet的pleg不健康&#xff0c;从而导致kubelet发生重启。报错如下&#xff1a; 解决办法 解决方法一&#xff1a; systemctl stop docker systemctl stop …

【VTKExamples::Visualization】第三期 Background设置

很高兴在雪易的CSDN遇见你 VTK技术爱好者 QQ&#xff1a;870202403 前言 本文分享几种背景设置的方式&#xff0c;希望对各位小伙伴有所帮助&#xff01; 感谢各位小伙伴的点赞关注&#xff0c;小易会继续努力分享&#xff0c;一起进步&#xff01; 你的点赞就是我的动力(…

池化层解析:简单易懂理解 PyTorch 中的核心组件

目录 torch.nn详解 nn.MaxPool1d nn.MaxPool2d nn.MaxPool3d nn.MaxUnpool1d nn.MaxUnpool2d nn.MaxUnpool3d nn.AvgPool1d nn.AvgPool2d nn.AvgPool3d nn.FractionalMaxPool2d nn.FractionalMaxPool3d nn.LPPool1d nn.LPPool2d nn.AdaptiveMaxPool1d nn.Adapt…

Lumerical Monitors------Mode expansion monitors

Lumerical Monitors------Mode expansion monitors 引言正文引言 本文,作者将重点介绍 Lumerical 中的 Mode expansion monitors 的用法 正文 Mode expansion monitors 允许我们去分析传递进入光纤或者波导中的任何感兴趣模式的功率百分比。能做到这一点是因为 Mode expans…

光缆通信有什么特点?

光缆由一个或多个光纤组成&#xff0c;每个光纤由一个非常纤细的玻璃或塑料纤维组成&#xff0c;可以传输光信号的高速数据。光缆通信具有以下特点&#xff1a; 1. 高带宽&#xff1a;光缆通信可以提供非常高的带宽&#xff0c;远远超过传统的铜缆通信。光纤的宽带特性使其能够…

kubernetes NetworkPolicy(防火墙)

开头语 写在前面&#xff1a;如有问题&#xff0c;以你为准&#xff0c; 目前24年应届生&#xff0c;各位大佬轻喷&#xff0c;部分资料与图片来自网络 内容较长&#xff0c;页面右上角目录方便跳转 概述 网络策略指的是 Pod 间的网络隔离策略&#xff0c;默认情况下是互通…