趋势交易笔记本

https://zhuanlan.zhihu.com/p/20547788

2018-01-03 · 1 min · word · Me

phcebus (菲比斯) 2017下半年既全年回顧

https://www.ptt.cc/bbs/Stock/M.1514954172.A.756.html

2018-01-03 · 1 min · word · Me

這次說的非常完整,而且清楚

https://youtu.be/tgpF_z_j1K0?t=1652

2018-01-01 · 1 min · word · Me

立大香酥雞塊

https://www.mobile01.com/newsdetail/23483/fried-chicken-nugget-blind-taste-test-2017

2017-12-27 · 1 min · word · Me

python 3 pandas matplotlib.pyplot

寫程式這麼久,python真的有夠難寫的,網路上一堆範例都有語法上的錯誤或不完整的,後來經由大陸某教學網終於成功 https://morvanzhou.github.io/tutorials/data-manipulation/np-pd/3-8-pd-plot/ 1、donwload python3 from python website 2、create aaa.py put context import pandas as pd import numpy as np import matplotlib.pyplot as plt ts = pd.Series(np.random.randn(1000), index=pd.date_range(‘1/1/2000’, periods=1000)) ts = ts.cumsum() print(ts) ts.plot() plt.show() //This is best important!! 3、python aaa.py then see error. Usually is package not install. So just pip install import matplotlib.pyplot as plt # pip install matplotlib import pandas as pd # pip install pandas see screen have notis, just follow install. ...

2017-12-14 · 1 min · 75 words · Me