Kompas Peluang VolatilitiDescription: Kompas Pulse is a dual-signal market scanner that blends volatility detection with momentum confirmation. Built on the powerful foundation of the Williams Vix Fix (WVF) and Commodity Channel Index (CCI), it highlights high-confluence zones where both price compression and directional extremes align.
Key Features:
📉 WVF Histogram to detect volatility spikes near market bottoms
📊 CCI Threshold Logic to confirm strong price momentum (+100/-100)
💡 Optional overlays: Bollinger Bands, EMAs, and percentile filters
🎯 Visual background highlights when volatility + momentum signals sync
Ideal For: Traders seeking early entries, dip-buying signals, or high-volatility reversal setups with clearer conviction.
Indicators and strategies
Mongoose Conflict Risk Radar v1.1 (Separate Panel) description
The Mongoose Capital: Risk Rotation Index is a macro market sentiment tool designed to detect elevated risk conditions by aggregating signals across key asset classes.
This script evaluates trend strength across 8 ETFs representing major risk-on and risk-off flows:
GLD – Gold
VIXY – Volatility
TLT – Long-Term Bonds
SPY – S&P 500
UUP – U.S. Dollar Index
EEM – Emerging Markets
SLV – Silver
FXI – China Large-Cap
Each asset is assigned a binary signal based on price position vs. its 21-period SMA (or a crossover for bonds). The signals are then totaled into a composite Risk Rotation Score, plotted as a bar graph.
How to Use
0–2 = Low risk-on behavior
3–4 = Caution / Mixed regime
5–8 = Elevated conflict or macro stress
Use this as a macro confirmation layer for trend entries, risk reduction, or allocation shifts.
Alerts
Set alerts when the index exceeds 5 to track major rotations into defensive assets.
Morning Structure – Live 30 Min Range📝 Description:
This indicator captures the morning price structure by tracking the high and low during the first 30 minutes after market open (default: 9:30 AM to 10:00 AM, New York time).
🔧 How it works:
At market open, it begins tracking the highest high and lowest low
The high and low lines are dynamic and update in real-time during the first 30 minutes
Once the 30-minute range completes, the lines freeze at their final values
Lines extend horizontally across the rest of the session to mark the "Morning Range"
✅ Key Features:
Tracks live price action during the morning session
Freezes the structure after 30 minutes (or user-defined)
Automatically resets each new trading day
Built-in timezone setting (America/New_York) to align with standard U.S. market hours
Clean visual lines that scroll naturally with the chart
⚙️ Use Cases:
Identify morning breakout zones
Define support and resistance early in the session
Combine with breakout, fade, or range-trading strategies
⚠️ Note:
This version does not include alerts or labels, by design (clean and focused).
Those can be added easily for custom strategies.
RSI, EMA, and SMAit is a script that will add EMA RSI and SMA for you .
its helpful if you don't have a plan .
Thankyou :)
simple indicator of chart patterns same ...
if you want to use it like EMA , SMA , etc fell free to do so .
Simple Moving Averageit is a clear script that helps you by telling in lines about where you trend is going it can also be adjusted like EMA and SMA ...
BB-HLThe BB‑HL Indicator is essentially a variation of Bollinger Bands that uses the high‑and‑low range of each bar—instead of the closing price—to calculate volatility bands.
Tradability Score (0-1)What THI measures
Turnover – Daily USD volume ÷ market-cap
Tells you how much of the circulating supply actually changed hands.
Liquidity Pulse – Current volume ÷ 20-day average volume
Shows whether today’s flow is above or below “normal,” hinting at how easy fills will be.
Relative Volatility – ATR(14) ÷ closing price
Captures price range: you need some swing to make day-trades worthwhile.
Each raw value is min-max normalised over a user-set look-back (default 120 bars), scaled to 0-1, then blended with default weights 40 % / 30 % / 30 %.
The final THI score is therefore always between 0 (avoid) and 1 (ideal).
How to read it
THI zone Interpretation Typical action
≥ 0.80 “Hot”—ample volume and movement Size up, consider multiple setups
0.60 – 0.79 Tradable but not perfect Trade, yet tighten risk
0.40 – 0.59 Borderline Only take A-grade signals
< 0.40 Cold / illiquid Skip or scalp tiny size
Dashed guide-lines at 0.80 / 0.60 / 0.40 and color-coded histogram bars make the hot/cold zones obvious at a glance.
Session Overlay [Tokyo, London, NY]This indicator is for Distinguishing between US Tokyo/London sessions we can easily determine each of them with color in background works better on 15 minute to 1 hour time frame.
EMA 21 Distance Hist - Diamonds V2EMA distnce with 8/21 cross . Also shows mometum and 8/21 based Buy or sell
Custom EMA 5 LinesThis is a Pine Script example for 5 EMAs where each EMA can have a customizable length, and each line is set to 1 pixel width:
Moving Average RibbonShowing Multiple Moving Averages (5 MAs) in one 1 indicator. Very useful if you're still using free version of Trading View
EMA 34 & 89 OnlyThis simple and clean indicator plots two widely-used Exponential Moving Averages (EMAs): the EMA 34 and EMA 89. These EMAs help traders identify the trend direction and potential areas of dynamic support or resistance.
EMA 34 (Orange): Often used to track short-to-mid-term price momentum.
EMA 89 (Blue): Helps gauge the broader market trend.
Commonly used in trend-following strategies, the crossover between EMA 34 and EMA 89 may signal trend shifts:
Bullish signal when EMA 34 crosses above EMA 89.
Bearish signal when EMA 34 crosses below EMA 89.
Yield Curve Regime Shading with LegendTakes two symbols (e.g. two futures contracts, two FX pairs, etc.) as inputs.
Calculates the “regime” as the sign of the change in their difference over an n‑period lookback.
Lets you choose whether you want to color the bars themselves or shade the background.
How it works
Inputs
symbolA, symbolB: the two tickers you’re comparing.
n: lookback in bars to measure the change in the spread.
mode: pick between “Shading” or “Candle Color”.
Data fetching
We use request.security() to pull each series at the chart’s timeframe.
Regime calculation
spread = priceA – priceB
spreadPrev = ta.valuewhen(not na(spread), spread , 0) (i.e. the spread n bars ago)
If spread > spreadPrev → bullish regime
If spread < spreadPrev → bearish regime
Plotting
Shading: apply bgcolor() in green/red.
Candle Color: use barcolor() to override the bar color.
Rolling Correlation (Forex)//@version=5
indicator("Rolling Correlation (Forex)", shorttitle="ρ-Corr", overlay = false)
// ── User inputs ────────────────────────────────────────────────────────────────
sym1 = input.symbol("FX_IDC:EURUSD", "First symbol") // Change if your broker uses another prefix
sym2 = input.symbol("FX_IDC:GBPUSD", "Second symbol")
len = input.int(20, "Look-back length", minval = 2)
// ── Pull closing prices from both symbols on the chart’s timeframe ────────────
p1 = request.security(sym1, timeframe.period, close,
barmerge.gaps_off, barmerge.lookahead_on)
p2 = request.security(sym2, timeframe.period, close,
barmerge.gaps_off, barmerge.lookahead_on)
// ── Convert to log-returns (removes price-level bias) ─────────────────────────
r1 = math.log(p1 / p1 )
r2 = math.log(p2 / p2 )
// ── Rolling Pearson correlation ───────────────────────────────────────────────
corr = ta.correlation(r1, r2, len)
// ── Plot ──────────────────────────────────────────────────────────────────────
plot(corr, title = "ρ", linewidth = 2)
hline( 1, "+1 (perfect)", color = color.green)
hline( 0, "0", color = color.gray)
hline(-1, "-1 (inverse)", color = color.red)