المجتمع
سكريبتات يشاركها مجتمع سبكترا.
تفرّع أيّ شيء. الترخيص يحدّده المؤلف. شغّلها في معاينة الرسم أو الباك تيستر أو على عامل السحابة ٢٤/٧ — كله مشمول مجاناً.
● بيانات معاينة — المعرض الحيّ يُربط بعد إطلاق هجرة 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)