← 返回文章列表
Reading Paths

Collections

Curated reading paths through the blog, ordered from basics to advanced.

Backtesting Without Fooling Yourself
🎯
9 parts

Backtesting Without Fooling Yourself

A step-by-step path from what your backtest really optimizes to proving an edge survives overfitting, multiple testing, and live execution. Read top to bottom — each part builds on the last.

  1. 01 目標函數設計:你最佳化的那個指標,正悄悄替你選好了策略
  2. 02 證明多時間框架回測中沒有look-ahead:擾動未來,證明過去看不到它
  3. 03 Walk-Forward 最佳化:唯一誠實的策略測試方法
  4. 04 平臺分析:如何區分穩健最優與過擬合
  5. + 5 more
Open collection →
High-Performance Backtest Engines
10 parts

High-Performance Backtest Engines

How to build a backtest engine that runs hundreds of times faster without changing a single PnL number — data layout, caching, adaptive resolution, and architecture, from first speedups to production internals.

  1. 01 回測引擎速度階梯:筆記本 CPU 上 298 倍提速,PnL 精確到最後一筆交易
  2. 02 框架稅:當你的回測庫比手寫的 pandas 迴圈還慢
  3. 03 聚合 Parquet 快取:如何將多時間框架回測加速數百倍
  4. 04 雙軸參數空間:為什麼你的大部分參數掃描幾乎是免費的
  5. + 6 more
Open collection →
Complex Arbitrage in Rust
🔗
6 parts

Complex Arbitrage in Rust

A six-part build-up of multi-leg crypto arbitrage — from negative-cycle detection to the linear algebra, copulas, and machine learning behind it, ending in low-latency Rust execution.

  1. 01 套利檢測的圖演算法:從 Bellman-Ford 到 RICH
  2. 02 期貨-現貨套利:從期現套利到 DeFi-CeFi
  3. 03 矩陣、張量與熱帶代數:用於套利檢測的線性代數
  4. 04 套利中的 Vine Copulas:高維依賴關係建模
  5. + 2 more
Open collection →
Order Book & Market Microstructure
📖
6 parts

Order Book & Market Microstructure

How the order book really works — accessing the data, reading queue position, rebuilding bars from order flow, and modeling it with deep learning and Hawkes processes.

  1. 01 CCXT:WebSocket 訂單簿方法實際工作原理
  2. 02 演算法交易中的訂單型別:從追價限價單到虛擬訂單
  3. 03 牆內排隊:訂單簿密集區的掛單位置分析
  4. 04 演算法交易的K線型別與聚合方法
  5. + 2 more
Open collection →
Portfolio Construction & Risk
📊
5 parts

Portfolio Construction & Risk

From Markowitz to production HRP + CVaR: how to allocate across crypto assets, model tail dependence with copulas, and size positions without blowing up.

  1. 01 馬科維茨投資組合理論之加密貨幣篇:從零到英雄
  2. 02 12種投資組合最佳化演算法比較:HRP、Black-Litterman、NCO及其他
  3. 03 我們的內部演算法揭秘:HRP + 多空 + 基於Hull-White的CVaR
  4. 04 Copula模型:加密投資組合聯合風險建模
  5. + 1 more
Open collection →
Statistical Arbitrage & Pairs Trading
🔀
3 parts

Statistical Arbitrage & Pairs Trading

Trade the spread between correlated assets — from the distance approach to cointegration and Kalman filters, then dynamically combining mean reversion with momentum.

  1. 01 配對交易中的距離法:Rust實現與分析
  2. 02 加密貨幣市場的統計套利與配對交易:從協整到卡爾曼濾波
  3. 03 統計套利中均值迴歸與動量策略的動態結合:數學基礎與實踐實現
Open collection →
Deep Learning for Markets
🧠
4 parts

Deep Learning for Markets

Neural forecasting for crypto — transformers, diffusion models, and foundation models, and how conformal prediction keeps their uncertainty honest.

  1. 01 用於多時間跨度組合預測的時序融合 Transformer
  2. 02 擴散模型對抗加密貨幣無政府狀態:為什麼DDPM比你的占星師更能預測比特幣崩盤
  3. 03 Kronos:讓K線圖說Transformer語言的基礎模型
  4. 04 用於風險感知倉位管理的保形預測
Open collection →
AI Agents for Trading
🤖
5 parts

AI Agents for Trading

The agentic-AI stack for markets — multi-agent frameworks, open-source hedge funds, and LLMs that mine alpha from earnings calls.

  1. 01 基於代理型AI的投資組合管理革命
  2. 02 TradingAgents:模擬對沖基金的多智慧體AI交易框架
  3. 03 AI4Finance Foundation:FinGPT、FinRL和FinRobot量化交易生態系統
  4. 04 AI Hedge Fund:AI分析師投票決定交易的多智慧體基金
  5. + 1 more
Open collection →
QuestDB for Algorithmic Trading
🗄️
3 parts

QuestDB for Algorithmic Trading

Stand up a time-series stack for trading on QuestDB — from architecture to the SQL that matters, to a production deployment.

  1. 01 QuestDB 演算法交易實戰:讀懂市場語言的架構設計
  2. 02 QuestDB 演算法交易實戰:改變遊戲規則的 SQL 擴充
  3. 03 QuestDB 演算法交易實戰:從訂單簿到生產架構
Open collection →
Low-Latency Trading Infrastructure
🛰️
4 parts

Low-Latency Trading Infrastructure

The plumbing under an HFT stack — how components talk (WebSocket, FIX, gRPC, Aeron), messaging on Aeron and Zig, and a C++ FIX/FAST scalper.

  1. 01 演算法交易系統中的資料通訊:技術綜述
  2. 02 Aeron:驅動半個HFT行業的訊息傳遞系統揭秘
  3. 03 ZigBolt:為什麼我們用 Zig 從零打造了自己的 Aeron,實現了每條訊息 20 納秒延遲
  4. 04 使用 FAST/FIX 開發簡單 C++ 剝頭皮交易機器人:分步指南
Open collection →