Reference for "Analysis" values available to strategies (real-time projection data).
How this skill is triggered — by the user, by Claude, or both
Slash command
/livtorgex-strategy-skill:analysisThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This document lists Analysis value types (from SuggestionInfo / projection) available to strategy settings. Use these when you need real‑time chart, candle, movement, wave, or order book data inside filters, actions, or variables.
This document lists Analysis value types (from SuggestionInfo / projection) available to strategy settings. Use these when you need real‑time chart, candle, movement, wave, or order book data inside filters, actions, or variables.
Indicator: sug_info.indicator fields (ntps, ntps_fast_time, trandm, price_1h/4h/8h/24h, asset_01, asset_diff_01). JSON: { "type": "Analysis", "value": { "type": "Indicator", "property": "Ntps" } }
Candle / FastCandle: live candle fields (Open/Close/High/Low/Qty/Qtym/QtyAsset/QtymAsset, Direction). JSON: { "type": "Analysis", "value": { "type": "Candle", "property": "Close" } }
FastCandle — what it represents and why use it in strategies
FastCandle property meanings (how to interpret them in strategy logic):
Useful strategy patterns with FastCandle:
JSON examples (guard for absence):
Recommendation: use FastCandle when strategy correctness or safety depends on immediate, high-frequency context. Always provide a fallback path to regular Candle or Indicator values when fast data is missing.
Kline (closed TF kline): use tf (seconds) and property (Open/Close/High/Low/Direction). JSON: { "type": "Analysis", "value": { "type": "Kline", "tf": 3600, "property": "Close" } }
Wave: timeframe-specific wave stats (Direction, Qtym, Percentile, MinPrice, MaxPrice, TimeFrames). JSON: { "type": "Analysis", "value": { "type": "Wave", "timeframe": 3600, "property": "Percentile" } }
Movement: timeframe-specific movement data (Direction, BreakPrice, Min/Max, PriceStart, Qtym, Activates, Status, etc.). JSON: { "type": "Analysis", "value": { "type": "Movement", "timeframe": 900, "property": "BreakPrice" } }
OrderBook / OrderBookLevel / OrderBookInfo: book top prices, levels, quantities, durations. JSON: { "type": "Analysis", "value": { "type": "OrderBookInfo", "property": "SellPrice" } }
{ "type": "Expression", "expression": "And", "values": [ { "type": "Operation", "operation": ">", "left": { "type": "Analysis", "value": { "type": "Indicator", "property": "Ntps" } }, "right": { "type": "Number", "value": 50.0 } }, { "type": "Operation", "operation": ">", "left": { "type": "Analysis", "value": { "type": "Candle", "property": "Close" } }, "right": { "type": "Number", "value": 100.0 } } ] }
Reference compiled from trading-platform-rust stream_schema projection and strategy modules (SuggestionInfo, TFIndicatorVecValues, TradeSettingProValueAnalysis).
npx claudepluginhub livtorgex/strategy-skill --plugin livtorgex-strategy-skillCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.