You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

TSMC (2330) Tick-Level Event Flow Dataset (PRIVATE)

重要:本資料集為 私有資料,僅供經授權的研究合作者下載使用。 嚴禁向外公開、轉散佈或再上傳到公開平台。

概覽

台積電(2330)2020-04-01 ~ 2021-03-31(244 個交易日)的逐筆委託 / 成交資料, 用於條件式 Transformer-Hawkes 事件流建模研究。

子資料集 路徑 筆數 用途
逐筆委託 (Entrust) entrust/df_2330.parquet 30,540,079 主要事件序列來源
逐筆成交 (Deal) deal/2330_deal.parquet 17,564,822 Code-4/5 成交對齊
成交價量 (Price-Quant) deal/2330_price_quant.parquet 8,476,544 價格時序、tick size

完整欄位定義、統計摘要、處理規則請參考 DATASET.md

下載方式

1. 授權

請聯絡資料擁有者取得 repo 存取權,並在 HuggingFace 建立 read token。

2. 設定 token

export HF_TOKEN=hf_xxxxxxxxxxxxxxxx
# 或
huggingface-cli login

3. 下載(Python)

from huggingface_hub import snapshot_download

local_dir = snapshot_download(
    repo_id="renhehuang/2330-tick-flow",
    repo_type="dataset",
    local_dir="data",                # 直接還原到專案 data/ 目錄
    allow_patterns=["entrust/*.parquet", "deal/*.parquet"],
)
print(f"Downloaded to {local_dir}")

4. 下載(CLI)

huggingface-cli download renhehuang/2330-tick-flow \
    --repo-type dataset \
    --local-dir data

使用注意

  • 不得外洩:本資料來源具版權與機密性,請勿向第三方公開、發表於 public repo、 或將原始檔案重新上傳至任何公開資料平台。
  • 引用要求:在論文 / 報告中使用本資料時請引用 Research_Proposal.md 之研究計畫。
  • 離開研究組:請刪除本機所有副本與快取(~/.cache/huggingface/)。

與程式碼倉庫的對應

主程式碼倉庫:conditional-tick-flow(私人 GitHub)。

下載後請放置於:

conditional-tick-flow/
├── data/
│   ├── entrust/df_2330.parquet
│   └── deal/
│       ├── 2330_deal.parquet
│       └── 2330_price_quant.parquet
└── tsmc-event-flow/   # 程式碼
Downloads last month
21