LivTorgEx indicator reference. Use when building strategy filters or conditions and you need the correct indicator type, properties, or period format.
How this skill is triggered — by the user, by Claude, or both
Slash command
/livtorgex-strategy-skill:strategy-indicatorsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Call the MCP tool to get all available indicators with their valid `type`, available `period` values, and `property` values. No arguments needed.
Call the MCP tool to get all available indicators with their valid type, available period values, and property values. No arguments needed.
Call MCP tool: list_indicators
[
{
"name": "Ema",
"period": ["9", "20", "21", "26", "200"],
"properties": ["Direction", "Value"]
},
{
"name": "Psar",
"properties": ["Direction", "Distance", "Price", "NextSar", "Ep", "KLines"]
}
]
| Field | Type | Description |
|---|---|---|
name | string | Exact value for the "type" field in an indicator object |
period | string[] | All valid period values for this indicator; absent when no period |
properties | string[] | All valid values for the "property" field |
period field in the response do not accept a period in the indicator object.period is present, use one of the listed values exactly as the period string. The first value is the default.Always call this endpoint before building or validating any indicator usage — it is the canonical, auto-synced source of truth.
{
"type": "Indicator",
"token": "Chart",
"timeframe": 3600,
"idx": 0,
"indicator": { /* indicator object */ }
}
timeframe — must be one of 60 / 300 / 900 / 1800 / 3600 / 14400idx — 0 = current candle, 1 = previous, etc.modify — optional integer: 0 = Auto (default, can omit), 1 = No, 2 = Long, 3 = ShortDirection output values: "LONG" (bullish) · "SHORT" (bearish) · "BOTH" (neutral)
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.