Volumen Consolidado Exchanges [JoseMetal]============
ENGLISH
============
- General description:
This is a consolidated volume indicator that allows you to pick up to 10 exchanges to consolidate volume, which can be displayed split or merged.
- Features:
Shows per-exchange volume with custom exchange selection.
Able to toggle on/off each exchange.
Able to customize color for each exchange.
Toggleable total (sum) volume with custom SMA.
- Visual:
Volume is sorted from highest to lowest, so you can see every single exchange's color volume.
Accumulated volume is white, and SMA is red.
- Recommendations:
Perfect for trading with volume strategies or using as confirmation with order blocks or FVGs.
============
ESPAÑOL
============
- Descripción general:
Este es un indicador de volumen consolidado que permite seleccionar hasta 10 exchanges para consolidar el volumen, el cual puede mostrarse dividido o fusionado.
- Características:
Muestra el volumen por exchange con selección personalizada de exchanges.
Posibilidad de activar/desactivar cada exchange.
Posibilidad de personalizar el color de cada exchange.
Volumen total (suma) activable/desactivable con SMA personalizable.
- Visual:
El volumen se ordena de mayor a menor, de forma que puedes ver el volumen de color de cada exchange individual.
El volumen acumulado es blanco, y la SMA es roja.
- Recomendaciones:
Perfecto para operar con estrategias de volumen o usar como confirmación con order blocks o FVGs.
Moving Averages
8H 现货指标Fisherman Community, internal indicators for students!
The indicator uses yellow and blue K-lines to indicate the market's buy and sell signals
Daily/Weekly/Monthly Levels as per INDVIX By Biswaranjan_MDescription: This indicator dynamically draws Daily, Weekly, and Monthly range levels based on the INDIAVIX volatility index. It helps traders visualize potential price zones derived from market volatility and trend behavior.
Note: The indicator dynamically pulls the INDIAVIX value for the previous day and the previous day close of Index (Nifty 50/Bank Nifty/Sensex etc.), then calculates the daily/weekly/monthly ranges as per the user input and draws the levels on the chart as support and resistance.
Key Features:
1. INDIAVIX-Based Range Levels
Calculates projected range levels using the current or past INDIAVIX value, combined with the closing price of the stock or index.
2. Timeframe Flexibility
Choose to display Daily, Weekly, or Monthly levels — each derived from either:
- Today’s close and INDIAVIX, or
- Previous Week/Month close with the corresponding historical INDIAVIX value.
3. Historical Context Mode
Toggle historical mode to project how past levels would have looked using actual INDIAVIX values at the time.
Additional Tools:
* Day Open Line – Marks the opening price of the current trading day.
* Option to add 4 EMAs/SMAs – Moving average for trend following.
* VWAP – Volume-Weighted Average Price for intraday bias and mean reversion analysis.
* Open Range - This option plots the Open Range Box based on the first N minutes of the trading session (e.g., 15, 30, or 60 minutes) and automatically extends the range zone across the entire intraday session up to 3:30 PM.
It is designed for intraday traders, particularly those trading NSE stocks, F&O scripts, and index futures, but works globally on any market with regular intraday sessions.
This all-in-one tool gives you a volatility-informed structure for understanding intraday and positional market dynamics. Designed for any equity/index where INDIAVIX relevance applies.
Release Notes:
In this release, added an option to include a mid level between support and resistance levels.
This mid level option can be enabled or disables from indicators Input tab
Release Notes:
Just rounding down the IndiaVix number.
Release Notes:
Removed the Zero-Lag EMAs and added 4 Moving options to the indicator.
Release Notes:
Added ORB Range to this indicator
Release Notes:
Increased the support and resistance levels from maximum 5 to 10. No other changes to the indicator.
Squeeze & V8 Momentum ComboEMA Distance
8/21 Cross
B/S for initial change in signal
b/s yellow for price action second confirm.
x for 8/21 break
MandarKalgutkar-Buy/Sell Arrow Signal//@version=5
indicator("MandarKalgutkar-Buy/Sell Arrow Signal", overlay=true)
ma = ta.sma(close, 21)
rsi = ta.rsi(close, 14)
// Tracking variables
var float buyRefHigh = na
var float sellRefLow = na
var int buyCandleIndex = na
var int sellCandleIndex = na
// Detect initial breakout candle
bullishBreak = close > open and close > ma and close < ma
if bullishBreak
buyRefHigh := high
buyCandleIndex := bar_index
bearishBreak = close < open and close < ma and close > ma
if bearishBreak
sellRefLow := low
sellCandleIndex := bar_index
// Next candle only: ensure current bar is exactly next one
isNextBuyBar = (not na(buyCandleIndex)) and bar_index == buyCandleIndex + 1
isNextSellBar = (not na(sellCandleIndex)) and bar_index == sellCandleIndex + 1
// Buy/sell logic
buySignal = isNextBuyBar and high > buyRefHigh and rsi > 55
sellSignal = isNextSellBar and low < sellRefLow and rsi < 45
// Reset if signal used or next candle missed
if buySignal or isNextBuyBar
buyRefHigh := na
buyCandleIndex := na
if sellSignal or isNextSellBar
sellRefLow := na
sellCandleIndex := na
// Plot
plotshape(buySignal, title="Buy", location=location.belowbar, color=color.green, style=shape.labelup, size=size.small)
plotshape(sellSignal, title="Sell", location=location.abovebar, color=color.red, style=shape.labeldown, size=size.small)
plot(ma, "20 MA", color.orange)
Icy-Hot Visual Indicator [SciQua]🧊 Icy-Hot Visual Indicator
This indicator colors your price bars and/or chart background based on a normalized & smoothed transform of any price-based input (default: close). It gives you a quick “temperature map” of market momentum or volatility—cool blues for low readings, hot reds for high readings—without cluttering your chart.
🔍 Key Features
1. Dual Visual Layers
Candle Gradient: Applies a smooth, multi-color gradient to candle bodies and wicks based on normalized, smoothed input data
Background Gradient: Adds a semi-transparent gradient behind the candles to highlight broader trend zones or volatility regimes
2. Advanced Customization
Normalization Types: bounded, unbounded, z-score, MAD, percentile, sigmoid, tanh, rank, robust, and more
Smoothing Methods: EMA, SMA, WMA, RMA, HMA, TEMA, VWMA, Gaussian, LinReg, ExpReg, and others (12+ options)
3. Gradient Control: Choose 2–7 color stops, reverse direction, adjust display length
Flexible Source Inputs
Use any built-in price series (close, hl2, volume, etc.)
Feed outputs from external indicators (RSI, custom oscillators, moving averages) into either layer
❓How It Works
Inputs are normalized (z-score, bounded, etc.) then smoothed (EMA, LinReg, etc.) in the order you choose. The result is clamped to 0–1 and passed through a multi-stop gradient engine for precise color mapping.
✨ What Makes It Original
While many indicators apply colors or smoothing, this script combines multi-stage normalization, adaptive smoothing, and a modular gradient rendering engine in a highly customizable dual-layer system. It’s built using proprietary functions from the SciQua suite that are not available in public libraries and allow for advanced visual encoding without relying on alerts, signals, or extra panes.
This makes it original in both design and execution—offering a visual-first approach with unique depth, clarity, and flexibility.
🔐 Why This Script Is Closed-Source
While the underlying functions are published in the open-source SciQua library, this indicator’s specific implementation, configuration architecture, and visual behavior are proprietary. It combines multiple library utilities into a dual-layer adaptive system that handles advanced gradient rendering, multi-stage normalization, and smoothing pipelines in a unique way.
The source is closed to protect the design logic, interface abstraction, and fine-tuned behaviors that make this indicator commercially valuable. The building blocks are open to the Pine community, but this assembled product is not meant for replication or redistribution.
How to Use It
1. Highlight Trend Strength
Source: RSI percentile
Setup: 200-bar look-back, mild smoothing
Result: Warm tones when momentum is peaking; cool when it’s fading. Use as a quick filter for entries in the direction of the trend.
2. Visualize Volatility Regimes
Source: ATR or True Range
Setup: Bounded normalization with tighter smoothing bar color off, bg color on.
Result: Background bands that shade when volatility spikes. Helps you avoid low-volatility breakouts or throttle position sizing in choppy markets.
3. Combine with Other Indicators
Source: Output of your custom indicator (e.g., a Keltner Band width)
Setup: Match normalization period to your strategy’s timeframe
Result: Bars colored by your own logic—no extra panes, just enhanced candles.
4. Background Only Heatmap
Turn off bar coloring and dial in semi-transparent background shades—keeps candles crisp while still giving you a context heat-map behind price.
StraddleThis is an indicator for straddle on Indian markets, with hedging/with out hedging.
You can se these with super trend and ema xover
EMA RSI Volume Signal Indicator - Realtime Alerts EMA RSI Volume Signal Indicator – Realtime Alerts
This intrabar indicator is designed to provide fast, actionable buy/sell signals by combining EMA crossovers, RSI momentum, and volume strength. It’s ideal for traders who want to catch momentum moves early with visual confirmation on the chart and real-time alerts.
🔍 What It Does
The script analyzes:
EMA Crossover: 5-period EMA crossing above/below 21 EMA for trend shift
RSI Direction: Upward or downward RSI movement for momentum confirmation
Volume Bias: More buying or selling volume (based on candle direction)
It fires a Buy signal when:
5 EMA is above 21 EMA (or crossover just occurred)
RSI is rising
Green candle (close > open)
Buy volume > Sell volume
It fires a Sell signal when:
5 EMA is below 21 EMA (or crossunder just occurred)
RSI is falling
Red candle (close < open)
Sell volume > Buy volume
🟢 Buy Signal
Appears when:
Trend is bullish (EMA9 > EMA21)
RSI is increasing
Candle is bullish
Buy volume > sell volume
🟩 Green circle below the candle
📢 Realtime alert: "Realtime Buy Signal!"
🔴 Sell Signal
Appears when:
Trend is bearish (EMA9 < EMA21)
RSI is decreasing
Candle is bearish
Sell volume > buy volume
🟥 Red circle above the candle
📢 Realtime alert: "Realtime Sell Signal!"
🧠 Realtime Trigger Logic
Signals are tracked intrabar (live bar)
Only one signal per bar is allowed (prevents clutter)
Ideal for scalping or short-term momentum trading
⚙️ How to Use
Add to chart (preferably 1–15 min timeframe)
Enable TradingView alerts on "Realtime Buy Signal!" and "Realtime Sell Signal!"
Use green/red dots as trade entries
Combine with stop-loss or other exit signals for risk control
Multi-TimeFrame Trend Dashboard- AK47: SMA, RSI, MACD, ADXMulti-Timeframe Trend Dashboard: SMA, RSI, MACD, ADX
This indicator provides a multi-timeframe dashboard to visually monitor the trend status of four popular technical indicators:
SMA (Simple Moving Average)
RSI (Relative Strength Index)
MACD (Moving Average Convergence Divergence)
ADX (Average Directional Index)
✅ Each row represents a timeframe (from 5m to 1M).
✅ Each column shows the current trend direction:
— 🔵 Bullish, 🔴 Bearish, ⚫ Neutral
✅ The color-coded background helps you quickly assess strength across timeframes and indicators.
🔧 Customizable settings:
Panel position
Trend colors
Moving average & indicator lengths
This tool is ideal for traders who rely on trend alignment across multiple timeframes to make high-confidence entries and exits.
Multi-TimeFrame Trend Panel- AK47: SMA, RSI, MACD, ADX Multi-Timeframe Trend Dashboard: SMA, RSI, MACD, ADX
This indicator provides a multi-timeframe dashboard to visually monitor the trend status of four popular technical indicators:
SMA (Simple Moving Average)
RSI (Relative Strength Index)
MACD (Moving Average Convergence Divergence)
ADX (Average Directional Index)
✅ Each row represents a timeframe (from 5m to 1M).
✅ Each column shows the current trend direction:
— 🔵 Bullish, 🔴 Bearish, ⚫ Neutral
✅ The color-coded background helps you quickly assess strength across timeframes and indicators.
🔧 Customizable settings:
Panel position
Trend colors
Moving average & indicator lengths
This tool is ideal for traders who rely on trend alignment across multiple timeframes to make high-confidence entries and exits.
Xcalibur Signals & Alerts [AlgoXcalibur]An advanced trend-following algorithm forged to empower retail traders with an edge.
Xcalibur Signals & Alerts is a sophisticated, multi-layered algorithm designed to consistently deliver real-time trend signals—without clutter or unnecessary complexity. The system combines refined trend-following logic with breakout detection, flat-market filtration, false signal failsafes, take profit cues, live alerts, and more — all in a visually simple, easy-to-use indicator built for all assets, timeframes, and market conditions.
🧠 Algorithm Logic
Xcalibur Signals & Alerts operates on a systematic framework that evaluates multiple technical dimensions in harmony—directional alignment, momentum confirmation, relative strength, volume bias, breakout detection, Fibonacci calculations, and more. Rather than reacting to isolated triggers, it filters every opportunity through a multi-layered confirmation engine. It doesn’t just react to every move—it evaluates them. This cohesive approach ensures that each signal results from aligned conditions—not arbitrary thresholds. By combining structural awareness with adaptive filtering, Xcalibur maintains clarity and consistency across a wide range of market environments—delivering actionable signals without unnecessary noise or lag.
⚙️ User-Adjustable Features
• Adjustable Sensitivity:
Choose from 5 pre-tuned Signal Trigger Settings and 3 dynamic Confirmation Filter Modes to tailor the system to your trading style, asset, and timeframe. Candle color reflects the active trigger condition, while an adaptive cyan line displays the selected Confirmation Filter—blocking signals until the filter threshold is crossed.
• Directional Stability Filter: When enabled, this filter uses mean-reversion calculations to determine directional bias and block unreliable signals during choppy, indecisive price action. A magenta line represents this filter threshold and provides higher-confidence signals during periods of low directional conviction.
• Pullback Allowance Filter:
When enabled, this unique filter uses Fibonacci ratios to deliberately block signals from temporary pullbacks during strong trend periods. A green (uptrend) or red (downtrend) line marks the active pullback allowance zone.
• False Signal Failsafe
:
Two selectable modes:
Simple — Cancels the signal if price breaks the signal candle’s high or low.
Advanced — Requires both a price break and opposing momentum confirmation.
When triggered, the system plots a white “X” signal, turns candles gray, disables the background color, sends an alert (if enabled), and enters standby mode until a valid trend condition re-emerges.
• Reaction Zones:
Identifies probable reversal or breakout zones based on recent price action patterns. A yellow line appears when active, with a yellow caution flag plotted if the price reaches this critical area.
• Take-Profit Cues
: Automatically detects potential trend exhaustion using price action structure and momentum shifts. When triggered, a visual “TP” marker is plotted—advising traders to manage profits or prepare for a possible reversal.
• Trailing Stop:
Plots a dynamic, percentage-based trailing stop or trailing take-profit using your selected input. Adjust it to suit your risk tolerance and asset.
• Multi-Timeframe Monitor
: Displays real-time trend direction across 1m, 2m, 5m, 15m, 1H, 4H, and 1D timeframes in a compact, easy-to-read table.
• Alert System
:
Receive desktop and/or mobile alerts for:
* New trend signals
* Failsafe triggers
* 9:00 AM Morning Greeting messages with auto re-arming confirmation
(Alerts are limited to 9:00 AM – 4:00 PM Eastern Time)
• SuperCandles
: Highlights strong momentum moves with a stunning and easily recognizable glow effect.
• Color-Coded Candles & Background
: Candles reflect the current trigger condition, while the background tint tracks the most recent trend—enhancing situational awareness.
*All input settings include tooltips to guide users through setup and interpretation.
⚔️ Not Just Another Signal Tool
Xcalibur Signals & Alerts was built from the ground up to empower retail traders with access to a cohesive, structured algorithmic system—one that reflects the kind of awareness, discipline, and market adaptability found in professional-grade algorithms.
This is not another oversensitive or under-responsive signal indicator that is limited to one specific type of market condition or trader. It does not utilize hyperactive triggers, rely on lagging crossover logic, or need infinitely adjustable and complex sensitivity settings. Instead of cluttered visuals to interpret, this indicator delivers a simple, easy-to-use tool—prioritizing clarity and usability without compromising on depth and sophistication.
Whether the market is trending, breaking out, or moving sideways, Xcalibur adapts—prioritizing trend stability, directional integrity, and visual clarity from one signal to the next.
⚠️ While the Xcalibur Signals & Alerts algorithm is immune to human emotion, you are not. Be mindful not to fall victim to costly emotions that can manipulate your judgment, and understand the unpredictable and complex nature of trading. No algorithm, strategy, or technique can deliver perfect accuracy, and Xcalibur Signals & Alerts is no exception. While AlgoXcalibur strives to be as accurate as possible, incorrect signals can and will occur. Xcalibur Signals & Alerts is a tool, not a guarantee. Users are fully responsible for making their own trading decisions, implementing proper risk management, and always trading responsibly.
🛡️ Wield Xcalibur as a standalone weapon or use it alongside other tools.
🔐 To get access or learn more, visit the Author’s Instructions section.
Crypto Futures Master Indicator (CFMI) v3Crypto Futures Master Indicator (CFMI v3) is a confluence-based tool for Binance-style 24/7 markets. It checks six independent filters—EMA trend, RSI bias, Keltner breakout, Supertrend, AlphaTrend and MACD histogram—and prints a green ▲ or red ▼ only when at least the number of filters you set (default four) agree on the same direction. Fewer required filters give more signals; more filters give fewer but stronger ones. The script never repaints because arrows appear after the candle closes. Adjust the ATR and factor inputs to suit each coin’s volatility, pair the arrows with sensible stop-losses (e.g., Supertrend line or ATR multiple) and always back-test before going live.
Squeeze & V8 Momentum ComboEMA Distance
8/21 Cross
B/S for initial change in signal
b/s yellow for price action second confirm.
x for 8/21 break
Squeeze integrated
EMALAR_MÜCAHİD_ATAOGLUMulti-Layer EMA Calculation: Computes 40 EMAs from 25 to 1000 across short, medium, long and super-long timeframes, with optional chart display.
Volume Analysis: Compares current volume against a 20-period moving average to classify volume as “high,” “normal,” or “low.”
EMA Hierarchy & Momentum: Measures market strength by checking EMA order (bull/bear hierarchy) and both price and EMA momentum.
Visual Labels & Panel: Plots selected EMAs on the chart, adds labels for five key EMAs on the last bar, and presents a detailed info table (price position, strength level, crossovers, volume, buy/sell signals).
Alert Conditions: Sets TradingView alerts for 25/50, 50/200, 200/500, 500/1000 crosses; strong buy/sell signals; volume breakouts; and momentum triggers.
Crypto Schlingel - PVSRA POC EMA Suite v5.759
PVSRA POC EMA suite
📌 Main functions
This indicator is an all in one indicator suite that includes
- PVSRA (price, volume, support, resistance analysis)
- POC
- Visualization of bullish and bearish volume in Wicks
- EMAs and Daily EMAs (alternatively also SMA or WMA)
The following information can also be displayed
- Daily Open
- Market open
- Yesterday High and Low
- Last Weekly High and Low
- Bollinger Bands
- VWAP
- Kaufman's Adaptive Moving Average (KAMA)
- ADR
- Psy High and Low
- Pivot Points
- Overlong Wicks
- Representation Death and Golden Cross
- Pivot Point Ranges
Designed to help traders analyze volume pressures, market trends and price movements with color-coded visualizations.
PVSRA Volume Color Coding - Highlights vector candles based on extreme volume/spread conditions.
Volume Delta Analysis - Tracks buy/sell pressure based on up/down volume data.
The PVSRA color coding - The script classifies candles into four categories based on volume and spread analysis:
🔴 Red vector → Extremely bearish volume/spread
🟢 Green vector → Extremely bullish volume/spread
🟣 Violet vector → Above average bearish volume
🔵 Blue vector → Above average bullish volume
Calculation of the volume delta - Uses a volume analysis in a lower time frame, splitting the candles to get an accurate position of the volume.
Important notes:
Works best on intraday timeframes where volume data is reliable.
Volume delta estimates for lower time frames may not be accurate for all assets.
No guarantee of accuracy
Wawa Ultime V2Wawa Ultime v 2
This versatile trading indicator is designed for multiple assets including Gold, NAS100, SP500, EURUSD, and BTC. It features customizable presets for optimal parameters on each asset, including Stop Loss, Take Profit, and sweep detection settings.
Important: Parameters must be adjusted manually for each asset to ensure optimal performance.
Key features include:
• Multi-timeframe trend filtering with EMA
• Volatility filter based on ATR
• Market structure filter (higher highs/lower lows)
• Soft Order Block detection with recent zone touches for higher probability entries
• Sweep detection with multiple modes (classic, wick, BOS, engulfing, RSI)
• Session filters for London and New York
• Optional VWAP integration for improved entry quality
• Dynamic labels for entry, TP, SL, and clear buy/sell signals on the chart
• Comprehensive dashboard tracking daily, monthly, and yearly stats, win rates, and cumulative performance with a simulated 50,000€ account balance
Ideal for intraday traders seeking a flexible yet robust strategy framework adaptable to various markets and timeframes (especially 1m and 3m).
Find what works best for you and make it your own!
ParthFintech SMART-MOVE Indicator🔍 ParthFintech SMART-MOVE Indicator.V1.0
The ParthFintech SMART-MOVE Indicator.V1.0 is a precision-engineered tool developed by Parth Fintech to help traders identify high-probability trend-based entries and exits using a clean confluence of institutional-grade indicators. Whether you're a beginner or an experienced trader, this indicator provides clarity in trend direction and momentum shifts, enhancing both confidence and consistency in your trades.
📊How It Works
- The SMART-MOVE Indicator combines:
- 200 EMA: A dynamic trend filter to identify bullish and bearish market bias.
- Parabolic SAR: A powerful momentum indicator to detect price reversals and trailing stop conditions.
- Heikin Ashi or Candlestick Candles: Use either chart type to visualize trend continuation and exhaustion.
🟢 BUY & 🔴 SELL Signal Visualization
🟢 BUY Signal: Displayed as a green rectangle beneath the candle with “BUY” written in white.
Triggered when a bullish Heikin Ashi or candlestick closes above the 200 EMA and the Parabolic SAR dot appears below the candle.
🔴 SELL Signal: Displayed as a red rectangle above the candle with “SELL” written in white.
Triggered when a bearish candle closes below the 200 EMA and the Parabolic SAR dot appears above the candle.
Trade Exit Level
🔺 A red triangle marks the suggested exit for BUY trades.
🔻 A green triangle marks the suggested exit for SELL trades.
This confluence-based approach filters out noise and helps avoid false signals during sideways or volatile market conditions.
---
⚙ Best Use Guidelines
Recommended for: 15m, 1H, and 4H timeframes
- Chart Type: Heikin Ashi or Traditional Candlesticks
- Combine with the ParthFintech SMART Indicator for enhanced levels of; Support and Resistance Zones, Order Blocks (OB), Fair Value Gaps (FVGs)
This multi-indicator confluence strengthens your trade decisions with Smart Money insight.
---
🛡 Why Choose SMART-MOVE
- Built with discipline and precision in mind
- Designed for traders who value quality over quantity
- Easy-to-read signals with built-in trade management prompts
- Developed by professionals with over a decade of trading experience
---
📧 For access or support, contact: support@parth-fintech.com 📢 Telegram: @ParthFintech
Trade Smart. Trade with Us. — Parth Fintech
Rotation Strong HoldersStrong Holders Rotation
A mean reversion indicator with volatility-adjusted levels.
Concept:
The indicator is based on Mean Reversion Theory, which states that asset prices eventually return to their long-term average value. The greater the deviation from this mean value, the higher the probability of correction.
Unlike classical approaches that simply assume "the larger the deviation, the stronger the reversal," we've identified key threshold levels where reversal probability increases dramatically, generating high-confidence reversal signals.
Through extensive testing, we discovered that different stocks exhibit unique volatility profiles, making fixed threshold values ineffective. Our indicator dynamically adjusts overbought/oversold zones using:
- Beta coefficient (asset's sensitivity to market volatility)
- Multi-timeframe trend analysis (trend confirmation on higher timeframes)
- Adaptive Smoothed Moving Averages (SMMA)
---
HOW TO USE
The indicator identifies three key zones:
1. Red (Upper) - Overbought zone, likely price reversal downward
2. Blue (Middle) - Shows the asset's current position relative to green and red zones, indicating overbought or oversold conditions
3. Green (Lower) - Oversold zone, potential upward bounce
Signals:
- Buy: When the blue line enters the zone where the stock price is too low to ignore (green band indicates oversold condition)
- Sell: When the blue line enters the zone where the stock price is too high to ignore (red band indicates overbought condition)
Dynamic Levels:
The overbought/oversold zone boundaries automatically adjust based on the beta coefficient (higher volatility assets have wider ranges)
Key Settings:
- `Base Index` (SPX, NDX, DJI) - Volatility comparison benchmark
- `Beta Calculation Period` - Lookback period (default: 252 days)
---
The indicator's background serves as a supplementary confirmation signal, using higher timeframe moving average crosses:
- Red background: Consider avoiding or selling the stock
- Green background: Favorable buying conditions
---
Limitations:
- May generate false signals for:
✓ Stocks in extreme trends (e.g., NVDA during AI chip boom)
✓ Companies at risk of bankruptcy
- Not optimized for:
✓ Index trading
✓ Healthcare sector stocks
---
Squeeze & V8 Momentum ComboEMA Distance
8/21 Cross
B/S for initial change in signal
b/s yellow for price action second confirm.
x for 8/21 break
with squeeze
OBV 双线指标(支持 v6)This script displays a dual-line On-Balance Volume (OBV) indicator, consisting of:
📈 OBV Line: The classic On-Balance Volume, calculated manually based on volume flow direction.
🔴 OBV Moving Average Line: A simple moving average (SMA) of the OBV to help smooth out trends.
🟢 Golden Cross Signal: When OBV crosses above its moving average (bullish signal).
🔻 Death Cross Signal: When OBV crosses below its moving average (bearish signal).
🔔 Alert Conditions: Alerts can be set for both Golden Cross and Death Cross.
V8 Momentum Indicator - X CrossEMA Distance
8/21 Cross
B/S for initial change in signal
b/s yellow for price action second confirm.
Umile Indicatore – RSI + Stocastico + EMAs🔍 Overview: Multi-Signal Momentum Indicator
This custom TradingView indicator is a comprehensive technical toolkit combining:
RSI (Relative Strength Index)
Stochastic Oscillator with volume filter
Multi-period EMAs (Exponential Moving Averages)
Customizable visual BUY/SELL signals
It’s designed to detect potential momentum shifts, overbought/oversold conditions, and trend alignment, helping traders identify high-probability entries and exits based on layered confirmations.
🧠 Components Explained
✅ 1. RSI Logic
Detects price momentum and potential reversal zones.
Triggers a BUY signal when RSI crosses above a user-defined oversold level.
Triggers a SELL signal when RSI crosses below an overbought threshold.
You can choose the visual symbol (triangle, circle, or arrow) and set the color for each signal.
✅ 2. Stochastic Oscillator + Volume Filter
Identifies turning points based on the relationship between %K and %D lines.
Signals are only valid if:
A crossover occurs (e.g., %K crosses above %D for a BUY)
Price is in an extreme zone (below oversold or above overbought)
Volume is above its moving average — to filter out weak signals.
Also comes with symbol and color customization.
✅ 3. Exponential Moving Averages (EMAs)
Plots multiple EMAs: 50, 100, 144, 200, 300, 500, 1000.
These help assess trend strength and directional bias.
You can toggle the visibility of EMAs if needed.
✅ 4. Visual & Style Customization
Each signal type (RSI and Stochastic) allows:
Selection of plot shape: triangle, circle, or arrow
Custom BUY/SELL colors
Levels like RSI/Stoch overbought and oversold zones are also plotted for reference.
🎯 How to Use It
Look for confluence between RSI and Stochastic signals to validate entries.
Use EMAs as trend filters — e.g., only take long signals when price is above EMA200.
The volume filter on Stochastic helps reduce false signals in low-activity markets.
V8 Momentum Indicator - FinalEMA Distance
8/21 Cross
B/S for initial change in signal
b/s yellow for price action second confirm.