← 記事一覧に戻る
Reading Paths

Collections

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

Backtesting Without Fooling Yourself
🎯
7 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 ウォークフォワード最適化:唯一の誠実な戦略テスト
  3. 03 プラトー分析:堅牢な最適解とオーバーフィッティングを見分ける方法
  4. 04 モンテカルロ・ブートストラップ:10行のコードでバックテストの信頼区間を得る方法
  5. + 3 more
Open collection →
High-Performance Backtest Engines
4 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倍、最後の1トレードまで同一のPnL
  2. 02 集約Parquetキャッシュ:マルチタイムフレーム・バックテストを数百倍高速化する方法
  3. 03 アダプティブ・ドリルダウン:分足から生ティックまでの可変粒度バックテスト
  4. 04 IPC税:バックテストエンジンをソケットの向こうに置くと13%失う——そのほとんどはソケットのせいではない
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 Copulaによるアービトラージ:高次元依存関係のモデリング
  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 アルゴリズミックトレーディングのためのバー種類と集約方法
  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 コピュラモデル:暗号資産ポートフォリオの共同リスクモデリング
  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 マルチホライズン・ポートフォリオ予測のためのTemporal Fusion Transformer
  2. 02 拡散モデル vs 暗号通貨のアナーキー:DDPMがあなたの占い師よりビットコインの暴落をうまく予測できる理由
  3. 03 Kronos:ローソク足チャートに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 →