$npx -y skills add kansoku-trade/kansoku --skill intraday-signalShort-term multi-timeframe (5m/15m/1h) technical read for a single symbol — pulls K-line across three timeframes, reads MACD + swing structure, writes a direction call (long/short/neutral) with an explicit anchor price, a 2–4 scenario forward read, a range-bound playbook (long ta
| 1 | # intraday-signal |
| 2 | |
| 3 | Single-symbol, short-horizon technical read across 5 分钟 / 15 分钟 / 1 小时— |
| 4 | produces an explicit long/short call anchored to a price, a probability-weighted |
| 5 | forward read, and a concrete entry/stop/target plan, backed by server-side |
| 6 | auto-detected K-line signals (MACD divergence/背驰, candle patterns such as |
| 7 | Pin Bar, 123 structures). Ends by rendering an interactive dashboard and |
| 8 | writing a journal entry. |
| 9 | |
| 10 | > **Scope**: one symbol per run. For a cross-section "where is money moving" |
| 11 | > question use `capital-rotation`; for live tracking of a watchlist across a |
| 12 | > session use `market-session-tracker`; this skill is the deep single-symbol |
| 13 | > drill-down when the user wants a concrete short-term trade read. |
| 14 | |
| 15 | ## When to use |
| 16 | |
| 17 | - "MU 短线怎么走", "这里能不能做多/做空", "给我一个短线入场点" |
| 18 | - "5分钟15分钟1小时怎么看", "MACD 有没有背离", "这是不是 Pin Bar" |
| 19 | - "盈亏比多少", "入场点在哪", "止损止盈怎么设" |
| 20 | - **Not** for a broad market/sector scan (`capital-rotation`) |
| 21 | - **Not** for live multi-symbol session monitoring (`market-session-tracker`) |
| 22 | - **Not** for weeks/months-horizon swing entries (`sepa-strategy`) |
| 23 | |
| 24 | ## Workflow |
| 25 | |
| 26 | ### Step 1 — Resolve the symbol |
| 27 | |
| 28 | If ambiguous (e.g. a company name with multiple listings), ask back rather than guessing. |
| 29 | |
| 30 | ### Step 2 — Tiered grounding context |
| 31 | |
| 32 | The chart server pulls the three timeframes of K-line itself (5m/15m/1h × 1000 |
| 33 | bars) — no manual `longbridge kline` calls needed. Multi-source grounding is |
| 34 | tiered so runs stay fast — pull the "always" tier every run, judge the rest by |
| 35 | the day's tape: |
| 36 | |
| 37 | - **Always, before anything else: read `journal/lessons.md`** — the distilled |
| 38 | lesson list from past post-mortems. Every rule there was paid for with a real |
| 39 | loss; the read you're about to write must not repeat one. If a lesson applies |
| 40 | to today's setup, say so explicitly in the report(如"止损已避开 1000 关口 |
| 41 | 扎堆区,参照 lessons 2026-07-06"). |
| 42 | - **Always, check first**: `twitter-reader` — X is the fastest tape on breaking |
| 43 | news and sentiment; on an intraday horizon its lead time over aggregated feeds |
| 44 | is exactly the window that matters. Search the symbol, read the last few hours. |
| 45 | X sentiment is an _input_, not a conclusion — form the price-structure read in |
| 46 | Step 3 independently, then reconcile; don't go hunting the chart for evidence |
| 47 | of whatever narrative X planted. **If the `twitter-reader` skill is not |
| 48 | available in the current session, don't silently skip it: write "X 未查" |
| 49 | into the report/`context.sources_used`, and treat the 催化日/平静日 call as |
| 50 | provisional(longbridge-news 有延迟,"还没看到新闻"不等于"没有新闻").** |
| 51 | - **Always: event risk(财报 + 宏观时刻表)**. Two calls, no manual hunting: |
| 52 | `longbridge finance-calendar report --symbol <SYM>.US --format json`(下一个 |
| 53 | 财报日;若返回为空再退回 news / X / IR 并注明未确认)and |
| 54 | `longbridge finance-calendar macrodata --market US --star 3 --start <today> |
| 55 | --end <horizon-end> --format json`(横跨持仓周期的重要宏观发布,带前值/预测; |
| 56 | 时间为 ET——CPI/非农 8:30, 多数数据 10:00, FOMC 决议 14:00 + 记者会 14:30). Any |
| 57 | hard event inside the trade horizon must appear in the scenarios — a stop |
| 58 | cannot protect you through a gap(跳空开盘直接越过止损价,实际亏损可远大于计划). |
| 59 | - **Always: market alignment(大盘/板块对齐)**. One call: |
| 60 | `longbridge quote SPY.US QQQ.US <sector-ETF>.US`(如半导体 SMH、软件 IGV). |
| 61 | State whether the intended direction is with or against today's index/sector |
| 62 | tape; trading against it is allowed but must be justified in one line. |
| 63 | - **Always: volume check**. `GET /api/symbols/<SYM>/relvol`(服务端已算好的 |
| 64 | 相对成交量——当前量相对同时段常态量的倍数)+ `longbridge capital <SYM>.US |
| 65 | --format json`(triple-bucket flow). Breakouts and reversals without volume |
| 66 | are suspects, not signals; cite relvol when calling any breakout real. |
| 67 | - **Always**: `longbridge-news` on the symbol — official/aggregated headlines. |
| 68 | It lags X by minutes to hours, so treat it as confirmation and source-anchoring |
| 69 | for what X surfac |