Available Skills¶
Complete reference for all Claude Code skills in the RQF-ML system.
PineScript Development¶
/pine-generate¶
Generate production-ready PineScript v6 indicators from specifications or descriptions.
/pine-generate "Detect bearish OB after MSS with FVG confluence"
/pine-generate specs/new_indicator.md
Features:
- Non-repaint compliance built-in
- Proper state variable declarations
- JSON webhook alerts
- Info table display
/pine-analyze¶
Deep analysis of PineScript code for quality, compliance, and bugs.
Checks:
- Repaint detection (critical)
- State machine validation
- Memory/performance issues
- Edge case handling
- Alert completeness
- Code quality
Output: Generates analysis report at strategies/pine_v6/analysis/
/pine-debug¶
Fix PineScript compilation and runtime errors.
Common Fixes:
- Undeclared identifiers
- Type mismatches
- Array/drawing limits
request.securityscope issues- Na comparison problems
- Plot/plotarrow conditional errors
/pine-extract¶
Reverse-engineer external PineScript indicators to understand their algorithms.
/pine-extract some_indicator.pine "order block detection"
/pine-extract some_indicator.pine "how does it detect sweeps"
Use For:
- Learning from other indicators
- Understanding unfamiliar code
- Extracting reusable patterns
/pine-patterns¶
Reference library of reusable PineScript v6 patterns.
/pine-patterns pivot
/pine-patterns bos
/pine-patterns state-rqf
/pine-patterns ob
/pine-patterns fvg
/pine-patterns htf
/pine-patterns alert-json
Available Patterns:
| Pattern | Description |
|---|---|
pivot | Pivot high/low detection |
bos | Break of Structure |
mss | Market Structure Shift |
ob | Order Block detection |
fvg | Fair Value Gap |
state-basic | Simple state machine |
state-rqf | Full RQF state machine |
htf | Higher timeframe (no repaint) |
session | Session detection |
alert-json | Webhook-ready alerts |
draw-line | Safe line creation |
draw-table | Info table |
plot-safe | Conditional plotting |
/pine-to-python¶
Convert PineScript indicator logic to Python for backtest parity.
Output:
detector.py- Main detection logicindicators.py- Helper functionstests/test_parity.py- Parity verification
/pine-learn¶
Interactive PineScript learning with tutorials and examples.
/pine-learn state-machines
/pine-learn anti-repaint
/pine-learn arrays
/pine-learn "how do I detect order blocks?"
Topics:
| Category | Topics |
|---|---|
| Fundamentals | basics, inputs, plots, colors |
| Intermediate | arrays, drawings, functions, security |
| Advanced | state-machines, anti-repaint, performance |
| ICT/SMC | pivots, structure, liquidity, zones, fib |
Python & ML¶
/backtest¶
Run comprehensive backtests with anti-bias validation.
/backtest STRAT_02 --symbol MNQ --timeframe 4h
/backtest STRAT_02 --walk-forward --monte-carlo
/backtest STRAT_02 --compare-baseline
Options:
| Option | Description |
|---|---|
--symbol | Symbol to backtest (default: MNQ) |
--timeframe | Timeframe (1m, 5m, 15m, 1h, 4h, D) |
--start | Start date (YYYY-MM-DD) |
--end | End date (YYYY-MM-DD) |
--walk-forward | Run walk-forward validation |
--monte-carlo | Run Monte Carlo simulation |
--compare-baseline | Compare against baseline |
Output:
outputs/backtests/STRAT_02_MNQ_4h_report.mdoutputs/backtests/STRAT_02_MNQ_4h_trades.csv
/train-model¶
Train and deploy ML models for edge prediction.
/train-model STRAT_02 --symbol MNQ --timeframe 4h
/train-model STRAT_02 --model xgboost --cv 5
/train-model STRAT_02 --deploy
Options:
| Option | Description |
|---|---|
--symbol | Symbol (default: MNQ) |
--timeframe | Timeframe (default: 4h) |
--model | Model type (lightgbm, xgboost, catboost) |
--cv | Cross-validation folds (default: 5) |
--deploy | Deploy after validation |
--compare | Compare against production |
Output:
outputs/models/STRAT_02/model_v3.pkloutputs/models/STRAT_02/model_report.md
/rsi-price-engineering¶
RSI-to-Price reverse engineering and predictive algorithms.
/rsi-price-engineering reversal-math
/rsi-price-engineering price-attractor
/rsi-price-engineering rqf-integration
Algorithms:
| Algorithm | Description |
|---|---|
reversal-math | Calculate price for target RSI |
price-attractor | RSI-based price targets |
rqf-integration | Integrate with RQF system |
Meta Skills¶
/skill-create¶
Create new Claude Code skills with quality scoring.
/skill-create deploy-strategy "Deploy validated strategy to paper/live"
/skill-create market-scanner "Scan for RQF setups"
Process:
- Intent analysis
- Architecture design
- Write skill
- Quality scoring (0-100)
- Self-reflection & iteration
- Create files
/skills-list¶
Quick reference for all available skills.
Skill Comparison¶
| Skill | Read | Write | Bash | Auto-Trigger |
|---|---|---|---|---|
| pine-generate | ✓ | ✓ | - | Manual |
| pine-analyze | ✓ | ✓ | - | Manual |
| pine-debug | ✓ | ✓ | - | Manual |
| pine-patterns | ✓ | - | - | Auto |
| pine-learn | ✓ | - | - | Auto |
| backtest | ✓ | ✓ | ✓ | Manual |
| train-model | ✓ | ✓ | ✓ | Manual |
| skill-create | ✓ | ✓ | ✓ | Manual |