c++笔记
c++ pointerpointer arithmeticc12345*p++ // same as *(p++): increment pointer, and dereference unincremented address*++p // same as *(++p): increme ...
c笔记
c-stringhttps://www.tutorialspoint.com/cprogramming/c_strings.htm
functions for c string:c++1234567891011121314151617// copy string s2 into s1strcpy( ...
Linux 基础速查
系统命令查看releasebash1lsb_release -aa
查看内核Code1uname -a
基本命令帮助xxx —help
man xxx
文件相关cd,
ls (-a -l -al)
pwd
mkdir
chmod
whichis
whereis
which
查看文档:cat, ...
disk cleaning
windows10 disk cleaning最近公司电脑被磁盘空间折腾的不行发现一款叫做spacesniffer的软件,可以扫描你电脑所有的文件夹, 并可视化给你看.非常方便!!!!!!!!
alpha strategy learning note
这个是对于csdn多因子策略学习的笔记.
link:
https://edu.csdn.net/course/detail/25572
多因子策略简介
pandas grouby的使用
截面波动率计算:
python1data.groupby('date')['daily_return'].std ...
backtrader tecent tutorial notes
backtrader tecent tutorial这篇文章是对于腾讯课堂backtrader教程的笔记
教程 video link:
https://ke.qq.com/webcourse/index.html#cid=2961673&term_id=103074911&taid= ...
backtrader youtube tutorial notes
backtrader框架video link:
https://www.youtube.com/watch?v=aTIkLcql0Is&list=PLHxM50fGnEoVSkh8PAI7dTWtEFJuu9Yom&index=17
code link:
https://github ...
class_tricks
track一些有用的 python class的连接
正确理解@staticmethod和@classmethod的实用例子
https://zhuanlan.zhihu.com/p/28010894
深入理解 __new__
https://blog.csdn.net/luoweifu/artic ...
ib_insync速查表
此文为ib_insync需要下载历史数据用的一些操作. 目的是能迅速查到想要的code.ib_insync是ib的 python api. 因为vnpy已经封装了ib的实盘模块, 所以我用ib_insync只是为了下载历史数据.
ib基础连接ibpython12import ib_insyncpri ...
class_instances_to_dataframe
介绍一下如何把多个class instances 的值存成一个dataframe.
defaultdict先介绍一个defaultdict.这个是collections的一个骚东西.你建好了以后,每次新建一个Key的时候,value会自动建立一个自定义类型的初始化值.
python1import c ...