Communauté
Scripts partagés par la communauté Spectra.
Forkez n'importe lequel. La licence dépend de l'auteur. Lancez-les en aperçu graphique, dans le backtester, ou sur le cloud worker 24/7 — tout inclus gratuitement.
● Données de preview — la galerie en direct se branche après la migration 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)