Community
Skripte, geteilt von der Spectra-Community.
Forke alles. Lizenz entscheidet der Autor. Lauf sie in der Chart-Vorschau, im Backtester oder auf dem 24/7-Cloud-Worker — alles gratis enthalten.
● Vorschaudaten — die Live-Galerie wird nach der script_versions-Migration verdrahtet.
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)