Moving Average Shift [Quantora]Title: Moving Average Shift
Description:
The Moving Average Shift is a dynamic technical analysis tool designed to help traders better visualize trend strength and direction using a combination of customizable moving averages and a volatility-adjusted oscillator.
🔧 Features:
Multi-Type Moving Average Selection
Choose from SMA, EMA, SMMA (RMA), WMA, and VWMA for your main signal line.
ZLSMA Trio
Three Zero-Lag Smoothed Moving Averages (ZLSMA) with adjustable lengths and colors provide a smoother trend-following structure without the delay of traditional MAs.
EMA Ribbon (50/100/200)
Add clarity to long-term trend direction with layered Exponential Moving Averages in key institutional periods.
Volatility-Adjusted Oscillator
A color-changing oscillator calculated from the normalized deviation between price and the selected MA. This helps identify trend shifts and momentum buildups.
Custom MA Line Widths and Styling
Full control over the width and appearance of all MA lines for visual clarity.
Bar & Candle Coloring
Bars and candles dynamically change color based on the relationship between price and the selected MA — helping you quickly assess bullish/bearish conditions.
📈 How It Helps:
Spot early trend shifts through the oscillator.
Confirm trades using the alignment between ZLSMAs and EMAs.
Quickly assess current trend conditions using color-coded price bars.
Volatility
20-Candle ATR in Pips (5m only)This custom indicator displays the Average True Range (ATR) over the last 20 candles on a 5-minute chart, specifically designed for pairs where 1 pip = 0.01.
Key features:
📐 Calculates a simple moving average of the true range over the last 20 five-minute candles.
📋 Outputs the ATR value in a clean table with a green background and white text.
⚠️ Designed exclusively for the 5-minute timeframe – prompts you to switch if you’re on a different one.
📏 Values are shown in pips (e.g., “ATR (20 candles): 9.83 pips”).
This tool is ideal for short-term volatility tracking, scalping strategies, and identifying market conditions where price is expanding or contracting.
Two assets correlation trackerHi, I made this simple script to see how two correlated assets are actually performing short-term. The idea comes from correlation between BTC and ETH that that usually stands 0.9 (Pearson's correlation). However Pearson's correlation doesn't indicate the relative price difference and cannot be used trading correlation when used alone.
My approach is simple - we can select the date/time from which we will start tracking the price change, and instead of tracking the price, we track 100 USD worth of BTC and ETH and how this investment perform. This gives us the price difference relative to a point in the near future, I would suggest using latest trend shift, for example.
On example of how this can be used: If we see that BTC is falling slower than ETH since trend shift, we can long BTC and short ETH in equal parts and expect to gain from the difference while hedging potential loss.
Ultimate Scalping Strategy v2Strategy Overview
This is a versatile scalping strategy designed primarily for low timeframes (like 1-min, 3-min, or 5-min charts). Its core logic is based on a classic EMA (Exponential Moving Average) crossover system, which is then filtered by the VWAP (Volume-Weighted Average Price) to confirm the trade's direction in alignment with the market's current intraday sentiment.
The strategy is highly customizable, allowing traders to add layers of confirmation, control trade direction, and manage exits with precision.
Core Strategy Logic
The strategy's entry signals are generated when two primary conditions are met simultaneously:
Momentum Shift (EMA Crossover): It looks for a crossover between a fast EMA (default length 9) and a slow EMA (default length 21).
Buy Signal: The fast EMA crosses above the slow EMA, indicating a potential shift to bullish momentum.
Sell Signal: The fast EMA crosses below the slow EMA, indicating a potential shift to bearish momentum.
Trend/Sentiment Filter (VWAP): The crossover signal is only considered valid if the price is on the "correct" side of the VWAP.
For a Buy Signal: The price must be trading above the VWAP. This confirms that, on average, buyers are in control for the day.
For a Sell Signal: The price must be trading below the VWAP. This confirms that sellers are generally in control.
Confirmation Filters (Optional)
To increase the reliability of the signals and reduce false entries, the strategy includes two optional confirmation filters:
Price Action Filter (Engulfing Candle): If enabled (Use Price Action), the entry signal is only valid if the crossover candle is also an "engulfing" candle.
A Bullish Engulfing candle is a large green candle that completely "engulfs" the body of the previous smaller red candle, signaling strong buying pressure.
A Bearish Engulfing candle is a large red candle that engulfs the previous smaller green candle, signaling strong selling pressure.
Volume Filter (Volume Spike): If enabled (Use Volume Confirmation), the entry signal must be accompanied by a surge in volume. This is confirmed if the volume of the entry candle is greater than its recent moving average (default 20 periods). This ensures the move has strong participation behind it.
Exit Strategy
A position can be closed in one of three ways, creating a comprehensive exit plan:
Stop Loss (SL): A fixed stop loss is set at a level determined by a multiple of the Average True Range (ATR). For example, a 1.5 multiplier places the stop 1.5 times the current ATR value away from the entry price. This makes the stop dynamic, adapting to market volatility.
Take Profit (TP): A fixed take profit is also set using an ATR multiplier. By setting the TP multiplier higher than the SL multiplier (e.g., 2.0 for TP vs. 1.5 for SL), the strategy aims for a positive risk-to-reward ratio on each trade.
Exit on Opposite Signal (Reversal): If enabled, an open position will be closed automatically if a valid entry signal in the opposite direction appears. For example, if you are in a long trade and a valid short signal occurs, the strategy will exit the long position immediately. This feature turns the strategy into more of a reversal system.
Key Features & Customization
Trade Direction Control: You can enable or disable long and short trades independently using the Allow Longs and Allow Shorts toggles. This is useful for trading in harmony with a higher-timeframe trend (e.g., only allowing longs in a bull market).
Visual Plots: The strategy plots the Fast EMA, Slow EMA, and VWAP on the chart for easy visualization of the setup. It also plots up/down arrows to mark where valid buy and sell signals occurred.
Dynamic SL/TP Line Plotting: A standout feature is that the strategy automatically draws the exact Stop Loss and Take Profit price lines on the chart for every active trade. These lines appear when a trade is entered and disappear as soon as it is closed, providing a clear visual of your risk and reward targets.
Alerts: The script includes built-in alertcondition calls. This allows you to create alerts in TradingView that can notify you on your phone or execute trades automatically via a webhook when a long or short signal is generated.
Currency Weekend - shading weekend trading// ─────────────────────────────────────────────────────────────────────────────
// © 2025, Steve / Steven Anthony – "Currency Weekend"
// This script highlights the low-liquidity weekend window that often affects
// both fiat currency markets and cryptocurrencies like Bitcoin.
//
// ╭─────────────────────────────── DESCRIPTION ───────────────────────────────╮
// | This indicator shades a customizable time window on your chart, |
// | originally set to highlight the **forex weekend lull** from |
// | **Friday 21:00 UTC to Sunday 21:00 UTC**, when traditional fiat |
// | currency markets close. |
// | |
// | Traders who observe Bitcoin, Ethereum, or other crypto assets may |
// | notice reduced liquidity or increased erratic moves during this time, |
// | due to overlapping behaviors from professional forex traders who |
// | trade both markets. |
// ╰──────────────────────────────────────────────────────────────────────────╯
//
// 🔧 Flexible Configuration:
// - Define your own start and end **day + time** for shading
// - Useful for shading other custom quiet periods or session transitions
//
// 💡 Use Cases:
// - Avoid trading during low-liquidity periods
// - Spot potential weekend traps or price gaps
// - Align crypto behavior with fiat market hours
//
// 📍 Default Settings:
// - Start: Friday 21:00 UTC
// - End: Sunday 21:00 UTC
//
// Timezone is normalized to the chart’s timezone for seamless integration.
//
// ─────────────────────────────────────────────────────────────────────────────
Advanced Forex Currency Strength Meter
# Advanced Forex Currency Strength Meter
🚀 The Ultimate Currency Strength Analysis Tool for Forex Traders
This sophisticated indicator measures and compares the relative strength of major currencies (EUR, GBP, USD, JPY, CHF, CAD, AUD, NZD) to help you identify the strongest and weakest currencies in real-time, providing clear trading signals based on currency strength differentials.
## 📊 What This Indicator Does
The Advanced Forex Currency Strength Meter analyzes currency relationships across 28+ major forex pairs and 8 currency indices to determine which currencies are gaining or losing strength. Instead of relying on individual pair analysis, this tool gives you a bird's-eye view of the entire forex market, helping you:
Identify the strongest and weakest currencies at any given time
Find high-probability trading opportunities by pairing strong vs weak currencies
Avoid ranging markets by detecting when currencies have similar strength
Get clear LONG/SHORT/NEUTRAL signals for your current trading pair
Optimize your trading strategy based on your preferred timeframe and holding period
## ⚙️ How The Indicator Works
### Dual Calculation Method
The indicator uses a sophisticated dual approach for maximum accuracy:
Pairs-Based Analysis: Calculates currency strength from 28+ major forex pairs (EURUSD, GBPUSD, USDJPY, etc.)
Index-Based Analysis: Incorporates official currency indices (DXY, EXY, BXY, JXY, CXY, AXY, SXY, ZXY)
Weighted Combination: Blends both methods using smart weighting for enhanced accuracy
### Smart Auto-Optimization System
The indicator automatically adjusts its parameters based on your chart timeframe and intended holding period:
The system recognizes that scalping requires different sensitivity than swing trading, automatically optimizing lookback periods, analysis timeframes, signal thresholds, and index weights.
### Strength Calculation Process
Fetches price data from multiple timeframes using optimized tuple requests
Calculates percentage change over the specified lookback period
Optionally normalizes by ATR (Average True Range) to account for volatility differences
Combines pair-based and index-based calculations using dynamic weighting
Generates relative strength by comparing base currency vs quote currency
Produces clear trading signals when strength differential exceeds threshold
## 🎯 How To Use The Indicator
### Quick Start
Add the indicator to any forex pair chart
Enable 🧠 Smart Auto-Optimization (recommended for beginners)
Watch for LONG 🚀 signals when the relative strength line is green and above threshold
Watch for SHORT 🐻 signals when the relative strength line is red and below threshold
Avoid trading during NEUTRAL ⚪ periods when currencies have similar strength
Note: This is highly recommended to couple this indicator with fundamental analysis and use it as an extra signal.
### 📋 Parameters Reference
#### 🤖 Smart Settings
🧠 Smart Auto-Optimization: (Default: Enabled) Automatically optimizes all parameters based on chart timeframe and trading style
#### ⚙️ Manual Override
These settings are only active when Smart Auto-Optimization is disabled:
Manual Lookback Period: (Default: 14) Number of periods to analyze for strength calculation
Manual ATR Period: (Default: 14) Period for ATR normalization calculation
Manual Analysis Timeframe: (Default: 240) Higher timeframe for strength analysis
Manual Index Weight: (Default: 0.5) Weight given to currency indices vs pairs (0.0 = pairs only, 1.0 = indices only)
Manual Signal Threshold: (Default: 0.5) Minimum strength differential required for trading signals
#### 📊 Display
Show Signal Markers: (Default: Enabled) Display triangle markers when signals change
Show Info Label: (Default: Enabled) Show comprehensive information label with current analysis
#### 🔍 Analysis
Use ATR Normalization: (Default: Enabled) Normalize strength calculations by volatility for fairer comparison
#### 💰 Currency Indices
💰 Use Currency Indices: (Default: Enabled) Include all 8 currency indices in strength calculation for enhanced accuracy
#### 🎨 Colors
Strong Currency Color: (Default: Green) Color for positive/strong signals
Weak Currency Color: (Default: Red) Color for negative/weak signals
Neutral Color: (Default: Gray) Color for neutral conditions
Strong/Weak Backgrounds: Background colors for clear signal visualization
### 🧠 Smart Optimization Profiles
The indicator automatically selects optimal parameters based on your chart timeframe:
#### ⚡ Scalping Profile (1M-5M Charts)
For positions held for a few minutes:
Lookback: 5 periods (fast/sensitive)
Analysis Timeframe: 15 minutes
Index Weight: 20% (favor pairs for speed)
Signal Threshold: 0.3% (sensitive triggers)
#### 📈 Intraday Profile (10M-1H Charts)
For positions held for a few hours:
Lookback: 12 periods (balanced sensitivity)
Analysis Timeframe: 4 hours
Index Weight: 40% (balanced approach)
Signal Threshold: 0.4% (moderate sensitivity)
#### 📊 Swing Profile (4H-Daily Charts)
For positions held for a few days:
Lookback: 21 periods (stable analysis)
Analysis Timeframe: Daily
Index Weight: 60% (favor indices for stability)
Signal Threshold: 0.5% (conservative triggers)
#### 📆 Position Profile (Weekly+ Charts)
For positions held for a few weeks:
Lookback: 30 periods (long-term view)
Analysis Timeframe: Weekly
Index Weight: 70% (heavily favor indices)
Signal Threshold: 0.6% (very conservative)
### Entry Timing
Wait for clear LONG 🚀 or SHORT 🐻 signals
Avoid trading during NEUTRAL ⚪ periods
Look for signal confirmations on multiple timeframes
### Risk Management
Stronger signals (higher relative strength values) suggest higher probability trades
Use appropriate position sizing based on signal strength
Consider the trading style profile when setting stop losses and take profits
💡 Pro Tip: The indicator works best when combined with your existing technical analysis. Use currency strength to identify which pairs to trade, then use your favorite technical indicators to determine when to enter and exit.
## 🔧 Key Features
28+ Forex Pairs Analysis: Comprehensive coverage of major currency relationships
8 Currency Indices Integration: DXY, EXY, BXY, JXY, CXY, AXY, SXY, ZXY for enhanced accuracy
Smart Auto-Optimization: Automatically adapts to your trading style and timeframe
ATR Normalization: Fair comparison across different currency pairs and volatility levels
Real-Time Signals: Clear LONG/SHORT/NEUTRAL signals with visual markers
Performance Optimized: Efficient tuple-based data requests minimize external calls
User-Friendly Interface: Simplified settings with comprehensive tooltips
Multi-Timeframe Support: Works on any timeframe from 1-minute to monthly charts
Transform your forex trading with the power of currency strength analysis! 🚀
Titan Wick Zone IndicatorThe Titan Wick Zone Indicator visually highlights the upper and lower wick regions of each candlestick on your chart, helping traders instantly identify areas where price was aggressively rejected (top wick) or absorbed (bottom wick). The indicator fills the area above the candle body to the wick high in red (sell zone), and the area below the candle body to the wick low in green (buy zone), both with adjustable opacity for clear visibility.
How to Use:
Spot Rejection and Absorption:
The red-filled upper wick zone marks where upward price moves were sharply rejected by sellers, often indicating supply, resistance, or “stop hunt” zones.
The green-filled lower wick zone marks where downward price moves were absorbed by buyers, pointing to potential demand, support, or accumulation zones.
Enhance Price Action Analysis:
Use these zones to avoid entering trades at price extremes, spot potential reversals, and find areas of confluence with support/resistance, Fibonacci levels, or order blocks.
Risk Management:
The indicator helps visualize where liquidity hunts or false breakouts may occur, so you can better place stop losses outside of volatile wick zones.
Ideal For:
Price action traders, scalpers, and swing traders seeking a visual edge in spotting supply/demand dynamics, liquidity zones, and wick-driven traps.
Hunting Bollinger Bands for scalping📌 Bollinger Band Reversal BUY/SELL Indicator
Name: Hunting Bollinger Bands for scalping
Purpose: Displays reversal signals for short-term scalping in range-bound markets.
Target Users: Scalpers and day traders, especially for trading Gold (XAU/USD).
Recommended Target: Works well for scalping approximately $3 price movements on Gold.
Core Logic:
Detects excessive price deviation using Bollinger Bands (±2σ).
Filters out excessive signals with a bar interval limiter.
Displays clear and simple BUY/SELL labels for entry timing.
📌 Signal Conditions
BUY
Price closes below the Lower Bollinger Band.
At least the specified number of bars has passed since the previous signal.
Displays a “BUY” label below the bar.
SELL
Price closes above the Upper Bollinger Band.
At least the specified number of bars has passed since the previous signal.
Displays a “SELL” label above the bar.
📌 Parameters
Parameter Description Default
Bollinger Band Length (bbLength) Period for Bollinger Band calculation 20
Standard Deviation (bbStdDev) Standard deviation multiplier for band width 2.0
Signal Interval (barLimit) Minimum bar interval to avoid repeated signals 10
📌 How to Use
Add the indicator to your chart; Bollinger Bands and BUY/SELL labels will appear.
When a signal appears, confirm price reaction and enter a scalp trade (around $3 for Gold is recommended).
Adjust the “Signal Interval (barLimit)” to control signal frequency.
Avoid using it during high-impact news events or strong trending markets.
📌 Best Market Conditions
Range-bound markets
Scalping small price movements (~$3)
Low-volatility sessions (e.g. Asian session for Gold)
📌 Notes
May generate frequent signals during strong trends, leading to potential losses.
Can be combined with other indicators (e.g. 200 MA, RSI, VWAP) for higher accuracy.
Signals are for reference only and should not be used as the sole trading decision factor.
📌 ボリンジャーバンド逆張りBUY/SELL インジケーター解説
名前:Hunting Bollinger Bands for scalping
目的:レンジ相場での短期的な反発を狙った逆張りシグナルを表示
対象ユーザー:スキャルピングやデイトレードで、特にゴールド(XAU/USD)での小幅な値動きを狙うトレーダー
推奨利幅:ゴールドでおよそ 3ドル前後 を目安にスキャルピングを行うと有効
メインロジック:
ボリンジャーバンド(±2σ)で過剰な価格乖離を検出
バー間隔フィルターで過剰シグナルを制御
BUY/SELLラベルで視覚的にシンプルなエントリーポイントを表示
📌 シグナル条件
BUY(買いシグナル)
現在価格が ボリンジャーバンド下限(Lower Band)を下回った時
前回シグナルから指定したバー数以上経過
この条件を満たした場合、ローソク足下に「BUY」ラベルを表示します。
SELL(売りシグナル)
現在価格が ボリンジャーバンド上限(Upper Band)を上回った時
前回シグナルから指定したバー数以上経過
この条件を満たした場合、ローソク足上に「SELL」ラベルを表示します。
📌 パラメータ
項目 説明 初期値
ボリンジャーバンド期間 (bbLength) ボリンジャーバンド計算の期間 20
標準偏差 (bbStdDev) バンド幅を決める標準偏差 2.0
シグナル間隔 (barLimit) シグナルの連続表示を防止する最小バー間隔 10
📌 使い方
インジケーターをチャートに追加すると、ボリンジャーバンドとBUY/SELLラベルが表示されます
シグナルが出たら、反発確認後にスキャルピングエントリー(ゴールドなら約3ドルを目安に)
「シグナル間隔(barLimit)」を調整して、シグナルの過剰表示を防ぐ
経済指標発表や強いトレンド発生時は使用を控える
📌 このインジケーターが向いている相場
レンジ相場
小さな値幅(約3ドル前後)を狙うスキャルピング
トレンドが弱い横ばいの時間帯(例:アジア時間のゴールドなど)
📌 注意点
強いトレンド相場では、逆張りシグナルが連続的に発生し、損切りが増える可能性あり
200MAやRSI、VWAPなど他の指標と組み合わせることで精度を高められる
シグナルは参考用であり、単独での売買判断は推奨されない
🏆 UNMITIGATED LEVELS ACCUMULATIONPDH TO ATH RISK FREE
All the PDL have a buy limit which starts at 0.1 lots which will duplicate at the same time the capital incresases. All of the buy limits have TP in ATH for max reward.
Trend Reversals(Mastersinnifty)Description
The Trend Reversals (Mastersinnifty) indicator highlights potential turning points in price direction using an ATR-based trailing stop mechanism. It provides clear trend reversal signals on the chart to help traders identify possible entry or exit points based on price behavior and volatility.
How It Works
This indicator applies a custom trailing stop logic inspired by SuperTrend-style mechanisms. It uses the Average True Range (ATR) to dynamically calculate upper and lower stop levels and monitors for price breaches that may indicate a shift in trend direction.
Trend change signals are plotted using conditional logic that compares price behavior against trailing levels, with labels appearing:
Below candles for bullish reversals
Above candles for bearish reversals
Inputs
Value for trend change – Threshold in % used to filter valid reversal signals.
ATR Periods – Number of bars for ATR calculation (internally fixed at 1 in the script).
Multiplier – Determines the sensitivity of the trailing bands (set internally).
Change ATR Type – Allows switching between standard ATR and SMA-based True Range.
Use Case
This tool is ideal for:
Spotting trend reversals early in intraday or swing trades.
Filtering false breakouts using volatility-adjusted thresholds.
Combining with other indicators like volume or oscillators for confirmation.
Use on trending instruments to ride swings more efficiently.
Disclaimer
This indicator is a technical analysis tool and does not guarantee any specific outcome. Always use with proper risk management and in conjunction with other forms of analysis. The author is not responsible for any financial losses incurred through the use of this script.
Зміщена MA з урахуванням волатильності (ATR) Long,ShortThis indicator displays a moving average (MA) line adjusted with volatility (ATR) to define dynamic long and short entry zones.
Ichimoku Trend CycleIchimoku Trend Cycle
A precision dual-trend system combining Ichimoku-based ATR Supertrends — engineered for clarity, reliability, and smart trend detection.
🔷 What is Ichimoku Trend Cycle?
The Ichimoku Trend Cycle harnesses the power of traditional Ichimoku analysis with modern ATR-based supertrend technology:
Alpha Trend: Primary trend detection using Ichimoku conversion & baseline logic
Beta Trend: Secondary confirmation trend with independent ATR calculations
Dual Confirmation Engine : Both trends must align for signal generation
This powerful combination delivers clean, non-repainting Buy/Sell signals while filtering out market noise and false breakouts.
🔍 How It Works
Blue Alpha + Red Beta Trends Align Bullish → BUY Signal
Both Trends Turn Bearish → SELL Signal
You get ONE signal per trend change — no spam, no noise, just crystal-clear direction changes.
⚙️ Core Features
✅ Ichimoku-Enhanced Supertrends
Traditional Ichimoku conversion/baseline logic powering modern ATR bands.
✅ Dual-Trend Confirmation
Alpha and Beta trends must agree — eliminates false signals.
✅ One Alert Per Trend Shift
Clean entries, zero noise, no repeated signals.
✅ Visual Excellence
Color-coded trend lines with high-contrast BUY/SELL labels.
✅ Fully Customizable
Independent settings for both trend systems plus smoothing options.
🎯 Perfect For
Swing Traders wanting confirmed trend changes
Position Traders seeking major trend shifts
Anyone who values clean charts with sharp decision points
🛠 Settings Breakdown
Alpha Trend Settings: Primary trend with conversion/baseline periods + ATR multiplier
Beta Trend Settings: Secondary confirmation trend with independent parameters
Smoothing MA Settings: Optional MA smoothing with Bollinger Bands support
Alert Settings: Customize signal confirmation periods
Candle Color Settings: Fully customizable trend and candle color schemes
✅ Built-in Smart Alerts — Never miss a trend change again
⚡ Zero-lag Performance — Works flawlessly across all timeframes
📈 Strategy-Ready Code — Professional-grade, non-repainting signals
Transform your trading with the precision of Ichimoku and the reliability of dual-trend confirmation.
MACD Indicator [CongTrader]📄 Full Description for Publishing — Advanced MACD Indicator
🔍 Advanced MACD Indicator with Alerts & Visual Zones
This advanced MACD indicator is designed for traders who want enhanced visual clarity, precision, and alert-based trading using the classic MACD formula. It features:
Customizable MACD, Signal, and Histogram lengths
Clean plotting with bullish/bearish crossover highlights
Colored histogram bars based on momentum direction
Alert conditions when MACD crosses above or below Signal
Optional zero-line display and background highlights
🛠️ How to Use:
Use default settings (12, 26, 9) or customize for faster/slower signals
Green histogram = bullish momentum, Red = bearish
Background turns green when MACD crosses above signal (buy cue)
Background turns red when MACD crosses below signal (sell cue)
Histogram bars increase or decrease as momentum strengthens or fades
This tool helps identify:
Momentum shifts
Trend continuation or reversal zones
Entry/exit timing with alerts
Works on:
Any timeframe
All markets (Crypto, Forex, Stocks, Futures)
🔔 Alerts Included:
📈 MACD Bullish Crossover → Triggered when MACD crosses above the Signal line
📉 MACD Bearish Crossover → Triggered when MACD crosses below the Signal line
You can enable these alerts via the TradingView alert system for real-time notifications.
🔎 SEO Keywords (for discovery):
MACD, MACD Histogram, MACD Alert, MACD Signal, MACD Indicator, Momentum Indicator, Advanced MACD, MACD Trading, MACD Visual, MACD Tool, MACD Buy Sell, CongTrader
🙏 Thank You
If you enjoy using this indicator, feel free to leave a thumbs up 👍, comment your thoughts, or follow me for more free trading tools. Your support keeps the community growing!
⚠️ Disclaimer
This script is for educational purposes only and does not constitute financial advice. All trading involves risk. Use this indicator with your own analysis and discretion.
✍️ Created by CongTrader — sharing quality tools for the global trading community..
RSI OB/OS Alert Indicator[CongTrader]📌 RSI OB/OS Alert Indicator by CongTrader
This is a simple yet powerful Relative Strength Index (RSI) indicator designed to help traders identify potential overbought and oversold market conditions using dynamic alerts and clean visual highlights.
🛠️ How to Use
RSI Length: Adjustable (default = 14).
Overbought Level (default = 75): When RSI crosses above this, price may be overextended.
Oversold Level (default = 25): When RSI drops below this, price may be undervalued.
Background will turn green for oversold zones and red for overbought zones.
Use alerts to get notified when RSI enters these critical zones — no need to watch the chart 24/7.
This tool is suitable for:
Scalping
Swing Trading
Range-bound Markets
Momentum Reversals
Works on any timeframe and any asset (Forex, Crypto, Stocks, Indices, Futures).
🔔 Alerts Included
“RSI Overbought” → Triggered when RSI crosses above the overbought level.
“RSI Oversold” → Triggered when RSI crosses below the oversold level.
Setup your alert by right-clicking on the chart or using the TradingView alert panel.
💬 Keywords (for search visibility)
RSI, RSI Alert, RSI Overbought, RSI Oversold, Momentum Indicator, Reversal Signal, RSI Trading, Crypto RSI, Scalping RSI, RSI Tool, RSI Visual, RSI Zones, Technical Indicator, CongTrader
🙏 Thank You
If you find this indicator useful, feel free to give it a thumbs up 👍 or comment below. Your support helps independent script developers like me continue to share free and open-source tools with the community!
⚠️ Disclaimer
This script is for educational purposes only and does not constitute financial advice. Always perform your own research before making trading decisions. Use this tool at your own risk.
✍️ Developed by CongTrader | Follow for more free indicators & tools.
Trend Strength Index [Alpha Extract]The Trend Strength Index leverages Volume Weighted Moving Average (VWMA) and Average True Range (ATR) to quantify trend intensity in cryptocurrency markets, particularly Bitcoin. The combination of VWMA and ATR is particularly powerful because VWMA provides a more accurate representation of the market's true average price by weighting periods of higher trading volume more heavily—capturing genuine momentum driven by increased participation rather than treating all price action equally, which is crucial in volatile assets like Bitcoin where volume spikes often signal institutional interest or market shifts.
Meanwhile, ATR normalizes this measurement for volatility, ensuring that trend strength readings remain comparable across different market conditions; without ATR's adjustment, raw price deviations from the mean could appear artificially inflated during high-volatility periods (like during news events or liquidations) or understated in low-volatility sideways markets, leading to misleading signals. Together, they create a volatility-adjusted, volume-sensitive metric that reliably distinguishes between meaningful trend developments and noise.
This indicator measures the normalized distance between price and its volume-weighted mean, providing a clear visualization of trend strength while accounting for market volatility. It helps traders identify periods of strong directional movement versus consolidation, with color-coded gradients for intuitive interpretation.
🔶 CALCULATION
The indicator processes price data through these analytical stages:
Volume Weighted Moving Average: Computes a smoothed average weighted by trading volume
Volatility Normalization: Uses ATR to account for market volatility
Distance Measurement: Calculates absolute deviation between current price and VWMA
Strength Normalization: Divides price deviation by ATR for a volatility-adjusted metric
Formula:
VWMA = Volume-Weighted Moving Average of Close over specified length
ATR = Average True Range over specified length
Price Distance = |Close - VWMA|
Trend Strength = Price Distance / ATR
🔶 DETAILS Visual Features:
VWMA Line: Blue line overlay on the price chart representing the volume-weighted mean
Trend Strength Area: Histogram-style area plot with dynamic color gradient (red for weak trends, transitioning through orange and yellow to green for strong trends)
Threshold Line: Horizontal red line at the customizable Trend Enter level
Background Highlight: Subtle green background when trend strength exceeds the enter threshold for strong trend visualization
Alert System: Triggers notifications for strong trend detection
Interpretation:
0-Weak (Red): Minimal trend strength, potential consolidation or ranging market
Mid-Range (Orange/Yellow): Building momentum, watch for breakout potential
At/Above Enter Threshold (Green): Strong trend conditions, potential for continued directional moves
Threshold Crossing: Trend strength crossing above the enter level signals increasing conviction in the current direction
Color Transitions: Gradual shifts from warm (red/orange) to cool (green) tones indicate strengthening trends
🔶 EXAMPLES
Strong Trend Entry: When trend strength crosses above the enter threshold (e.g., 1.2), it identifies the onset of a powerful move where price deviates significantly from the mean.
Example: During a rally, trend strength rising from yellow (around 1.0) to green (1.2+) often precedes sustained upward momentum, providing entry opportunities for trend followers.
Consolidation Detection: Low trend strength values in red shades (below 0.5) highlight periods of low volatility and mean reversion potential.
Example: After a sharp sell-off, persistent red values signal a likely sideways phase, allowing traders to avoid whipsaws and wait for orange/yellow transitions as a precursor to recovery.
Volatility-Adjusted Pullbacks: In volatile markets, the ATR component ensures trend strength remains accurate; a dip back to yellow from green during minor corrections can indicate healthy pullbacks within a strong trend.
Example: Trend strength briefly falling to yellow levels (e.g., 0.8-1.1) after hitting green provides profit-taking signals without invalidating the overall bullish bias if the VWMA holds as support.
Threshold Alert Integration: The alert condition combines strength value with the enter threshold for timely notifications.
Example: Receiving a "Strong Trend Detected" alert when the area plot turns green helps confirm Bitcoin's breakout from consolidation, aligning with increased volume for higher-probability trades.
🔶 SETTINGS
Customization Options:
Lengths: VWMA length (default 14), ATR length (default 14)
Thresholds: Trend enter (default 1.2, step 0.1), trend exit (default 1.15, for potential future signal enhancements)
Visuals: Automatic color scaling with red at 0, transitioning to green at/above enter threshold
Alert Conditions: Strong trend detection (when strength > enter)
The Trend Strength Index equips traders with a robust, easy-to-interpret tool for gauging trend intensity in volatile markets like Bitcoin. By normalizing price deviations against volatility, it delivers reliable signals for identifying high-momentum opportunities while the gradient coloring and alerts facilitate quick assessments in both trending and choppy conditions.
Z-Score Mean ReversionThe "Mean Reversion Z-Score" indicator is a statistical tool that helps traders identify potential price reversals by measuring how far the current price has deviated from its mean (average) in terms of standard deviations. Here's what it does:
Calculates the Z-score by comparing the current price to its moving average, then dividing by the standard deviation of prices over a specified period (default 14 periods).
Identifies when the price has moved too far from its mean, suggesting a potential reversion opportunity:
Values above +2 indicate overbought conditions (potential sell)
Values below -2 indicate oversold conditions (potential buy)
Generates clear visual signals:
Green triangle (▲) for buy signals when crossing above -2
Red triangle (▼) for sell signals when crossing below +2
Color-coded background for quick visual reference
Plots reference lines at ±1.5 and ±2.0 standard deviations to help gauge the strength of the current trend.
This indicator is particularly useful for range-bound markets and mean reversion trading strategies, helping traders spot potential entry and exit points based on statistical extremes.
Tradeable Candle Detection By Raja SaienTradeable Candle Detection By Raja Saien
Overview:
This advanced candle detection tool is designed to help traders identify high-quality trade setups and avoid fake moves, based on candle structure, volume, and RSI conditions. Unlike many indicators that are limited to specific sessions, this script works across all market sessions, giving you full flexibility to trade 24/7.
🔍 Key Features:
All Session Support (24/7 Trading)
Detects tradeable setups during any time of the day, including Asian, London, New York, and overlapping hours.
No restriction to any specific session — trade when the opportunity is there!
Fake Move Detection 🚫
Identifies candles with long wicks, small bodies, and low volume — typical signs of manipulation or indecision.
Displays a “No Trade Zone – Fake Move” label to help you avoid poor entries.
Real Move Detection ✅
Highlights candles with strong bodies, short wicks, and high volume — ideal conditions for trade entries.
Helps you focus only on high-probability, momentum-driven moves.
RSI-Based Confirmation
Uses RSI to ensure trade entries align with momentum:
Bullish Entry Allowed: Candle is bullish + RSI between 50–75.
Bearish Entry Allowed: Candle is bearish + RSI between 25–50.
Avoid Trades: RSI is overbought/oversold or showing divergence.
Divergence Detection
Detects bearish divergence in bullish setups and bullish divergence in bearish setups — warns against risky entries.
Visual Zones & Candle Highlights
Plots horizontal lines at candle highs/lows and extended zones based on candle range.
Dominant candles are highlighted in black for quick visual spotting.
⚙️ Custom Inputs:
Minimum Body Size Threshold
Wick-to-Body Ratio for Fake Move
Volume Strength Multiplier
Candle Dominance Precision (% of range)
RSI Period and Source
Optional session filter (can be turned off to enable all-session detection)
🛎️ Alerts Included:
✅ Long Entry Confirmed – Strong bullish candle with supporting RSI
✅ Short Entry Confirmed – Strong bearish candle with supporting RSI
🚫 Fake Move Detected – Weak structure + low volume, no trade
🧠 How to Use:
Wait for a dominant black candle to appear.
Read the label to understand:
✅ Green = Trade Allowed
⚠️ Orange = Avoid (due to RSI or divergence)
🚫 Red = Fake Move (stay out)
Combine with support/resistance, SMC, or price action strategy for confluence.
🟢 "Trade any session, any time – with confidence, precision, and control. Powered by Raja Saien."
Built for traders who value smart entries and reliable signals across all time zones.
Neural Network Buy and Sell SignalsTrend Architect Suite Lite - Neural Network Buy and Sell Signals
Advanced AI-Powered Signal Scoring
This indicator provides neural network market analysis on buy and sell signals designed for scalpers and day traders who use 30s to 5m charts. Signals are generated based on an ATR system and then filtered and scored using an advanced AI-driven system.
Features
Neural Network Signal Engine
5-Layer Deep Learning analysis combining market structure, momentum, and market state detection
AI-based Letter Grade Scoring (A+ through F) for instant signal quality assessment
Normalized Input Processing with Z-score standardization and outlier clipping
Real-time Signal Evaluation using 5 market dimensions
Advanced Candle Types
Standard Candlesticks - Raw price action
Heikin Ashi - Trend smoothing and noise reduction
Linear Regression - Mathematical trend visualization
Independent Signal vs Display - Calculate signals on one type, display another
Key Settings
Signal Configuration
- Signal Trigger Sensitivity (Default: 1.7) - Controls signal frequency vs quality
- Stop Loss ATR Multiplier (Default: 1.5) - Risk management sizing
- Signal Candle Type (Default: Candlesticks) - Data source for signal calculations
- Display Candle Type (Default: Linear Regression) - Visual candle display
Display Options
- Signal Distance (Default: 1.35 ATR) - Label positioning from price
- Label Size (Default: Medium) - Optimal readability
Trading Applications
Scalping
- Fast pace signal detection with quality filtering
- ATR-based stop management prevents signal overlap
- Neural network attempts to reduces false signals in choppy markets
Day Trading
- Multi-timeframe compatible with adaptation settings
- Clear trend visualization with Linear Regression candles
- Support/resistance integration for better entries/exits
Signal Filtering
- Use A+/A grades for highest probability setups
- B grades for confirmation in trending markets
- C-F grades help identify market uncertainty
Why Choose Trend Architect Lite?
No Lag - Real-time neural network processing
No Repainting - Signals appear and stay fixed
Clean Charts - Focus on price action, not indicators
Smart Filtering - AI reduces noise and false signals
Flexible and customizable - Works across all timeframes and instruments
Compatibility
- All Timeframes - 1m to Monthly charts
- All Instruments - Forex, Crypto, Stocks, Futures, Indices
Risk Disclaimer
This indicator is a tool for technical analysis and should not be used as the sole basis for trading decisions. Past performance does not guarantee future results. Always use proper risk management and never risk more than you can afford to lose.
CQ_[TACHIMETER]The Tachimeter Indicator: A Fun Financial Gauge
Visualizing Market Momentum in Real Time
Introduction
The Tachimeter is a playful and innovative indicator designed for those who enjoy observing the financial markets with a touch of excitement. Much like the tachometer in a car measures engine revolutions per minute, the Tachimeter measures the "revolutions" of money in the market — showing just how fast funds are moving in or out, every twenty seconds.
What Does the Tachimeter Show?
At its core, the Tachimeter displays how much money (in U.S. dollars) is shifting direction — either up or down — from the current price within a 20-second window. The indicator operates on a scale that starts at $0 (no significant movement) and extends to $1200, representing the maximum flow observed in each 20-second period.
• Scale: $0 to $1200 every 20 seconds
• Direction: Indicates if money is moving upwards (buying) or downwards (selling)
• Purpose: For entertainment and observation, not for actual trading decisions
Visual Design and Interpretation
The Tachimeter features a gauge reminiscent of a car’s tachometer. The gauge moves to show the current intensity of money flowing into or out of the market right now, providing an immediate sense of how "fast" buyers or sellers are acting.
• Gauge Indicator: The amount of squares shows the speed of ongoing transactions, just like a rev counter in a vehicle.
• Color-Coded Title: The title of the indicator switches colors based on the market’s relationship to the daily opening price:
• Red: When the current price is lower than the daily opening price, indicating downward momentum.
• Green: When the current price is higher than the daily opening price, signaling buying momentum.
How to Use the Tachimeter
This indicator is intended purely for fun — it gives you a rapid, visual sense of market activity, letting you "feel" the excitement of fluctuating prices. If you enjoy watching the markets move, the Tachimeter adds a dynamic, visceral element to your experience.
• Watch the needle twitch higher as heavy buying or selling takes place.
• Notice title color changes as the market sentiment shifts from bullish (green) to bearish (red), or vice versa.
• Use it as a conversation starter or to enhance your enjoyment of fast-paced trading sessions.
Final Thoughts
Like your car’s tachometer helps you sense when to shift gears, the Tachimeter lets you sense when the market is "revving up." It’s not a tool for serious decision-making, but it transforms raw financial data into an engaging, interactive visual — perfect for those who appreciate both finance and a bit of fun.
Enjoy watching the market’s RPMs!
BERLIN-MAX 1V.5BERLIN-MAX 1V.5 is a comprehensive trading indicator designed for TradingView that combines multiple advanced strategies and tools. It integrates EMA crossover signals, UT Bot logic with ATR-based trailing stops, customizable stop-loss and target multipliers per timeframe, Hull Moving Averages with color-coded trends, linear regression channels for support and resistance, and a multi-timeframe RSI and volume signal table. This script aims to provide clear entry and exit signals for scalping and swing trading, enhancing decision-making across different market conditions.
Time-Price Velocity [QuantAlgo]🟢 Overview
The Time-Price Velocity indicator uses advanced velocity-based analysis to measure the rate of price change normalized against typical market movement, creating a dynamic momentum oscillator that identifies market acceleration patterns and momentum shifts. Unlike traditional momentum indicators that focus solely on price change magnitude, this indicator incorporates time-weighted displacement calculations and ATR normalization to create a sophisticated velocity measurement system that adapts to varying market volatility conditions.
This indicator displays a velocity signal line that oscillates around zero, with positive values indicating upward price velocity and negative values indicating downward price velocity. The signal incorporates acceleration background columns and statistical normalization to help traders identify momentum shifts and potential reversal or continuation opportunities across different timeframes and asset classes.
🟢 How It Works
The indicator's key insight lies in its time-price velocity calculation system, where velocity is measured using the fundamental physics formula:
velocity = priceChange / timeWeight
The system normalizes this raw velocity against typical price movement using Average True Range (ATR) to create market-adjusted readings:
normalizedVelocity = typicalMove > 0 ? velocity / typicalMove : 0
where "typicalMove = ta.atr(lookback)" provides the baseline for normal price movement over the specified lookback period.
The Time-Price Velocity indicator calculation combines multiple sophisticated components. First, it calculates acceleration as the change in velocity over time:
acceleration = normalizedVelocity - normalizedVelocity
Then, the signal generation applies EMA smoothing to reduce noise while preserving responsiveness:
signal = ta.ema(normalizedVelocity, smooth)
This creates a velocity-based momentum indicator that combines price displacement analysis with statistical normalization, providing traders with both directional signals and acceleration insights for enhanced market timing.
🟢 How to Use
1. Signal Interpretation and Threshold Zones
Positive Values (Above Zero): Time-price velocity indicating bullish momentum with upward price displacement relative to normalized baseline
Negative Values (Below Zero): Time-price velocity indicating bearish momentum with downward price displacement relative to normalized baseline
Zero Line Crosses: Velocity transitions between bullish and bearish regimes, indicating potential trend changes or momentum shifts
Upper Threshold Zone: Area above positive threshold (default 1.0) indicating strong bullish velocity and potential reversal point
Lower Threshold Zone: Area below negative threshold (default -1.0) indicating strong bearish velocity and potential reversal point
2. Acceleration Analysis and Visual Features
Acceleration Columns: Background histogram showing velocity acceleration (the rate of change of velocity), with green columns indicating accelerating velocity and red columns indicating decelerating velocity. The interpretation depends on trend context: red columns in downtrends indicate strengthening bearish momentum, while red columns in uptrends indicate weakening bullish momentum
Acceleration Column Height: The height of each column represents the magnitude of acceleration, with taller columns indicating stronger acceleration or deceleration forces
Bar Coloring: Optional price bar coloring matches velocity direction for immediate visual trend confirmation
Info Table: Real-time display of current velocity and acceleration values with trend arrows and change indicators
3. Additional Features:
Confirmed vs Live Data: Toggle between confirmed (closed) bar analysis for stable signals or current bar inclusion for real-time updates
Multi-timeframe Adaptability: Velocity normalization ensures consistent readings across different chart timeframes and asset volatilities
Alert System: Built-in alerts for threshold crossovers and direction changes
🟢 Examples with Preconfigured Settings
Default : Balanced configuration suitable for most timeframes and general trading applications, providing optimal balance between sensitivity and noise filtering for medium-term analysis.
Scalping : High sensitivity setup with shorter lookback period and reduced smoothing for ultra-short-term trades on 1-15 minute charts, optimized for capturing rapid momentum shifts and frequent trading opportunities.
Swing Trading : Extended lookback period with enhanced smoothing and higher threshold for multi-day positions, designed to filter market noise while capturing significant momentum moves on 1-4 hour and daily timeframes.
ATR Squeeze BackgroundThis simple but powerful indicator shades the background of your chart whenever volatility contracts, based on a custom comparison of fast and slow ATR (Average True Range) periods.
By visualizing low-volatility zones, you can:
* Identify moments of compression that may precede explosive price moves
* Stay out of choppy, low-momentum periods
* Adapt this as a component in a broader volatility or breakout strategy
🔧 How It Works
* A Fast ATR (default: 7 periods) and a Slow ATR (default: 40 periods) are calculated
* When the Fast ATR is lower than the Slow ATR, the background is shaded in blue
* This shading signals a contraction in volatility — a condition often seen before breakouts or strong directional moves
⚡️ Why This Matters
Many experienced traders pay close attention to volatility cycles. This background indicator helps visualize those cycles at a glance. It's minimal, non-intrusive, and easy to combine with your existing tools.
🙏 Credits
This script borrows core logic from the excellent “Relative Volume at Time” script by TradingView. Credit is given with appreciation.
⚠️ Disclaimer
This script is for educational purposes only.
It does not constitute financial advice, and past performance is not indicative of future results. Always do your own research and test strategies before making trading decisions.
Market Energy – Trend vs RetestShows who is in control of the market. The red lines are sellers in control and the green are the buyers in control