金融量化学习---Python, MySQL, Pandas

这里用来记录一些在金融领域,尤其是银行相关的资金、债券、票据中应用到的数据管理与分析, 编程等心得或笔记,以及个人的一点小小兴趣(易经八卦、藏密禅修)等

导航

2021年1月18日 #

金融衍生品交易策略及案例分析

摘要: 第16期的iBond·微课堂 兴业银行资金营运中心外汇和衍生产品处负责人 叶予璋 老师 为大家提供了干货满满的金融衍生品交易策略及案例分析。许多小伙伴听后都希望我们能整理出一个音频和文字版的干货,现在终于来啦! http://www.managershare.com/post/271993 音频分段 阅读全文

posted @ 2021-01-18 15:29 chengjon 阅读(2702) 评论(0) 推荐(0) 编辑

2021年1月13日 #

dataframe pivot table

摘要: https://www.cnblogs.com/onemorepoint/p/8425300.html https://blog.csdn.net/mingkoukou/article/details/82870960 https://pandas.pydata.org/pandas-docs/st 阅读全文

posted @ 2021-01-13 19:28 chengjon 阅读(122) 评论(0) 推荐(0) 编辑

2021年1月8日 #

Numpy 数值/数组计算

摘要: import numpy as np ##数组 array的创建 |功能|输入|输出| | | | | |创建一维数组|np.array([1,2,3],dtype=float)|array([1., 2., 3.])| |创建二维数组|np.array([[1,2,3],[3,5,1]],dtyp 阅读全文

posted @ 2021-01-08 09:23 chengjon 阅读(257) 评论(0) 推荐(0) 编辑

2021年1月7日 #

python绘图专题(matplotlib,Pandas DataFrame)

摘要: ##Matplotlib绘图 user guide: https://matplotlib.org/users/index.html 官方教程:https://www.matplotlib.org.cn/tutorials/ 其它教程:https://www.runoob.com/w3cnote/m 阅读全文

posted @ 2021-01-07 16:05 chengjon 阅读(771) 评论(0) 推荐(0) 编辑

2021年1月5日 #

导入excel,csv的N种方式

摘要: 方法一:将表中的某一列按str/date读入 file_path = r'F:\Data Store\20089交易清单' file_name ='RB30A1-0900042.xls' df = pd.read_excel(file_path +'\\'+ file_name, dtype={'交 阅读全文

posted @ 2021-01-05 16:03 chengjon 阅读(605) 评论(0) 推荐(0) 编辑

Python格式化函数 format()

摘要: format在python2.6 之后引入,替代了原先的 %,显得更加优雅 format函数是一种格式化输出字符串的函数(str.format), 基本语法是通过 和 : 来代替以前的% 中可以填写后面元组中的下标 也可以填写后面的字段名 % 需要知道替换字符的类型,format则不需要 格式化字符 阅读全文

posted @ 2021-01-05 11:39 chengjon 阅读(524) 评论(0) 推荐(0) 编辑

用python打开文件夹的三种方式

摘要: 一、利用explorer.exe import os # 利用explorer.exe执行 start_directory = r'C:\代码\软件包' os.system("explorer.exe %s" % start_directory) 二、用os.startfile import os 阅读全文

posted @ 2021-01-05 09:44 chengjon 阅读(1943) 评论(1) 推荐(1) 编辑

2020年12月25日 #

GITHUB日常使用

摘要: ##GITHUB WINDOWS客户端下载与安装 1.GITHUB DESKTOP https://desktop.github.com/ 下载MSI版本:https://central.github.com/deployments/desktop/desktop/latest/win32?form 阅读全文

posted @ 2020-12-25 09:56 chengjon 阅读(201) 评论(0) 推荐(0) 编辑

2020年12月14日 #

Quantlib Python Cookbook 学习

摘要: Quantlib入门 以下学习内容以 Quantlib Python Cookbook 为基础,结合我自己对相关知识点的理解和应用, 整理合并而来, 原书作者是 Goutham Balaraman 和 Luigi Ballabio 为了便于理解本文的内容,建议阅读:复习一些必要的基础知识。 弄清量化 阅读全文

posted @ 2020-12-14 10:25 chengjon 阅读(2486) 评论(0) 推荐(0) 编辑

2020年12月8日 #

python读写excel利器:xlwings 从入门到精通

摘要: xlwings简介: python操作Excel的模块,网上提到的模块大致有:xlwings、xlrd、xlwt、openpyxl等, 他们提供的功能归纳起来有两种: 一、用python读写Excel文件,实际上就是读写有格式的文本文件,操作excel文件和操作text、csv文件没有区别,Exce 阅读全文

posted @ 2020-12-08 12:14 chengjon 阅读(21699) 评论(3) 推荐(4) 编辑

2020年12月4日 #

认识--类 ( Class ) 面向对象技术

摘要: 类(Class): 用来描述具有相同的属性和方法的对象的集合。它定义了该集合中每个对象所共有的属性和方法。对象是类的实例。 类变量:类变量在整个实例化的对象中是公用的。类变量定义在类中且在函数体之外。类变量通常不作为实例变量使用。 数据成员:类变量或者实例变量, 用于处理类及其实例对象的相关的数据。 阅读全文

posted @ 2020-12-04 17:19 chengjon 阅读(225) 评论(0) 推荐(0) 编辑

2020年12月2日 #

python 平均值/MAX/MIN值 计算从入门到精通

摘要: ##入门级计算 ####1、算数平均值 #样本: S = [s1, s2, s3, …, sn] #算术平均值: m = (s1 + s2 + s3 + … + sn)/n Numpy中的写法 m = numpy.mean(样本数组) ####2、加权平均值 #样本: S = [s1, s2, s3 阅读全文

posted @ 2020-12-02 09:38 chengjon 阅读(1690) 评论(0) 推荐(0) 编辑

2020年11月25日 #

python读写word文档 -- python-docx从入门到精通

摘要: 两种安装方式: pip install python-docx conda install -c conda-forge python-docx 常用到的导入命令: import docx from docx import Document from docx.shared import Pt,Cm 阅读全文

posted @ 2020-11-25 17:07 chengjon 阅读(3739) 评论(0) 推荐(0) 编辑

2020年11月20日 #

python中的简易表格prettytable

摘要: 安装:pip install PrettyTable ##普通表格 from prettytable import PrettyTable table = PrettyTable(['编号','云编号','名称','IP地址']) table.add_row(['1','server01','服务器 阅读全文

posted @ 2020-11-20 14:11 chengjon 阅读(759) 评论(0) 推荐(0) 编辑

2020年11月14日 #

ubuntu中安装和使用quant-lib

摘要: 安装与使用 推荐在 Ubuntu 操作系统下安装和使用 QuantLib ,如果使用的是 Ubuntu 16.04 或 18.04,请先在系统中添加 Dirk Eddelbuettel 维护的 PPA,以便轻松地安装最新版本。 sudo add-apt-repository ppa:edd/misc 阅读全文

posted @ 2020-11-14 00:13 chengjon 阅读(251) 评论(0) 推荐(0) 编辑