Skip to main content

Intraday Tickers

期權商品列表(依條件查詢)

intraday/tickers/

Parameters

NameTypeDescription
type*string類型,可選 FUTURE 期貨 ; OPTION 選擇權
exchangestring交易所,可選 TAIFEX 臺灣期貨交易所
sessionstring交易時段,可選 REGULAR 一般交易 或 AFTERHOURS 盤後交易
productstring期權商品代碼
contractTypestring契約類別,可選 I 指數類;R 利率類;B 債券類;C 商品類;S 股票類;E 匯率類

Response

NameTypeDescription
date*string日期
type*string期權類型
exchangestring交易所
sessionstring交易時段
contractTypestring契約類別
dataobject[]契約列表
>> typestring期權類型
>> symbolstring商品代號
>> namestring商品名稱
>> referencePricestring參考價
>> contractTypestring契約類別
>> startDatestring上市日期
>> endDatestring下市日期
>> flowGroupstring流程群組
>> settlementDatestring最後結算日
>> isDynamicBandingboolean是否適用動態價格穩定
info

'*' 表示必揭示欄位。

Example

from fubon_neo.sdk import FubonSDK, Order

sdk = FubonSDK()

accounts = sdk.login("Your ID", "Your password" , "Your cert path", "Your cert password") # 需登入後,才能取得行情權限

sdk.init_realtime() # 建立行情連線

restfut = sdk.marketdata.rest_client.futopt
restfut.intraday.tickers(type='FUTURE', exchange='TAIFEX',session='REGULAR', contractType='E')

Response Body:

{
"type": "FUTURE",
"exchange": "TAIFEX",
"session": "REGULAR",
"contractType": "E",
"data": [
{
"symbol": "RHFA4",
"type": "FUTURE",
"contractType": "E",
"endDate": "2024-01-17",
"flowGroup": 5,
"isDynamicBanding": true,
"name": "美元兌人民幣期貨014",
"referencePrice": 7.1387,
"settlementDate": "2024-01-17",
"startDate": "2023-11-16"
},
{
"symbol": "RHFC4",
"type": "FUTURE",
"contractType": "E",
"endDate": "2024-03-20",
"flowGroup": 5,
"isDynamicBanding": true,
"name": "美元兌人民幣期貨034",
"referencePrice": 7.108,
"settlementDate": "2024-03-20",
"startDate": "2023-01-31"
},
{
"symbol": "RHFF4",
"type": "FUTURE",
"contractType": "E",
"endDate": "2024-06-19",
"flowGroup": 5,
"isDynamicBanding": true,
"name": "美元兌人民幣期貨064",
"referencePrice": 7.0619,
"settlementDate": "2024-06-19",
"startDate": "2023-04-20"
},
{
"symbol": "RHFI4",
"type": "FUTURE",
"contractType": "E",
"endDate": "2024-09-19",
"flowGroup": 5,
"isDynamicBanding": true,
"name": "美元兌人民幣期貨094",
"referencePrice": 7.0189,
"settlementDate": "2024-09-19",
"startDate": "2023-07-20"
},
{
"symbol": "RHFL3",
"type": "FUTURE",
"contractType": "E",
"endDate": "2023-12-20",
"flowGroup": 5,
"isDynamicBanding": true,
"name": "美元兌人民幣期貨123",
"referencePrice": 7.1531,
"settlementDate": "2023-12-20",
"startDate": "2022-10-20"
},
......
]
}