⚠ FOMC: 未設定 設定:資料自動存入 localStorage
‹
›
✎ 編輯模式 — 點 ✎ 編輯項目,點 ✕ 刪除,點 + 新增項目,點分類標題 [編輯] 修改分類
Macro Regime
Yield Curve
DXY Direction
Fed Stance
Inflation Exp.
Asset Signal Direction
🏛 Bond
💱 FX
🥇 Gold
🛢 Oil
₿ BTC
盤前展望 / Pre-Market
關鍵價位 & SMT
各盤段實況(Asia/LN/NY)
Trade Ideas
EOD 複盤
明日計畫 / Tomorrow
Weekly Trading Gantt
Bond → FX → Gold → Oil → BTC
點擊任意任務方塊可編輯內容,點擊「+」可新增任務,右鍵可刪除。修改後點「儲存佈局」。
Trade Log
0 trades
| # | 日期 | 資產 | 方向 | Trend | Grade | Conf. | Type | 入場 | 出場 | Risk% | R | P&L(R) | PnL $ | 狀態 | 理由 | 圖表 | 操作 |
| 尚無記錄,點擊「+ 新增交易」 |
Setup 評分系統
ICT Kelly · Confluence Grader
核心邏輯:比較固定 1R與Kelly 分級倉位的月度 PNL 分佈,基於 800 次蒙地卡羅模擬。
月度 R 分佈 · Flat 1R vs Kelly Tiered
| 分位 |
Flat 1R |
Kelly Tiered |
差異 |
多按幾次「重新模擬」,相同參數每次產生截然不同的月份結果。Kelly Tiered 的波動通常比 Flat 更平滑。
連敗序列 · 月內發生機率
連敗 3–4 次是統計正常事件,不是系統失效的信號。
核心原則:在累積 100+ 筆之前,執行品質分數才是你真正的 KPI,不是 PNL。三個全是 ✓ = 今天是成功的交易日,無論 PNL。
收盤後 · 三個問題
三個全是 ✓ = 今天是成功的交易日,無論 PNL 是正是負
THE UNIFIED FRAMEWORK
評分你的牌 → 按 Kelly 下注
讓統計做剩下的工作
ICT confluence 框架 = 評估牌力 · Kelly 準則 = 決定下注大小
100+ 筆樣本 = 真相浮現的門檻
執行品質 × 足夠樣本 × Kelly 分級 = 長期資金增長
Economic Calendar
ForexFactory
🤖 Gemini API Key
▶ 如何設定 Cloudflare Worker(免費,5分鐘)
1. 前往
workers.cloudflare.com 免費註冊
2. 建立新 Worker,貼上下方程式碼
3. 部署後把 Worker URL 填入上方欄位
export default {
async fetch(request) {
if (request.method === 'OPTIONS') {
return new Response(null, { headers: corsHeaders() });
}
const body = await request.json();
const { model, contents, generationConfig } = body;
const apiKey = body.apiKey;
const url = `https://generativelanguage.googleapis.com/v1beta/models/${model}:generateContent?key=${apiKey}`;
const res = await fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ contents, generationConfig }),
});
const data = await res.json();
return new Response(JSON.stringify(data), {
headers: { 'Content-Type': 'application/json', ...corsHeaders() },
});
}
};
function corsHeaders() {
return {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'POST, OPTIONS',
'Access-Control-Allow-Headers': 'Content-Type',
};
}
🔍 Perplexity API Key(Macro 即時搜尋)
🔌 Notion Integration
填入 Token 和 Parent Page ID 後,點「🚀 自動建立資料庫」
會在 Double R Trading Camp 頁面下自動建立 Trade Log 和 Daily Journal 兩個資料庫。
Token 取得:notion.so/my-integrations → 建立 Integration → 複製 secret_... 開頭的 Key
Page ID:URL 最後一串 32 位字元(e.g. 24127eeaeaf48198b855f6836cfc8da7)
☁️ GitHub Gist 雲端同步
將 Checklist 結構、Gantt 任務、Settings 存到 私人 GitHub Gist,換裝置/換瀏覽器自動恢復。
取得 Token:github.com → Settings → Developer settings → Personal access tokens → New token → 勾選 gist 權限
🗄 Supabase 雲端同步
交易記錄、日誌、設定、Checklist、Gantt 存入
Supabase 雲端資料庫,換電腦立即恢復。
圖表截圖不上傳,繼續本地 / Notion 儲存。
設定步驟:
① supabase.com 免費建立專案 →
② SQL Editor 執行下方建表語法 →
③ 填入 URL 與 anon key
▶ 展開建表 SQL
-- 使用者資料
create table profiles (
id uuid primary key references auth.users,
username text, bio text,
avatar_color text default '#f59e0b',
updated_at timestamptz default now()
);
-- Trade Ideas
create table ideas (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
asset text, direction text, timeframe text,
entry text, tp text, sl text,
title text, content text,
created_at timestamptz default now()
);
-- 留言
create table comments (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
idea_id uuid references ideas on delete cascade,
content text,
created_at timestamptz default now()
);
-- 月度績效
create table monthly_stats (
user_id uuid references auth.users,
year_month text,
trades_count int, win_rate float,
avg_r float, total_pnl float,
updated_at timestamptz default now(),
primary key (user_id, year_month)
);
-- 資料同步(新增 trades/journals 獨立欄位)
create table ficc_sync (
key text primary key,
trades jsonb,
journals jsonb,
value jsonb,
updated_at timestamptz default now()
);
-- 已有舊表請執行:
-- alter table ficc_sync add column if not exists trades jsonb;
-- alter table ficc_sync add column if not exists journals jsonb;
-- RLS
alter table profiles enable row level security;
alter table ideas enable row level security;
alter table comments enable row level security;
alter table monthly_stats enable row level security;
alter table ficc_sync enable row level security;
create policy "public read" on profiles for select using (true);
create policy "own write" on profiles for all using (auth.uid()=id);
create policy "public read" on ideas for select using (true);
create policy "own write" on ideas for all using (auth.uid()=user_id);
create policy "public read" on comments for select using (true);
create policy "own write" on comments for all using (auth.uid()=user_id);
create policy "public read" on monthly_stats for select using (true);
create policy "own write" on monthly_stats for all using (auth.uid()=user_id);
create policy "own all" on ficc_sync for all using (key like '%'||auth.uid()::text||'%');
🖼 圖表上傳(imgbb)
Trade Log 圖表透過
imgbb 免費圖床上傳,再由 Notion 抓取顯示。
取得免費 API Key:imgbb.com/signup 註冊後 → API → Add API key
📊 交易資產管理
自訂 Trade Log 的資產選單。拖曳可調整順序,點 ✕ 刪除,已使用的資產無法刪除。
💾 本地資料管理
所有資料存於 localStorage。圖片以 base64 儲存,建議定期推送至 Notion 備份。