Pine Version: v6 · License: MIT · Author: WavesUnchained
A collection of custom TradingView indicators built around composable analysis — market structure, trend, momentum, and confluence scoring.
This is a running collection of ideas, not a finished product catalog. Its purpose is to
explore Pine Script and chart-technical concepts, with quality treated as an ongoing process
carried out with AI assistance. That process covers fundamentals, not just code correctness:
whether an indicator's logic is conceptually sound, whether it's plausible on the specific
instrument it's meant to run on, and whether it consumes the right inputs in the first place
rather than data that looks available but carries no real signal (e.g. volume on instruments
where it doesn't reflect real trades). The project's Claude Code skills (.claude/skills/)
exist to enforce exactly that: instrument-data-validity checks input plausibility per
instrument, indicator-review diagnoses signal-logic soundness, and indicator-code-audit
covers technical correctness and repo conventions.
- Open any
.pinefile and copy its contents - In TradingView: Pine Script Editor → Paste → Add to Chart
Which data class carries a real signal on which instrument type — volume, VWAP, open interest,
term structure, cross-symbol requests: DATA_VALIDITY.md.
Run python3 scripts/audit_data_sources.py to scan all scripts against it.
Full indicator index, grouped by focus, with one-line descriptions and links to each script:
INDICATORS.md. Status, quality ratings and version history:
CATALOG.md.
Most strategy files are auto-generated from indicator source files via scripts/build_strategies.py — do not edit those directly. The WaveTrend v4 strategy is standalone and maintained by hand. Each strategy adds a trade direction filter, confirmed-bar gate, cooldown, and optional break-even stop on top of the indicator logic.
python3 scripts/build_strategies.py # rebuild all
python3 scripts/build_strategies.py indicators/trend_direction/chandelier_flip_radar/| Strategy | Based on | SL type | Backtest rating |
|---|---|---|---|
chandelier_flip_radar_strategy.pine |
Chandelier Flip Radar | Trailing | Promising (PF 1.60, NatGas 4H) |
market_average_relationship_engine_strategy.pine |
Market–Average Relationship Engine | Trailing (MA ∓ ATR×) | Not ready — not yet backtested |
oscillator_divergence_zones_strategy.pine |
Oscillator Divergence Zones | Pivot ATR | Promising (PF 1.14, NatGas 4H) |
smooth_trend_radar_strategy.pine |
Smooth Trend Radar | Fixed TP | Promising (PF 1.71 Long, NatGas 4H) |
wavetrend_v4_strategy.pine |
WaveTrend v4 | Trailing | Promising (PF 3.07, NatGas 1D — best in repo) |
reversal_engine_score_strategy.pine |
Reversal Engine Score | — | Not ready (PF 0.95, NatGas 15M) |
commodity_pulse_matrix_v4_strategy.pine |
Commodity Pulse Matrix v4 | — | Not ready — not yet backtested |
Full backtest results and parameter notes: strategies/<name>/<name>_strategy_assessment.md. Schema: strategies/ASSESSMENT_SCHEMA.md.
These scripts are for educational and informational purposes only. Not financial advice. Trading involves substantial risk of loss.