# user-defined package
# Const Variable
```
獲取數據,清洗數據
```py
def data_for_acb(ticker="000001", tstart=2010, tend=2015):
"""獲取,清洗 ACB 模型所需要的數據。
ACB 模型需要數據:
負債合計[TLiab]
資產總計[TAssets]
未分配利潤[retainedEarnings]
凈利潤[NIncome]
營運資本 = 資產總計 - 負債合計
"""
bs_data = DataAPI.FdmtBSGet(ticker=ticker, beginYear=tstart-1, endYear=tend,
field=['secID', 'endDate', 'publishDate', 'TLiab', 'TAssets', 'retainedEarnings'])
is_data = DataAPI.FdmtISGet(ticker=ticker, beginYear=tstart-1, endYear=tend,
field=['secID', 'endDate', 'publishDate', 'NIncome'])
bs_data = bs_data.drop_duplicates('endDate')
is_data = is_data.drop_duplicates('endDate')
data = is_data.merge(bs_data, on=['secID', 'endDate'])
# calculate TAssets diff of current and last report
pre_TAssets = []
length = len(data)
for index, number in enumerate(data.TAssets):
if index + 1 == length:
last_number = index
else:
last_number = index + 1
pre_TAssets.append(data.TAssets[last_number])
data['TAssetsPre'] = pre_TAssets
return data
def data_for_acbel(ticker="000001", tstart=2010, tend=2015):
"""獲取,清洗 ACB 模型所需要的數據。
ACB 模型需要數據:
負債合計[TLiab]
資產總計[TAssets]
未分配利潤[retainedEarnings]
凈利潤[NIncome]
營業總收入[tRevenue]
總市值[marketValue]
"""
bs_data = DataAPI.FdmtBSGet(ticker=ticker, beginYear=tstart-1, endYear=tend,
field=['secID', 'endDate', 'publishDate', 'TLiab', 'TAssets', 'retainedEarnings'])
is_data = DataAPI.FdmtISGet(ticker=ticker, beginYear=tstart-1, endYear=tend,
field=['secID', 'endDate', 'publishDate', 'NIncome', 'tRevenue'])
market_data = DataAPI.MktEqudGet(ticker=ticker, field=['secID', 'tradeDate', 'marketValue'])
market_data.rename(columns={'tradeDate': 'endDate'}, inplace=True)
bs_data = bs_data.drop_duplicates('endDate')
is_data = is_data.drop_duplicates('endDate')
data = is_data.merge(bs_data, on=['secID', 'endDate'])
endDate = list(data.endDate)
data = data.merge(market_data, on=['secID', 'endDate'], how='outer')
data.marketValue = data.marketValue.fillna(method='ffill')
data = data[data.endDate.isin(endDate)]
# calculate TAssets diff of current and last report
pre_TAssets = []
length = len(data)
for index, number in enumerate(data.TAssets):
if index + 1 == length:
last_number = index
else:
last_number = index + 1
pre_TAssets.append(data.TAssets[last_number])
data['TAssetsPre'] = pre_TAssets
return data
```
測試:獲取數據,清洗數據
```py
data_for_acb("002056").head(5)
```
| | secID | endDate | publishDate_x | NIncome | publishDate_y | TLiab | TAssets | retainedEarnings | TAssetsPre |
| --- | --- |
| 0 | 002056.XSHE | 2015-09-30 | 2015-10-28 | 2.657156e+08 | 2015-10-28 | 1.672345e+09 | 5.129504e+09 | 1.401169e+09 | 4.820643e+09 |
| 1 | 002056.XSHE | 2015-06-30 | 2015-08-27 | 1.482967e+08 | 2015-08-27 | 1.486623e+09 | 4.820643e+09 | 1.283617e+09 | 4.721675e+09 |
| 2 | 002056.XSHE | 2015-03-31 | 2015-04-27 | 6.872527e+07 | 2015-04-27 | 1.466576e+09 | 4.721675e+09 | 1.204153e+09 | 4.782852e+09 |
| 3 | 002056.XSHE | 2014-12-31 | 2015-03-28 | 3.814308e+08 | 2015-10-28 | 1.484829e+09 | 4.782852e+09 | 1.250498e+09 | 4.809435e+09 |
| 4 | 002056.XSHE | 2014-09-30 | 2015-10-28 | 9.175491e+07 | 2014-10-24 | 1.630937e+09 | 4.809435e+09 | 1.170975e+09 | 4.658186e+09 |
```py
data_for_acbel("002056").head(5)
```
| | secID | endDate | publishDate_x | NIncome | tRevenue | publishDate_y | TLiab | TAssets | retainedEarnings | marketValue | TAssetsPre |
| --- | --- |
| 0 | 002056.XSHE | 2015-09-30 | 2015-10-28 | 2.657156e+08 | 2.882585e+09 | 2015-10-28 | 1.672345e+09 | 5.129504e+09 | 1.401169e+09 | 7790664000 | 4.820643e+09 |
| 1 | 002056.XSHE | 2015-06-30 | 2015-08-27 | 1.482967e+08 | 1.800482e+09 | 2015-08-27 | 1.486623e+09 | 4.820643e+09 | 1.283617e+09 | 12852952000 | 4.721675e+09 |
| 2 | 002056.XSHE | 2015-03-31 | 2015-04-27 | 6.872527e+07 | 8.511258e+08 | 2015-04-27 | 1.466576e+09 | 4.721675e+09 | 1.204153e+09 | 12064024000 | 4.782852e+09 |
| 3 | 002056.XSHE | 2014-12-31 | 2015-03-28 | 3.814308e+08 | 3.668800e+09 | 2015-10-28 | 1.484829e+09 | 4.782852e+09 | 1.250498e+09 | 9019255000 | 4.809435e+09 |
| 4 | 002056.XSHE | 2014-09-30 | 2015-10-28 | 9.175491e+07 | 9.342650e+08 | 2014-10-24 | 1.630937e+09 | 4.809435e+09 | 1.170975e+09 | 9187724000 | 4.658186e+09 |
計算 Z-score
```py
def zscore_ACB(ticker=None, tstart=2010, tend=2015, coef=[0.517, -0.460, 18.640, 0.388, 1.158]):
# step 1. get data and pre-calculate the factor
ticker = data_for_acb(ticker, tstart, tend)
ticker['x0'] = 1
ticker['x1'] = ticker['TLiab'] / ticker['TAssets']
ticker['x2'] = ticker['NIncome'] * 2 / (ticker['TAssets'] + ticker['TAssetsPre'])
ticker['x3'] = (ticker['TAssets'] - ticker['TLiab']) / ticker['TAssets']
ticker['x4'] = ticker['retainedEarnings'] / ticker['TAssets']
# step 2. calculate zscore
tmp = ticker[['x0', 'x1', 'x2', 'x3', 'x4']] * coef
ticker['zscore'] = tmp.sum(axis=1)
# step 3. build result
ticker.sort('endDate', ascending=True, inplace=True)
return ticker[['secID', 'endDate', 'NIncome', 'TLiab', 'TAssets',
'retainedEarnings', 'x0', 'x1', 'x2', 'x3', 'x4', 'zscore']]
def zscore_ACBEL(ticker=None, tstart=2010, tend=2015, coef=[0.2086, 4.3465, 4.9601]):
# step 1. get data and pre-calculate the factor
ticker = data_for_acbel(ticker, tstart, tend)
ticker['x0'] = ticker['marketValue'] / ticker['TLiab']
ticker['x1'] = ticker['tRevenue'] / ticker['TAssets']
ticker['x2'] = (ticker['TAssets'] - ticker['TAssetsPre']) / ticker['TAssetsPre']
# step 2. calculate zscore
tmp = ticker[['x0', 'x1', 'x2']] * coef
ticker['zscore'] = tmp.sum(axis=1)
# step 3. build result
ticker.sort('endDate', ascending=True, inplace=True)
return ticker[['secID', 'endDate', 'NIncome', 'TLiab', 'tRevenue', 'TAssets',
'retainedEarnings', 'marketValue', 'TAssetsPre', 'x0', 'x1', 'x2', 'zscore']]
def get_ticker(bond=None):
"""Get the ticker number of a bond.
"""
# bondID -> partyID -> ticker
partyID = None
try:
data = DataAPI.BondGet(ticker=bond)
partyID = data['partyID'][0]
except:
return 'Cannot find this bond in DataAPI'
ticker = None
try:
data = DataAPI.SecIDGet(partyID=str(partyID))
ticker = data['ticker'][0]
except:
return 'Cannot find the ticker for this bond in DataAPI, maybe the issuer is not listed'
return ticker
```
測試:計算 Z-score
```py
zscore_ACB("002506").head(5)
```
| | secID | endDate | NIncome | TLiab | TAssets | retainedEarnings | x0 | x1 | x2 | x3 | x4 | zscore |
| --- | --- |
| 21 | 002506.XSHE | 2009-12-31 | 1.699573e+08 | 7.039600e+08 | 1.262617e+09 | 2.845660e+08 | 1 | 0.557540 | 0.134607 | 0.442460 | 0.225378 | 3.202272 |
| 20 | 002506.XSHE | 2010-09-30 | 1.051847e+08 | 1.131338e+09 | 1.848964e+09 | 4.404125e+08 | 1 | 0.611877 | 0.067609 | 0.388123 | 0.238194 | 1.922180 |
| 19 | 002506.XSHE | 2010-12-31 | 2.194191e+08 | 1.398571e+09 | 4.466591e+09 | 4.881275e+08 | 1 | 0.313118 | 0.069485 | 0.686882 | 0.109284 | 2.061233 |
| 18 | 002506.XSHE | 2011-03-31 | 3.719796e+07 | 1.841932e+09 | 4.946957e+09 | 5.261166e+08 | 1 | 0.372336 | 0.007903 | 0.627664 | 0.106352 | 0.859727 |
| 17 | 002506.XSHE | 2011-06-30 | 1.313367e+08 | 2.631518e+09 | 5.728841e+09 | 5.177251e+08 | 1 | 0.459346 | 0.024605 | 0.540654 | 0.090372 | 1.078754 |
```py
zscore_ACBEL("002506").head(5)
```
| | secID | endDate | NIncome | TLiab | tRevenue | TAssets | retainedEarnings | marketValue | TAssetsPre | x0 | x1 | x2 | zscore |
| --- | --- |
| 21 | 002506.XSHE | 2009-12-31 | 1.699573e+08 | 7.039600e+08 | 1.318242e+09 | 1.262617e+09 | 2.845660e+08 | 11732836000 | 1.262617e+09 | 16.666906 | 1.044055 | 0.000000 | 8.014703 |
| 20 | 002506.XSHE | 2010-09-30 | 1.545466e+08 | 1.131338e+09 | 1.646226e+09 | 1.848964e+09 | 4.404125e+08 | 11732836000 | 1.262617e+09 | 10.370759 | 0.890350 | 0.464390 | 8.336670 |
| 19 | 002506.XSHE | 2010-12-31 | 2.194191e+08 | 1.398571e+09 | 2.686649e+09 | 4.466591e+09 | 4.881275e+08 | 11732836000 | 1.848964e+09 | 8.389163 | 0.601499 | 1.415726 | 11.386537 |
| 18 | 002506.XSHE | 2011-03-31 | 3.719796e+07 | 1.841932e+09 | 6.502649e+08 | 4.946957e+09 | 5.261166e+08 | 12586900000 | 4.466591e+09 | 6.833531 | 0.131447 | 0.107547 | 2.530253 |
| 17 | 002506.XSHE | 2011-06-30 | 1.313367e+08 | 2.631518e+09 | 1.797884e+09 | 5.728841e+09 | 5.177251e+08 | 10174960000 | 4.946957e+09 | 3.866575 | 0.313830 | 0.158053 | 2.954592 |
```py
a = zscore_ACBEL("002506")
a.head(3)
```
| | secID | endDate | NIncome | TLiab | tRevenue | TAssets | retainedEarnings | marketValue | TAssetsPre | x0 | x1 | x2 | zscore |
| --- | --- |
| 21 | 002506.XSHE | 2009-12-31 | 1.699573e+08 | 7.039600e+08 | 1.318242e+09 | 1.262617e+09 | 2.845660e+08 | 11732836000 | 1.262617e+09 | 16.666906 | 1.044055 | 0.000000 | 8.014703 |
| 20 | 002506.XSHE | 2010-09-30 | 1.051847e+08 | 1.131338e+09 | 6.184189e+08 | 1.848964e+09 | 4.404125e+08 | 11732836000 | 1.262617e+09 | 10.370759 | 0.334468 | 0.464390 | 5.920527 |
| 19 | 002506.XSHE | 2010-12-31 | 2.194191e+08 | 1.398571e+09 | 2.686649e+09 | 4.466591e+09 | 4.881275e+08 | 11732836000 | 1.848964e+09 | 8.389163 | 0.601499 | 1.415726 | 11.386537 |
作圖分析
```py
def zscore_plot(dataframe, upper_limit, low_limit):
ax = dataframe.plot('endDate', ['zscore'], figsize=(20, 10), style='g-', title='zscore curve',)
axhspan(low_limit, dataframe.zscore.min(), facecolor='maroon', alpha=0.1)
axhspan(upper_limit, dataframe.zscore.max(), facecolor='yellow', alpha=0.2)
ax.legend()
return ax
```
測試:作圖分析
這里,我們以 11超日債[112061] 來做測試,看看當前這個模型表現怎么樣。
+ step 1: 調用 `get_ticker` 函數通過債券代碼獲取發行人上市代碼,在發行人已上市的前提下;
+ step 2: 調用 `zscore_ACBEL` 或 `zscore_ACB` 計算發行人的 Z-score 值;
+ step 3: 調用 `zscore_plot` 繪制 Z-score 曲線;
```py
ticker = get_ticker("112061")
df = zscore_ACBEL(ticker)
zscore_plot(df, 1.5408, 1.5408)
<matplotlib.axes.AxesSubplot at 0x5220a10>
```

```py
ticker = get_ticker("112061")
df = zscore_ACB(ticker)
zscore_plot(df, 0.9, 0.5)
<matplotlib.axes.AxesSubplot at 0x525c610>
```

- Python 量化交易教程
- 第一部分 新手入門
- 一 量化投資視頻學習課程
- 二 Python 手把手教學
- 量化分析師的Python日記【第1天:誰來給我講講Python?】
- 量化分析師的Python日記【第2天:再接著介紹一下Python唄】
- 量化分析師的Python日記【第3天:一大波金融Library來襲之numpy篇】
- 量化分析師的Python日記【第4天:一大波金融Library來襲之scipy篇】
- 量化分析師的Python日記【第5天:數據處理的瑞士軍刀pandas】
- 量化分析師的Python日記【第6天:數據處理的瑞士軍刀pandas下篇
- 量化分析師的Python日記【第7天:Q Quant 之初出江湖】
- 量化分析師的Python日記【第8天 Q Quant兵器譜之函數插值】
- 量化分析師的Python日記【第9天 Q Quant兵器譜之二叉樹】
- 量化分析師的Python日記【第10天 Q Quant兵器譜 -之偏微分方程1】
- 量化分析師的Python日記【第11天 Q Quant兵器譜之偏微分方程2】
- 量化分析師的Python日記【第12天:量化入門進階之葵花寶典:因子如何產生和回測】
- 量化分析師的Python日記【第13天 Q Quant兵器譜之偏微分方程3】
- 量化分析師的Python日記【第14天:如何在優礦上做Alpha對沖模型】
- 量化分析師的Python日記【第15天:如何在優礦上搞一個wealthfront出來】
- 第二部分 股票量化相關
- 一 基本面分析
- 1.1 alpha 多因子模型
- 破解Alpha對沖策略——觀《量化分析師Python日記第14天》有感
- 熔斷不要怕, alpha model 為你保駕護航!
- 尋找 alpha 之: alpha 設計
- 1.2 基本面因子選股
- Porfolio(現金比率+負債現金+現金保障倍數)+市盈率
- ROE選股指標
- 成交量因子
- ROIC&cashROIC
- 【國信金工】資產周轉率選股模型
- 【基本面指標】Cash Cow
- 量化因子選股——凈利潤/營業總收入
- 營業收入增長率+市盈率
- 1.3 財報閱讀 ? [米缸量化讀財報] 資產負債表-投資相關資產
- 1.4 股東分析
- 技術分析入門 【2】 —— 大家搶籌碼(06年至12年版)
- 技術分析入門 【2】 —— 大家搶籌碼(06年至12年版)— 更新版
- 誰是中國A股最有錢的自然人
- 1.5 宏觀研究
- 【干貨包郵】手把手教你做宏觀擇時
- 宏觀研究:從估值角度看當前市場
- 追尋“國家隊”的足跡
- 二 套利
- 2.1 配對交易
- HS300ETF套利(上)
- 【統計套利】配對交易
- 相似公司股票搬磚
- Paired trading
- 2.2 期現套利 ? 通過股指期貨的期現差與 ETF 對沖套利
- 三 事件驅動
- 3.1 盈利預增
- 盈利預增事件
- 事件驅動策略示例——盈利預增
- 3.2 分析師推薦 ? 分析師的金手指?
- 3.3 牛熊轉換
- 歷史總是相似 牛市還在延續
- 歷史總是相似 牛市已經見頂?
- 3.4 熔斷機制 ? 股海拾貝之 [熔斷錯殺股]
- 3.5 暴漲暴跌 ? [實盤感悟] 遇上暴跌我該怎么做?
- 3.6 兼并重組、舉牌收購 ? 寶萬戰-大戲開幕
- 四 技術分析
- 4.1 布林帶
- 布林帶交易策略
- 布林帶回調系統-日內
- Conservative Bollinger Bands
- Even More Conservative Bollinger Bands
- Simple Bollinger Bands
- 4.2 均線系統
- 技術分析入門 —— 雙均線策略
- 5日線10日線交易策略
- 用5日均線和10日均線進行判斷 --- 改進版
- macross
- 4.3 MACD
- Simple MACD
- MACD quantization trade
- MACD平滑異同移動平均線方法
- 4.4 阿隆指標 ? 技術指標阿隆( Aroon )全解析
- 4.5 CCI ? CCI 順勢指標探索
- 4.6 RSI
- 重寫 rsi
- RSI指標策略
- 4.7 DMI ? DMI 指標體系的構建及簡單應用
- 4.8 EMV ? EMV 技術指標的構建及應用
- 4.9 KDJ ? KDJ 策略
- 4.10 CMO
- CMO 策略模仿練習 1
- CMO策略模仿練習2
- [技術指標] CMO
- 4.11 FPC ? FPC 指標選股
- 4.12 Chaikin Volatility
- 嘉慶離散指標測試
- 4.13 委比 ? 實時計算委比
- 4.14 封單量
- 按照封單跟流通股本比例排序,剔除6月上市新股,前50
- 漲停股票封單統計
- 實時計算漲停板股票的封單資金與總流通市值的比例
- 4.15 成交量 ? 決戰之地, IF1507 !
- 4.16 K 線分析 ? 尋找夜空中最亮的星
- 五 量化模型
- 5.1 動量模型
- Momentum策略
- 【小散學量化】-2-動量模型的簡單實踐
- 一個追漲的策略(修正版)
- 動量策略(momentum driven)
- 動量策略(momentum driven)——修正版
- 最經典的Momentum和Contrarian在中國市場的測試
- 最經典的Momentum和Contrarian在中國市場的測試-yanheven改進
- [策略]基于勝率的趨勢交易策略
- 策略探討(更新):價量結合+動量反轉
- 反向動量策略(reverse momentum driven)
- 輕松跑贏大盤 - 主題Momentum策略
- Contrarian strategy
- 5.2 Joseph Piotroski 9 F-Score Value Investing Model · 基本面選股系統:Piotroski F-Score ranking system
- 5.3 SVR · 使用SVR預測股票開盤價 v1.0
- 5.4 決策樹、隨機樹
- 決策樹模型(固定模型)
- 基于Random Forest的決策策略
- 5.5 鐘擺理論 · 鐘擺理論的簡單實現——完美躲過股災和精準抄底
- 5.6 海龜模型
- simple turtle
- 俠之大者 一起賺錢
- 5.7 5217 策略 · 白龍馬的新手策略
- 5.8 SMIA · 基于歷史狀態空間相似性匹配的行業配置 SMIA 模型—取交集
- 5.9 神經網絡
- 神經網絡交易的訓練部分
- 通過神經網絡進行交易
- 5.10 PAMR · PAMR : 基于均值反轉的投資組合選擇策略 - 修改版
- 5.11 Fisher Transform · Using Fisher Transform Indicator
- 5.12 分型假說, Hurst 指數 · 分形市場假說,一個聽起來很美的假說
- 5.13 變點理論 · 變點策略初步
- 5.14 Z-score Model
- Zscore Model Tutorial
- 信用債風險模型初探之:Z-Score Model
- user-defined package
- 5.15 機器學習 · Machine Learning 學習筆記(一) by OTreeWEN
- 5.16 DualTrust 策略和布林強盜策略
- 5.17 卡爾曼濾波
- 5.18 LPPL anti-bubble model
- 今天大盤熔斷大跌,后市如何—— based on LPPL anti-bubble model
- 破解股市泡沫之謎——對數周期冪率(LPPL)模型
- 六 大數據模型
- 6.1 市場情緒分析
- 通聯情緒指標策略
- 互聯網+量化投資 大數據指數手把手
- 6.2 新聞熱點
- 如何使用優礦之“新聞熱點”?
- 技術分析【3】—— 眾星拱月,眾口鑠金?
- 七 排名選股系統
- 7.1 小市值投資法
- 學習筆記:可模擬(小市值+便宜 的修改版)
- 市值最小300指數
- 流通市值最小股票(新篩選器版)
- 持有市值最小的10只股票
- 10% smallest cap stock
- 7.2 羊駝策略
- 羊駝策略
- 羊駝反轉策略(修改版)
- 羊駝反轉策略
- 我的羊駝策略,選5只股無腦輪替
- 7.3 低價策略
- 專撿便宜貨(新版quartz)
- 策略原理
- 便宜就是 alpha
- 八 輪動模型
- 8.1 大小盤輪動 · 新手上路 -- 二八ETF擇時輪動策略2.0
- 8.2 季節性策略
- Halloween Cycle
- Halloween cycle 2
- 夏買電,東買煤?
- 歷史的十一月板塊漲幅
- 8.3 行業輪動
- 銀行股輪動
- 申萬二級行業在最近1年、3個月、5個交易日的漲幅統計
- 8.4 主題輪動
- 快速研究主題神器
- recommendation based on subject
- strategy7: recommendation based on theme
- 板塊異動類
- 風險因子(離散類)
- 8.5 龍頭輪動
- Competitive Securities
- Market Competitiveness
- 主題龍頭類
- 九 組合投資
- 9.1 指數跟蹤 · [策略] 指數跟蹤低成本建倉策略
- 9.2 GMVP · Global Minimum Variance Portfolio (GMVP)
- 9.3 凸優化 · 如何在 Python 中利用 CVXOPT 求解二次規劃問題
- 十 波動率
- 10.1 波動率選股 · 風平浪靜 風起豬飛
- 10.2 波動率擇時
- 基于 VIX 指數的擇時策略
- 簡單低波動率指數
- 10.3 Arch/Garch 模型 · 如何使用優礦進行 GARCH 模型分析
- 十一 算法交易
- 11.1 VWAP · Value-Weighted Average Price (VWAP)
- 十二 中高頻交易
- 12.1 order book 分析 · 基于高頻 limit order book 數據的短程價格方向預測—— via multi-class SVM
- 12.2 日內交易 · 大盤日內走勢 (for 擇時)
- 十三 Alternative Strategy
- 13.1 易經、傳統文化 · 老黃歷診股
- 第三部分 基金、利率互換、固定收益類
- 一 分級基金
- “優礦”集思錄——分級基金專題
- 基于期權定價的分級基金交易策略
- 基于期權定價的興全合潤基金交易策略
- 二 基金分析
- Alpha 基金“黑天鵝事件” -- 思考以及原因
- 三 債券
- 債券報價中的小陷阱
- 四 利率互換
- Swap Curve Construction
- 中國 Repo 7D 互換的例子
- 第四部分 衍生品相關
- 一 期權數據
- 如何獲取期權市場數據快照
- 期權高頻數據準備
- 二 期權系列
- [ 50ETF 期權] 1. 歷史成交持倉和 PCR 數據
- 【50ETF期權】 2. 歷史波動率
- 【50ETF期權】 3. 中國波指 iVIX
- 【50ETF期權】 4. Greeks 和隱含波動率微笑
- 【50ETF期權】 5. 日內即時監控 Greeks 和隱含波動率微笑
- 【50ETF期權】 5. 日內即時監控 Greeks 和隱含波動率微笑
- 三 期權分析
- 【50ETF期權】 期權擇時指數 1.0
- 每日期權風險數據整理
- 期權頭寸計算
- 期權探秘1
- 期權探秘2
- 期權市場一周縱覽
- 基于期權PCR指數的擇時策略
- 期權每日成交額PC比例計算
- 四 期貨分析
- 【前方高能!】Gifts from Santa Claus——股指期貨趨勢交易研究