Comunidad
Scripts compartidos por la comunidad de Spectra.
Forkea cualquiera. La licencia la decide el autor. Córrelos en la vista previa, en el backtester, o en el cloud worker 24/7 — todo incluido gratis.
● Datos de preview — la galería en vivo se conecta tras la migración de script_versions.
RSI Divergence
@maeve · Indicators · MIT
41267Bullish/bearish divergence with confirmation on close.
// RSI divergence with two-bar confirmation. let r = rsi(close, 14) let bull = pivot_low(r, 5) and pivot_low(close, 5) let bear = pivot_high(r, 5) and pivot_high(close, 5) mark(bull, color: bull, label: "div+") mark(bear, color: bear, label: "div-") output bull or bearVWAP Stack
@thomasc · Indicators · MIT
29841Anchored, session, and rolling VWAP plotted together.
let v_session = vwap(anchor: "session") let v_anchor = vwap(anchor: bar(0)) let v_roll = vwap(window: 50) plot(v_session, color: accent) plot(v_anchor, color: bull) plot(v_roll, color: warning)