MA Smoothed RSI For Loop | OpusMA Smoothed RSI For Loop | Opus
Technical Indicator Overview
The MA Smoothed RSI For Loop | Opus is an innovative technical tool 🛠️ that combines traditional RSI with multiple moving average smoothing options and a unique for-loop calculation method. This indicator provides enhanced trend detection and momentum analysis by applying customizable moving averages to the RSI calculation and implementing a weighted comparison system across multiple timeframes.
Key Features 🌟
• Multi-MA Smoothing Options ✅: Supports 8 different moving average types (EMA, SMA, WMA, VWMA, HMA, RMA, DEMA, or None) for RSI smoothing 📊
• Weighted For-Loop Analysis 🔄: Implements a sophisticated loop calculation that compares current values against historical data with optional weighting ⚡
• Dynamic Color Signals 🎨: Features customizable color themes (Synthwave, Origins, Outrun, Lush, Eighties, Sapphire, Scarlet Blues) for enhanced visual interpretation 🎯
• Comprehensive Dashboard 📊: Includes a detailed information panel with signal strength, trend direction, and duration metrics 📈
Usage Guidelines 📋
• Bullish Signal (Above Upper Threshold) ✅: Enter long positions when the indicator crosses above the upper threshold (default 40) 🚀
• Bearish Signal (Below Lower Threshold) ❌: Consider short positions when the indicator falls below the lower threshold (default -40) 🛑
• Trend Confirmation : Use the weighted for-loop calculation to confirm trend strength and direction 💪
• Signal Stars : Watch for decorative signal markers that appear at trend changes ⭐
Customizable Settings ⚙️
RSI Settings :
• Length : Adjust the RSI calculation period (default: 14) 🔧
• Source : Select price source for RSI calculation (default: close) 📊
Moving Average Options :
• Type : Choose from 8 different MA types for smoothing 📈
• Smooth Length : Set the period for MA smoothing (default: 3) ⚙️
For Loop Parameters :
• Range : Define the comparison range (default: 1 to 50) 🔄
• Weighted Calculation: Toggle weighted vs. unweighted comparison 🎚️
Threshold Settings :
• Upper Threshold: Adjust bullish signal level (default: 40) 📈
• Lower Threshold: Adjust bearish signal level (default: -40) 📉
Applications 🌍
The MA Smoothed RSI For Loop | Opus is particularly effective for:
• Trend identification and confirmation across multiple timeframes
• Momentum analysis with reduced noise through MA smoothing
• Entry and exit signal generation with customizable sensitivity
• Market regime detection through the weighted for-loop calculation
Technical Methodology (Bonus Section) 🔍
1. RSI Calculation :
• Computes traditional RSI using the specified price source and length
• Applies the selected moving average type to smooth the RSI values
2. For-Loop Analysis :
• Compares current values against historical data within the specified range
• Implements optional weighting to give more importance to recent price action
3. Signal Generation :
• Generates signals based on threshold crossings
• Calculates trend strength and duration for additional confirmation
The indicator includes built-in alerts for both long and short signals, a customizable dashboard with three display styles (Minimal, Standard, Full), decorative elements like pulse effects and signal stars for enhanced visualization, and supports multiple color themes for different visual preferences.
All under a Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0) © 2025 Opus Capital 💼.
Moving Averages
Volume Flow with Bollinger Bands and EMA Cross SignalsThe Volume Flow with Bollinger Bands and EMA Cross Signals indicator is a custom technical analysis tool designed to identify potential buy and sell signals based on several key components:
Volume Flow: This component combines price movement and trading volume to create a signal that indicates the strength or weakness of price movements. When the price is rising with increasing volume, it suggests strong buying activity, whereas falling prices with increasing volume indicate strong selling pressure.
Bollinger Bands: Bollinger Bands consist of three lines:
The Basis (middle line), which is a Simple Moving Average (SMA) of the price over a set period.
The Upper Band, which is the Basis plus a multiple of the standard deviation (typically 2).
The Lower Band, which is the Basis minus a multiple of the standard deviation. Bollinger Bands help identify periods of high volatility and potential overbought/oversold conditions. When the price touches the upper band, it might indicate that the market is overbought, while touching the lower band might indicate oversold conditions.
EMA Crossovers: The script includes two Exponential Moving Averages (EMAs):
Fast EMA: A shorter-term EMA, typically more sensitive to price changes.
Slow EMA: A longer-term EMA, responding slower to price changes. The crossover of the Fast EMA crossing above the Slow EMA (bullish crossover) signals a potential buy opportunity, while the Fast EMA crossing below the Slow EMA (bearish crossover) signals a potential sell opportunity.
Background Color and Candle Color: The indicator highlights the chart's background with specific colors based on the signals:
Green background for buy signals.
Yellow background for sell signals. Additionally, the candles are colored green for buy signals and yellow for sell signals to visually reinforce the trade opportunities.
Buy/Sell Labels: Small labels are placed on the chart:
"BUY" label in green is placed below the bar when a buy signal is generated.
"SELL" label in yellow is placed above the bar when a sell signal is generated.
Working of the Indicator:
Volume Flow Calculation: The Volume Flow is calculated by multiplying the price change (current close minus the previous close) with the volume. This product is then smoothed with a Simple Moving Average (SMA) over a user-defined period (length). The result is then multiplied by a multiplier to adjust its sensitivity.
Price Change = close - close
Volume Flow = Price Change * Volume
Smoothed Volume Flow = SMA(Volume Flow, length)
The Volume Flow Signal is then: Smooth Volume Flow * Multiplier
This calculation represents the buying or selling pressure in the market.
Bollinger Bands: Bollinger Bands are calculated using the Simple Moving Average (SMA) of the closing price (basis) and the Standard Deviation (stdev) of the price over a period defined by the user (bb_length).
Basis (Middle Band) = SMA(close, bb_length)
Upper Band = Basis + (bb_std_dev * Stdev)
Lower Band = Basis - (bb_std_dev * Stdev)
The upper and lower bands are plotted alongside the price to identify the price's volatility. When the price is near the upper band, it could be overbought, and near the lower band, it could be oversold.
EMA Crossovers: The Fast EMA and Slow EMA are calculated using the Exponential Moving Average (EMA) function. The crossovers are detected by checking:
Buy Signal (Bullish Crossover): When the Fast EMA crosses above the Slow EMA.
Sell Signal (Bearish Crossover): When the Fast EMA crosses below the Slow EMA.
The long_condition variable checks if the Fast EMA crosses above the Slow EMA, and the short_condition checks if it crosses below.
Visual Signals:
Background Color: The background is colored green for a buy signal and yellow for a sell signal. This gives an immediate visual cue to the trader.
Bar Color: The candles are colored green for buy signals and yellow for sell signals.
Labels:
A "BUY" label in green appears below the bar when the Fast EMA crosses above the Slow EMA.
A "SELL" label in yellow appears above the bar when the Fast EMA crosses below the Slow EMA.
Summary of Buy/Sell Logic:
Buy Signal:
The Fast EMA crosses above the Slow EMA (bullish crossover).
Volume flow is positive, indicating buying pressure.
Background turns green and candles are colored green.
A "BUY" label appears below the bar.
Sell Signal:
The Fast EMA crosses below the Slow EMA (bearish crossover).
Volume flow is negative, indicating selling pressure.
Background turns yellow and candles are colored yellow.
A "SELL" label appears above the bar.
Usage of the Indicator:
This indicator is designed to help traders identify potential entry (buy) and exit (sell) points based on:
The interaction of Exponential Moving Averages (EMAs).
The strength and direction of Volume Flow.
Price volatility using Bollinger Bands.
By combining these components, the indicator provides a comprehensive view of market conditions, helping traders make informed decisions on when to enter and exit trades.
DEMA SuperTrend | OpusDEMA SuperTrend | Opus
Technical Indicator Overview
The DEMA SuperTrend | Opus is an advanced trend-following indicator 🛠️ that enhances the traditional Supertrend with Double Exponential Moving Average (DEMA) smoothing for improved responsiveness and reduced lag. Overlaying directly on the price chart, this indicator offers dynamic trend detection with customizable themes, making it a versatile tool for traders navigating market movements.
Key Features 🌟
DEMA-Enhanced Supertrend ✅: Integrates DEMA smoothing (default length: 9) with Supertrend calculations for sharper trend signals.
Adaptive Trend Lines 📉: Plots uptrend and downtrend lines that adjust based on price action and volatility, with customizable color themes.
Buy & Sell Signals 🚦: Marks entry points with ▲ for long signals and ▼ for short signals when trend direction shifts.
Gradient Visualization 🎨: Features a multi-layered gradient fill between the Supertrend line and price, reflecting trend intensity with a thematic color scheme.
Customizable Themes 💡: Offers seven visual themes (Synthwave, Outrun, Lush, Eighties, Sapphire, Scarlet Blues, Origins) to personalize the display.
Custom Alerts 🔔: Provides real-time notifications for long and short signals to keep traders informed.
Usage Guidelines 📋
Long Signal (▲) ✅: Enter long positions when the trend shifts to an uptrend (marked by ▲), indicated by the uptrend line, suggesting bullish momentum.
Short Signal (▼) ❌: Exit or short when the trend shifts to a downtrend (marked by ▼), supported by the downtrend line, signaling bearish momentum.
Trend Confirmation: Follow the Supertrend line’s direction—uptrend for bullish, downtrend for bearish—to align with market trends.
Volatility Insight: Monitor gradient intensity—darker fills indicate stronger trends, while lighter fills suggest weakening momentum.
Customizable Settings ⚙️
Supertrend Parameters: Adjust Supertrend length (default: 2) and multiplier (default: 3.35) to control band sensitivity 🔧.
DEMA Settings: Set DEMA length (default: 9) and select the source (default: HLC3) for smoothing 🎚️.
Visualization Theme: Choose from Synthwave, Outrun, Lush, Eighties, Sapphire, Scarlet Blues, or Origins to customize colors 📏.
Gradient Options: Modify gradient layer count (default: 5) and opacity (max: 50) for a tailored visual effect 🖌️.
Applications 🌍
The DEMA SuperTrend | Opus is ideal for traders seeking a responsive, visually appealing tool for trend-following strategies. Its DEMA-enhanced design, thematic customization, and gradient visualization make it perfect for identifying trend direction, timing entries/exits, and adapting to various market conditions.
All under a Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0) © 2025 Opus Capital 💼.
Z SMMA | QuantEdgeB📈 Introducing Z-Score SMMA (Z SMMA) by QuantEdgeB
🛠️ Overview
Z SMMA is a momentum-driven oscillator designed to track the standardized deviation of a Smoothed Moving Average (SMMA). By applying Z-score normalization, this tool dynamically adapts to price volatility, enabling traders to detect meaningful directional shifts and trend changes with enhanced clarity.
It serves both as a trend-following and mean-reversion system, identifying opportunities through standardized thresholds while remaining robust across volatile and calm market conditions.
✨ Key Features
🔹 Z-Score Normalization Engine
Applies Z-score to a custom SMMA baseline, allowing traders to compare price action relative to its recent volatility-adjusted mean.
🔹 Dynamic Trend Detection
Generates actionable long/short signals based on customizable Z-thresholds, making it adaptable across different asset classes and timeframes.
🔹 Overbought/Oversold Zones
Highlight reversion and profit-taking zones (default OB: +2 to +4, OS: -2 to -4), great for counter-trend or mean-reversion strategies.
🔹 Visual Reinforcement Tools
Includes candle coloring, gradient fills, and optional ALMA/EMA band overlays to visualize trend regime transitions.
🔍 How It Works
1️⃣ Z-Score SMMA Calculation
The core is a custom Smoothed Moving Average (SMMA) that is normalized by its standard deviation over a lookback period.
Final Formula:
Z = (SMMA - Mean) / StdDev
2️⃣ Signal Generation
• ✅ Long Bias: Z-Score > Long Threshold (default: 0)
• ❌ Short Bias: Z-Score < Short Threshold (default: 0)
3️⃣ Visual Aids
• Candle Color → Shows trend bias
• Band Fills → Highlight trend strength
• Overlays → Optional ALMA/EMA bands for structure analysis
⚙️ Custom Settings
• SMMA Length → Default: 12
• Z-Score Lookback → Default: 30
• Long Threshold → Default: 0
• Short Threshold → Default: 0
• Color Themes → Choose from 6 visual modes
• Extra Plots → Toggle advanced overlays (ALMA, EMA, bands)
• Label Display → Show/hide “𝓛𝓸𝓷𝓰” & “𝓢𝓱𝓸𝓻𝓽” markers
👥 Who Should Use It?
✅ Trend Traders → For early entries with confirmation from Z-score expansion
✅ Quantitative Analysts → Standardized deviation enables comparison across assets
✅ Mean-Reversion Traders → Use OB/OS zones to fade parabolic spikes
✅ Swing & Systematic Traders → Identify momentum shifts with optional ALMA/EMA overlays
📌 Conclusion
Z SMMA offers a smart, adaptive framework for tracking deviation from equilibrium in a quant-friendly format. Whether you're looking to follow trends or catch exhaustion points, Z SMMA provides a clear, standardized view of momentum and price extremes.
🔹 Key Takeaways:
1️⃣ Z-Score standardization ensures dynamic range awareness
2️⃣ SMMA base filters out noise, offering smoother signals
3️⃣ Color-coded visuals support faster reaction and cleaner charts
📌 Disclaimer: Past performance is not indicative of future results. No trading strategy can guarantee success in financial markets.
📌 Strategic Advice: Always backtest, optimize, and align parameters with your trading objectives and risk tolerance before
Quantile DEMA Trend | QuantEdgeB🚀 Introducing Quantile DEMA Trend (QDT) by QuantEdgeB
🛠️ Overview
Quantile DEMA Trend (QDT) is an advanced trend-following and momentum detection indicator designed to capture price trends with superior accuracy. Combining DEMA (Double Exponential Moving Average) with SuperTrend and Quantile Filtering, QDT identifies strong trends while maintaining the ability to adapt to various market conditions.
Unlike traditional trend indicators, QDT uses percentile filtering to adjust for volatility and provides dynamic thresholds, ensuring consistent signal performance across different assets and timeframes.
✨ Key Features
🔹 Trend Following with Adaptive Sensitivity
The DEMA component ensures quicker responses to price changes while reducing lag, offering a real-time reflection of market momentum.
🔹 Volatility-Adjusted Filtering
The SuperTrend logic incorporates quantile percentile filters and ATR (Average True Range) multipliers, allowing QDT to adapt to fluctuating market volatility.
🔹 Clear Signal Generation
QDT generates clear Long and Short signals using percentile thresholds, effectively identifying trend changes and market reversals.
🔹 Customizable Visual & Signal Settings
With multiple color modes and customizable settings, you can easily align the QDT indicator with your trading strategy, whether you're focused on trend-following or volatility adjustments.
📊 How It Works
1️⃣ DEMA Calculation
DEMA is used to reduce lag compared to traditional moving averages. It is calculated by applying a Double Exponential Moving Average to price data. This smoother trend-following mechanism ensures responsiveness to market movements without introducing excessive noise.
2️⃣ SuperTrend with Percentile Filtering
The SuperTrend component adapts the trend-following signal by incorporating quantile percentile filters. It identifies dynamic support and resistance levels based on historical price data:
• Upper Band: Calculated using the 75th percentile + ATR (adjusted with multiplier)
• Lower Band: Calculated using the 25th percentile - ATR (adjusted with multiplier)
These dynamic bands adjust to market conditions, filtering out noise while identifying the true direction.
3️⃣ Signal Generation
• Long Signal: Triggered when price crosses below the SuperTrend Lower Band
• Short Signal: Triggered when price crosses above the SuperTrend Upper Band
The indicator provides signals with corresponding trend direction based on these crossovers.
👁 Visual & Custom Features
• 🎨 Multiple Color Modes: Choose from "Strategy", "Solar", "Warm", "Cool", "Classic", and "Magic" color palettes to match your charting style.
• 🏷️ Long/Short Signal Labels: Optional labels for visual cueing when a long or short trend is triggered.
• 📉 Bar Color Customization: Bar colors dynamically adjust based on trend direction to visually distinguish the market bias.
👥 Who Should Use QDT?
✅ Trend Followers: Use QDT as a dynamic tool to confirm trends and capture profits in trending markets.
✅ Swing Traders: Use QDT to time entries based on confirmed breakouts or breakdowns.
✅ Volatility Traders: Identify market exhaustion or expansion points, especially during volatile periods.
✅ Systematic & Quant Traders: Integrate QDT into algorithmic strategies to enhance market detection with adaptive filtering.
⚙️ Customization & Default Settings
- DEMA Length(30): Controls the lookback period for DEMA calculation
- Percentile Length(10): Sets the lookback period for percentile filtering
- ATR Length(14): Defines the length for calculating ATR (used in SuperTrend)
- ATR Multiplier(1.2 ): Multiplier for ATR in SuperTrend calculation
- SuperTrend Length(30):Defines the length for SuperTrend calculations
📌 How to Use QDT in Trading
1️⃣ Trend-Following Strategy
✔ Enter Long positions when QDT signals a bullish breakout (price crosses below the SuperTrend lower band).
✔ Enter Short positions when QDT signals a bearish breakdown (price crosses above the SuperTrend upper band).
✔ Hold positions as long as QDT continues to provide the same direction.
2️⃣ Reversal Strategy
✔ Take profits when price reaches extreme levels (upper or lower percentile zones) that may indicate trend exhaustion or reversion.
3️⃣ Volatility-Driven Entries
✔ Use the percentile filtering to enter positions based on mean-reversion logic or breakout setups in volatile markets.
🧠 Why It Works
QDT combines the DEMA’s quick response to price changes with SuperTrend's volatility-adjusted thresholds, ensuring a responsive and adaptive indicator. The use of percentile filters and ATR multipliers helps adjust to varying market conditions, making QDT suitable for both trending and range-bound environments.
🔹 Conclusion
The Quantile DEMA Trend (QDT) by QuantEdgeB is a powerful, adaptive trend-following and momentum detection system. By integrating DEMA, SuperTrend, and quantile percentile filtering, it provides accurate and timely signals while adjusting to market volatility. Whether you are a trend follower or volatility trader, QDT offers a robust solution to identify high-probability entry and exit points.
🔹 Key Takeaways:
1️⃣ Trend Confirmation – Uses DEMA and SuperTrend for dynamic trend detection
2️⃣ Volatility Filtering – Adjusts to varying market conditions using percentile logic
3️⃣ Clear Signal Generation – Easy-to-read signals and visual cues for strategy implementation
📌 Disclaimer: Past performance is not indicative of future results. No trading strategy can guarantee success in financial markets.
📌 Strategic Advice: Always backtest, optimize, and align parameters with your trading objectives and risk tolerance before live trading.
Gaussian Smooth Trend | QuantEdgeB🧠 Introducing Gaussian Smooth Trend (GST) by QuantEdgeB
🛠️ Overview
Gaussian Smooth Trend (GST) is an advanced volatility-filtered trend-following system that blends multiple smoothing techniques into a single directional bias tool. It is purpose-built to reduce noise, isolate meaningful price shifts, and deliver early trend detection while dynamically adapting to market volatility.
GST leverages the Gaussian filter as its core engine, wrapped in a layered framework of DEMA smoothing, SMMA signal tracking, and standard deviation-based breakout thresholds, producing a powerful toolset for trend confirmation and momentum-based decision-making.
🔍 How It Works
1️⃣ DEMA Smoothing Engine
The indicator begins by calculating a Double Exponential Moving Average (DEMA), which provides a responsive and noise-resistant base input for subsequent filtering.
2️⃣ Gaussian Filter
A custom Gaussian kernel is applied to the DEMA signal, allowing the system to detect smooth momentum shifts while filtering out short-term volatility.
This is especially powerful during low-volume or sideways markets where traditional MAs struggle.
3️⃣ SMMA Layer with Z-Filtering
The filtered Gaussian signal is then passed through a custom Smoothed Moving Average (SMMA). A standard deviation envelope is constructed around this SMMA, dynamically expanding/contracting based on market volatility.
4️⃣ Signal Generation
• ✅ Long Signal: Price closes above Upper SD Band
• ❌ Short Signal: Price closes below Lower SD Band
• ➖ No trade: Price stays within the band → market indecision
✨ Key Features
🔹 Multi-Stage Trend Detection
Combines DEMA → Gaussian Kernel → SMMA → SD Bands for robust signal integrity across market conditions.
🔹 Gaussian Adaptive Filtering
Applies a tunable sigma parameter for the Gaussian kernel, enabling you to fine-tune smoothness vs. responsiveness.
🔹 Volatility-Aware Trend Zones
Price must close outside of dynamic SD envelopes to trigger signals — reducing whipsaws and increasing signal quality.
🔹 Dynamic Color-Coded Visualization
Candle coloring and band fills reflect live trend state, making the chart intuitive and fast to read.
⚙️ Custom Settings
• DEMA Source: Price stream used for smoothing (default: close)
• DEMA Length: Period for initial exponential smoothing (default: 7)
• Gaussian Length / Sigma: Controls smoothing strength of kernel filter
• SMMA Length: Final smoothing layer (default: 12)
• SD Length: Lookback period for standard deviation filtering (default: 30)
• SD Mult Up / Down: Adjusts distance of upper/lower breakout zones (default: 2.5 / 1.8)
• Color Modes: Six distinct color palettes (e.g., Strategy, Warm, Cool)
• Signal Labels: Toggle on/off entry markers ("𝓛𝓸𝓷𝓰", "𝓢𝓱𝓸𝓻𝓽")
📌 Trading Applications
✅ Trend-Following → Enter on confirmed breakouts from Gaussian-smoothed volatility zones
✅ Breakout Validation → Use SD bands to avoid false breakouts during chop
✅ Volatility Compression Monitoring → Narrowing bands often precede large directional moves
✅ Overlay-Based Confirmation → Can complement other QuantEdgeB indicators like K-DMI, BMD, or Z-SMMA
📌 Conclusion
Gaussian Smooth Trend (GST) delivers a precision-built trend model tailored for modern traders who demand both clarity and control. The layered signal architecture, combined with volatility awareness and Gaussian signal enhancement, ensures accurate entries, clean visualizations, and actionable trend structure — all in real-time.
🔹 Summary Highlights
1️⃣ Multi-stage Smoothing — DEMA → Gaussian → SMMA for deep signal integrity
2️⃣ Volatility-Aware Filtering — SD bands prevent false entries
3️⃣ Visual Trend Mapping — Gradient fills + candle coloring for clean charts
4️⃣ Highly Customizable — Adapt to your timeframe, style, and volatility
📌 Disclaimer: Past performance is not indicative of future results. No trading strategy can guarantee success in financial markets.
📌 Strategic Advice: Always backtest, optimize, and align parameters with your trading objectives and risk tolerance before live trading.
P-Motion Trend | QuantEdgeB⚡ Introducing P-Motion Trend (PMT) by QuantEdgeB
🧭 Overview
P-Motion Trend is a refined trend-following framework built for modern market dynamics. It combines DEMA filtering, percentile-based smoothing, and volatility-adjusted envelopes to create a clear, noise-filtered trend map directly on your chart.
This overlay indicator is engineered to detect breakout zones, trend continuation setups, and market regime shifts with maximum clarity and minimum lag.
Whether you're swing trading crypto, managing intraday FX moves, or positioning in equities — P-Motion Trend adapts, aligns, and simplifies.
🧠 Core Logic
1️⃣ DEMA Filtering Core
The input source is processed through a Double EMA to reduce lag while retaining trend sensitivity.
2️⃣ Percentile Median Smoothing
To eliminate short-lived spikes, the DEMA output is passed through a percentile median rank — effectively smoothing without distortion.
3️⃣ Volatility Envelope with EMA Basis
An exponential moving average (EMA) is applied to the smoothed median, and standard deviation bands are wrapped around it:
• ✅ Long Signal → Price closes above the upper band
• ❌ Short Signal → Price closes below the lower band
• ➖ Inside Band = Neutral
These bands expand/contract with market volatility — protecting against false breakouts in quiet regimes and adapting quickly to strong moves.
📊 Visual & Analytical Layers
• 🎯 Bar Coloring: Color-coded candles highlight trend state at a glance.
• 📈 EMA Ribbon Overlay: A dynamic ribbon of EMAs helps confirm internal momentum and detect transitions (trend decay or acceleration).
• 🔹Gradient Fill Zones: Visually communicates squeeze vs. expansion phases based on band width.
⚙️ Custom Settings
• EMA Length – Defines the core trend path (default: 21)
• SD Length – Controls volatility band smoothing (default: 30)
• SD Mult Up/Down – Sets thresholds for breakout confirmation (default: 1.5)
• DEMA Filter Source – Raw input used for trend processing
• DEMA Filter Length – Sets DEMA smoothing (default: 7)
• Median Length – Percentile-based smoothing window (default: 2)
📌 Use Cases
✅ Trend Confirmation
Use PMT to confirm whether the price action is structurally valid for trend continuation. A close above the upper band signals entry alignment.
🛡️ Reversal Guard
Avoid early reversion entries. PMT keeps you in-trend until price truly breaks structure.
🔍 Momentum Visualizer
With multiple EMA bands, the indicator also functions as a momentum envelope to spot divergence between price and smoothed trend flow.
🔚 Conclusion
P-Motion Trend is a hybrid volatility + trend system built with precision smoothing, dynamic filtering, and clean visual output. It balances agility with stability, helping you:
• Filter out price noise
• Enter with structure
• Stay in trades longer
• Exit with confidence
🧩 Summary of Benefits
• 🔹 Lag-minimized trend structure via DEMA core
• 🔹 Real-time volatility band adaptation
• 🔹 Gradient visual feedback on compression/expansion
• 🔹 EMA ribbon assists in phase detection
• 🔹 Suitable for all markets & timeframes
📌 Disclaimer: Past performance is not indicative of future results. No trading strategy can guarantee success in financial markets.
📌 Strategic Advice: Always backtest, optimize, and align parameters with your trading objectives and risk tolerance before live trading.
DEGA RMA | QuantEdgeB🧠 Introducing DEGA RMA (DGR ) by QuantEdgeB
🛠️ Overview
DEGA RMA (DGR) is a precision-engineered trend-following system that merges DEMA, Gaussian kernel smoothing, and ATR-based envelopes into a single, seamless overlay indicator. Its mission: to filter out market noise while accurately capturing directional bias using a layered volatility-sensitive trend core.
DGR excels at identifying valid breakouts, sustained momentum conditions, and trend-defining price behavior without falling into the trap of frequent signal reversals.
🔍 How It Works
1️⃣ Double Exponential Moving Average (DEMA)
The system begins by applying a DEMA to the selected price source. DEMA responds faster than a traditional EMA, making it ideal for capturing transitions in momentum.
2️⃣ Gaussian Filtering
A custom Gaussian kernel is used to smooth the DEMA signal. The Gaussian function applies symmetrical weights, centered around the most recent bar, effectively softening sharp price oscillations while preserving the underlying trend structure.
3️⃣ Recursive Moving Average (RMA) Core
The filtered Gaussian output is then processed through an RMA to generate a stable dynamic baseline. This baseline becomes the foundation for the final trend logic.
4️⃣ ATR-Scaled Breakout Zones
Upper and lower trend envelopes are calculated using a custom ATR filter built on DEMA-smoothed volatility.
• ✅ Long Signal when price closes above the upper envelope
• ❌ Short Signal when price closes below the lower envelope
• ➖ Neutral when inside the band (no signal noise)
✨ Key Features
🔹 Multi-Layer Trend Model
DEMA → Gaussian → RMA creates a signal structure that is both responsive and robust.
🔹 Volatility-Aware Entry System
Adaptive ATR bands adjust in real-time, expanding during high volatility and contracting during calm periods.
🔹 Noise-Reducing Gaussian Kernel
Sigma-adjustable kernel ensures signal smoothness without introducing excessive lag.
🔹 Clean Visual System
Candle coloring and band fills make trend state easy to read and act on at a glance.
⚙️ Custom Settings
• DEMA Source – Input source for trend core (default: close)
• DEMA Length – Length for initial smoothing (default: 30)
• Gaussian Filter Length – Determines smoothing depth (default: 4)
• Gaussian Sigma – Sharpness of Gaussian curve (default: 2.0)
• RMA Length – Core baseline smoothing (default: 12)
• ATR Length – Volatility detection period (default: 40)
• ATR Mult Up/Down – Controls the upper/lower threshold range for signals (default: 1.7)
📌 How to Use
1️⃣ Trend-Following Mode
• Go Long when price closes above the upper ATR band
• Go Short when price closes below the lower ATR band
• Remain neutral otherwise
2️⃣ Breakout Confirmation Tool
DGR’s ATR-based zone logic helps validate price breakouts and filter out false signals that occur inside compressed ranges.
3️⃣ Volatility Monitoring
Watch the ATR envelope width — a narrowing band often precedes expansion and potential directional shifts.
📌 Conclusion
DEGA RMA (DGR) is a thoughtfully constructed trend-following framework that goes beyond basic moving averages. Its Gaussian smoothing, adaptive ATR thresholds, and layered filtering logic provide a versatile solution for traders looking for cleaner signals, less noise, and real-time trend awareness.
Whether you're trading crypto, forex, or equities — DGR adapts to volatility while keeping your chart clean and actionable.
🔹 Summary
• ✅ Advanced Smoothing → DEMA + Gaussian + RMA = ultra-smooth trend core
• ✅ Volatility-Adjusted Zones → ATR envelope scaling removes whipsaws
• ✅ Fully Customizable → Tailor to any asset or timeframe
• ✅ Quant-Inspired Structure → Built for clarity, consistency, and confidence
📌 Disclaimer: Past performance is not indicative of future results. No trading strategy can guarantee success in financial markets.
📌 Strategic Advice: Always backtest, optimize, and align parameters with your trading objectives and risk tolerance before live trading.
6F SignalsRelease Notes
"6F Signals (With Labels) - Alternating" is a powerful Pine Script (version 5) indicator designed for TradingView, overlaying directly on your price chart to deliver clear buy and sell signals based on Heikin Ashi (HA) candlestick patterns. This indicator leverages HA’s smoothing capabilities to identify trend reversals and generate alternating signals, making it an intuitive tool for traders seeking precise entry and exit points.
Key Features
Heikin Ashi Integration: Calculates HA values (open, high, low, close) from raw OHLC data to reduce market noise and highlight trends more effectively than traditional candlesticks.
C Candle Detection: Identifies "C Candles" at trend reversal points (bullish to bearish or vice versa), using these as key reference levels for signal generation.
Alternating Signals: Generates buy signals when the HA close crosses above a C Candle’s high and sell signals when it crosses below a C Candle’s low, ensuring only the first signal per trend change is triggered to avoid repetition.
Visual Elements:
Lines: Plots solid blue lines (default) from a C Candle’s high to the buy signal bar and solid red lines (default) from a C Candle’s low to the sell signal bar, both with a 2-pixel width for clarity.
Labels: Displays green "Buy: " labels below the signal bar for buy signals and red "Sell: " labels above the signal bar for sell signals, showing the exact closing price.
Customization: Allows users to adjust the high line color (default blue) and low line color (default red) via input settings, tailoring the visuals to personal chart preferences.
How It Works
Trend Detection: Uses Heikin Ashi close and open prices to determine bullish (close > open) or bearish (close < open) trends.
C Candle Identification: Marks a C Candle when a trend reversal occurs, storing its high and low prices and bar index.
Signal Logic: Triggers a buy signal when the HA close exceeds the C Candle high or a sell signal when it falls below the C Candle low, but only after the C Candle bar and if no prior signal has been triggered for that reversal. Signals alternate to maintain clarity (e.g., a buy follows a sell, not another buy).
Visualization: Draws horizontal lines from the C Candle to the signal bar and adds labels at the signal point, making it easy to spot trading opportunities.
Visual Description
On your chart, you’ll see:
Candlesticks overlaid with blue and red horizontal lines connecting C Candles to signal bars.
Green "Buy: " labels below bullish candles where buy signals occur (e.g., "Buy: 98305").
Red "Sell: " labels above bearish candles where sell signals occur (e.g., "Sell: 91552.88").
Lines are solid, stopping at the signal bar, ensuring a clean and focused display.
Ideal For
Trend Traders: Perfect for those following reversals or momentum shifts using Heikin Ashi.
Visual Learners: Suits traders who prefer clear, labeled signals over complex calculations.
Customizers: Offers flexibility with adjustable line colors to match any chart theme.
Customization Options
High Line Color: Default blue, adjustable in settings.
Low Line Color: Default red, adjustable in settings.
Why Use It?
"6F Signals (With Labels) - Alternating" simplifies trend reversal trading by combining Heikin Ashi’s noise reduction with precise, alternating signals. Its visual clarity—through colored lines and labeled prices—helps traders act confidently without second-guessing. Test it on your charts to enhance your strategy with a straightforward, effective tool tailored for TradingView!
Feb 28
Release Notes
The 6F Signals (With Labels) - Alternating indicator is a versatile and visually intuitive tool designed to help traders identify potential buy and sell opportunities using Heikin Ashi (HA) trend analysis. By smoothing price action and detecting key reversal points, this indicator generates actionable signals overlaid directly on your chart, making it ideal for swing traders and trend followers.
Key Features:
Heikin Ashi-Based Analysis: Calculates its own HA values from raw OHLC data to smooth price fluctuations and enhance trend detection, independent of your chart’s display settings.
C Candle Detection: Identifies "C Candles" at points where the HA trend reverses (e.g., from bullish to bearish or vice versa), marking potential support and resistance zones.
Breakout Signals:
Buy Signal: Triggered when the HA close crosses above the high of the most recent C Candle, suggesting a potential upward breakout.
Sell Signal: Triggered when the HA close crosses below the low of the most recent C Candle, indicating a potential downward breakout.
Alternating Logic: Ensures signals alternate between buy and sell, allowing only one signal per C Candle to capture market swings and prevent consecutive signals of the same type.
Visual Indicators:
Horizontal Lines: Teal lines (high) and maroon lines (low) connect the C Candle’s high and low levels to the signal bar, highlighting key price levels.
Labels: Clear "Buy: " and "Sell: " labels appear at signal points, displaying the raw closing price for precise entry/exit reference.
Customizable Colors: Adjust the high and low line colors via input settings to match your chart preferences.
How It Works:
Trend Reversal Detection: The indicator uses HA calculations to detect trend changes, labeling these points as C Candles based on shifts in bullish (HA close > HA open) or bearish (HA close < HA open) conditions.
Signal Generation:
A buy signal occurs when the HA close breaks above the C Candle’s high.
A sell signal occurs when the HA close breaks below the C Candle’s low.
Signal Control: Only one signal is allowed per C Candle, and signals must alternate (e.g., a buy cannot follow another buy), ensuring a balanced trading approach.
Visualization:
Solid teal lines (width 2) extend from the C Candle’s high to the buy/sell signal bar.
Solid maroon lines (width 2) extend from the C Candle’s low to the signal bar.
Labels are placed below bars for buys (teal, semi-transparent) and above bars for sells (gray, semi-transparent), showing the raw close price.
Usage Tips:
Chart Compatibility: Works on any chart type (regular candlesticks or Heikin Ashi) since it calculates HA values internally from raw OHLC data.
Confirmation: Combine with other indicators (e.g., moving averages, volume) or price action analysis to validate signals and refine your trading strategy.
Customization: Modify the teal (high) and maroon (low) line colors in the settings to suit your visual preferences or chart theme.
Timeframes: Effective on various timeframes, though it shines in swing trading setups on daily or higher charts (e.g., 1D, as seen in BTC/USD examples).
Notes:
Price Display: Labels show the actual (raw) closing price at the signal bar, not the HA close, providing real-world entry/exit levels.
Signal Clarity: Cyan dots mark buy signals, and red dots mark sell signals on some chart setups, enhancing visibility alongside the labels and lines.
This indicator offers a systematic way to spot trend-driven opportunities, leveraging Heikin Ashi’s smoothing effect to reduce noise and focus on significant price movements. Whether you’re trading cryptocurrencies like BTC/USD or other assets, the 6F Signals indicator provides clear, actionable insights with a professional and user-friendly design.
Feb 28
Release Notes
The 6F Signals (With Labels) - Alternating indicator is a versatile and visually intuitive tool designed to help traders identify potential buy and sell opportunities using Heikin Ashi (HA) trend analysis. By smoothing price action and detecting key reversal points, this indicator generates actionable signals overlaid directly on your chart, making it ideal for swing traders and trend followers.
Key Features:
Heikin Ashi-Based Analysis: Calculates its own HA values from raw OHLC data to smooth price fluctuations and enhance trend detection, independent of your chart’s display settings.
C Candle Detection: Identifies "C Candles" at points where the HA trend reverses (e.g., from bullish to bearish or vice versa), marking potential support and resistance zones.
Breakout Signals:
Buy Signal: Triggered when the HA close crosses above the high of the most recent C Candle, suggesting a potential upward breakout.
Sell Signal: Triggered when the HA close crosses below the low of the most recent C Candle, indicating a potential downward breakout.
Alternating Logic: Ensures signals alternate between buy and sell, allowing only one signal per C Candle to capture market swings and prevent consecutive signals of the same type.
Visual Indicators:
Horizontal Lines: Teal lines (high) and maroon lines (low) connect the C Candle’s high and low levels to the signal bar, highlighting key price levels.
Labels: Clear "Buy: " and "Sell: " labels appear at signal points, displaying the raw closing price for precise entry/exit reference.
Customizable Colors: Adjust the high and low line colors via input settings to match your chart preferences.
How It Works:
Trend Reversal Detection: The indicator uses HA calculations to detect trend changes, labeling these points as C Candles based on shifts in bullish (HA close > HA open) or bearish (HA close < HA open) conditions.
Signal Generation:
A buy signal occurs when the HA close breaks above the C Candle’s high.
A sell signal occurs when the HA close breaks below the C Candle’s low.
Signal Control: Only one signal is allowed per C Candle, and signals must alternate (e.g., a buy cannot follow another buy), ensuring a balanced trading approach.
Visualization:
Solid teal lines (width 2) extend from the C Candle’s high to the buy/sell signal bar.
Solid maroon lines (width 2) extend from the C Candle’s low to the signal bar.
Labels are placed below bars for buys (teal, semi-transparent) and above bars for sells (gray, semi-transparent), showing the raw close price.
Usage Tips:
Chart Compatibility: Works on any chart type (regular candlesticks or Heikin Ashi) since it calculates HA values internally from raw OHLC data.
Confirmation: Combine with other indicators (e.g., moving averages, volume) or price action analysis to validate signals and refine your trading strategy.
Customization: Modify the teal (high) and maroon (low) line colors in the settings to suit your visual preferences or chart theme.
Timeframes: Effective on various timeframes, though it shines in swing trading setups on daily or higher charts (e.g., 1D, as seen in BTC/USD examples).
Notes:
Price Display: Labels show the actual (raw) closing price at the signal bar, not the HA close, providing real-world entry/exit levels.
Signal Clarity: Cyan dots mark buy signals, and red dots mark sell signals on some chart setups, enhancing visibility alongside the labels and lines.
This indicator offers a systematic way to spot trend-driven opportunities, leveraging Heikin Ashi’s smoothing effect to reduce noise and focus on significant price movements. Whether you’re trading cryptocurrencies like BTC/USD or other assets, the 6F Signals indicator provides clear, actionable insights with a professional and user-friendly design.
Feb 28
Release Notes
The 6F Signals (With Labels) - Alternating indicator is a versatile and visually intuitive tool designed to help traders identify potential buy and sell opportunities using Heikin Ashi (HA) trend analysis. By smoothing price action and detecting key reversal points, this indicator generates actionable signals overlaid directly on your chart, making it ideal for swing traders and trend followers.
Key Features:
Heikin Ashi-Based Analysis: Calculates its own HA values from raw OHLC data to smooth price fluctuations and enhance trend detection, independent of your chart’s display settings.
C Candle Detection: Identifies "C Candles" at points where the HA trend reverses (e.g., from bullish to bearish or vice versa), marking potential support and resistance zones.
Breakout Signals:
Buy Signal: Triggered when the HA close crosses above the high of the most recent C Candle, suggesting a potential upward breakout.
Sell Signal: Triggered when the HA close crosses below the low of the most recent C Candle, indicating a potential downward breakout.
Alternating Logic: Ensures signals alternate between buy and sell, allowing only one signal per C Candle to capture market swings and prevent consecutive signals of the same type.
Visual Indicators:
Horizontal Lines: Teal lines (high) and maroon lines (low) connect the C Candle’s high and low levels to the signal bar, highlighting key price levels.
Labels: Clear "Buy: " and "Sell: " labels appear at signal points, displaying the raw closing price for precise entry/exit reference.
Customizable Colors: Adjust the high and low line colors via input settings to match your chart preferences.
How It Works:
Trend Reversal Detection: The indicator uses HA calculations to detect trend changes, labeling these points as C Candles based on shifts in bullish (HA close > HA open) or bearish (HA close < HA open) conditions.
Signal Generation:
A buy signal occurs when the HA close breaks above the C Candle’s high.
A sell signal occurs when the HA close breaks below the C Candle’s low.
Signal Control: Only one signal is allowed per C Candle, and signals must alternate (e.g., a buy cannot follow another buy), ensuring a balanced trading approach.
Visualization:
Solid teal lines (width 2) extend from the C Candle’s high to the buy/sell signal bar.
Solid maroon lines (width 2) extend from the C Candle’s low to the signal bar.
Labels are placed below bars for buys (teal, semi-transparent) and above bars for sells (gray, semi-transparent), showing the raw close price.
Usage Tips:
Chart Compatibility: Works on any chart type (regular candlesticks or Heikin Ashi) since it calculates HA values internally from raw OHLC data.
Confirmation: Combine with other indicators (e.g., moving averages, volume) or price action analysis to validate signals and refine your trading strategy.
Customization: Modify the teal (high) and maroon (low) line colors in the settings to suit your visual preferences or chart theme.
Timeframes: Effective on various timeframes, though it shines in swing trading setups on daily or higher charts (e.g., 1D, as seen in BTC/USD examples).
Notes:
Price Display: Labels show the actual (raw) closing price at the signal bar, not the HA close, providing real-world entry/exit levels.
Signal Clarity: Cyan dots mark buy signals, and red dots mark sell signals on some chart setups, enhancing visibility alongside the labels and lines.
This indicator offers a systematic way to spot trend-driven opportunities, leveraging Heikin Ashi’s smoothing effect to reduce noise and focus on significant price movements. Whether you’re trading cryptocurrencies like BTC/USD or other assets, the 6F Signals indicator provides clear, actionable insights with a professional and user-friendly design.
Feb 28
Release Notes
The 6F Signals indicator uses Heikin Ashi candles to identify high-probability buy and sell signals on your chart, perfect for traders of stocks, forex, or cryptocurrencies like Bitcoin. It displays solid teal and maroon lines to mark the high and low of key "C Candles" (trend change points), along with dynamic dashed lines that act as trailing stop-loss levels—teal lines rise for buy signals, and maroon lines fall for sell signals. Optional labels show the exact price of each signal, and you can toggle small triangles to visually highlight buy and sell opportunities. Ideal for spotting trend reversals and managing risk with automatic stop-loss adjustments.
Features:
Buy/Sell Signals: Automatically detects buy signals (blue labels) when the price crosses above the C High, and sell signals (gray labels) when it crosses below the C Low, based on Heikin Ashi calculations.
Trailing Stops: Dashed teal lines step up for buy signals (using Heikin Ashi lows), and dashed maroon lines step down for sell signals (using Heikin Ashi highs), helping you track dynamic stop-loss levels.
Customizable: Adjust the colors of the high and low lines, and toggle labels or arrows for signals via the input settings.
Overlay: Works directly on your price chart, making it easy to see signals alongside price action.
How to Use:
Add the indicator to your chart (e.g., Bitcoin/USD, 1-day timeframe).
Look for blue "Buy" labels or triangles below the price for long opportunities, and gray "Sell" labels or triangles above the price for short opportunities.
Use the trailing stop lines (teal for buys, maroon for sells) to manage your risk and adjust your stop-loss as the price moves.
Customize the colors or toggle labels/arrows in the settings to suit your trading style.
Note: This indicator is designed for educational and informational purposes. Always test it on a demo account before using it in live trading.
Mar 1
Release Notes
Let’s break down “6F Signals”
How It Works: The Nitty-Gritty
The script starts by smoothing out price noise, making trends easier to spot than with regular candlesticks. It checks if the HA close is above or below the HA open to determine if the trend’s bullish (upward) or bearish (downward).
C Candle Detection: This is where the magic happens. The indicator hunts for “C Candles”—key reversal points where the HA trend flips, like from bullish to bearish or vice versa. When it spots one, it locks in the high and low prices of that candle, along with the bar index, as reference levels for signals. These C Candles act like critical support and resistance zones.
Signal Generation: Here’s the play-by-play for the signals:
Buy Signal: A buy signal fires when the HA close breaks above the high of the most recent C Candle. This suggests a potential upward breakout or trend reversal.
Sell Signal: A sell signal triggers when the HA close drops below the low of the most recent C Candle, indicating a possible downward breakout or reversal.
Alternating Logic: The script’s smart—it only allows one signal (buy or sell) per C Candle and ensures signals alternate. So, you won’t get back-to-back buy signals or sell signals, keeping things clean and preventing confusion.
Signal Control & Timing: The indicator tracks whether a signal’s already been triggered for a given C Candle. It won’t fire another signal until a new C Candle forms and the conditions are met. It also checks the bar index to ensure signals only happen after the C Candle bar, keeping everything timed right.
Visualization on Your Chart:
Lines: It draws solid lines from the C Candle’s high and low to the bar where the signal occurs. By default, high lines are blue (or customizable), and low lines are gray (also customizable), with a clean 2-pixel width. These lines stop at the signal bar, giving you a clear visual of the price levels driving the signal.
Labels: When a signal hits, you’ll see green “Buy: ” labels below the bar for buys and gray “Sell: ” labels above the bar for sells. These show the raw closing price at the signal bar—not the HA close—so you get real-world entry/exit levels.
Optional Arrows: You can toggle small triangles—blue for buys (below the bar) and gray for sells (above the bar)—to visually pop those signals if you want extra flair.
Customization & Flexibility: You’re in control, bro. The script lets you tweak the high and low line colors (default blue for buys, gray for sells) via input settings, plus toggle on or off labels, arrows, and even additional data like high/low prices in the labels. It’s built for any chart type (regular candlesticks or HA) since it calculates HA internally, so it’s versatile AF.
Why It’s Fire for Traders
This indicator’s perfect for swing traders or day traders chasing trends in volatile markets, like crypto (think BTC/USD) or forex. It uses HA’s noise-reducing power to focus on big moves, and the alternating signal logic keeps you from getting overwhelmed. The visual cues—lines, labels, and optional arrows—make it easy to spot opportunities, whether you’re on a 1D chart or shorter timeframes. Pair it with other tools like moving averages or volume for confirmation, and you’ve got a solid setup to ride those market waves.
Notes to Keep It Real
The prices in the labels are the raw close, not HA values, so you’re getting actionable levels for trading.
It’s educational and informational—always test it on a demo account before going live, yeah?
Works across assets, but it really shines on charts with clear trends, like swing setups on daily or higher timeframes.
So, there you have it—smooth, detailed, and ready to help you dominate your charts. This “6F Signals” script isn’t just a tool; it’s your trading co-pilot, keeping it clean, sharp, and totally customizable for your style. Let’s crush it!
7 days ago
Release Notes
Overview
"6F Signals (With Labels) - Alternating" is a powerful Pine Script (v5) indicator for TradingView, designed to help traders identify high-probability buy and sell opportunities using Heikin Ashi (HA) trend analysis. By smoothing price action and detecting key reversal points, this indicator overlays clear, alternating signals directly on your chart—perfect for swing traders, trend followers, and visual learners.
Key Features
Heikin Ashi Smoothing: Calculates HA values (open, high, low, close) from raw OHLC data to reduce market noise and enhance trend detection, independent of your chart type.
C Candle Detection: Identifies "C Candles" at trend reversal points (bullish to bearish or vice versa), marking potential support and resistance zones.
Alternating Breakout Signals:
Buy Signal: Triggers when the HA close crosses above the C Candle’s high, suggesting an upward breakout.
Sell Signal: Triggers when the HA close crosses below the C Candle’s low, indicating a downward breakout.
Signals alternate (e.g., a buy follows a sell) to avoid repetition and maintain clarity.
Visual Elements:
Lines: Solid teal lines (high) and maroon lines (low) connect the C Candle’s levels to the signal bar, with a 2-pixel width for visibility.
Labels: Green "Buy: " labels appear below buy signal bars, and red "Sell: " labels appear above sell signal bars, showing the raw closing price.
Optional Arrows: Toggle small triangles (blue for buys, gray for sells) to highlight signals.
Customization: Adjust high and low line colors (default teal and maroon) and toggle labels or arrows via input settings to match your chart preferences.
How It Works
Trend Detection: Uses HA close and open prices to identify bullish (close > open) or bearish (close < open) trends.
C Candle Identification: Marks a C Candle at trend reversals, storing its high, low, and bar index.
Signal Logic: Triggers a buy when the HA close exceeds the C Candle high, or a sell when it falls below the C Candle low. Signals only fire after the C Candle bar and alternate to keep the chart clean.
Visualization: Draws horizontal lines from the C Candle to the signal bar and adds labels (and optional arrows) at the signal point for easy identification.
Visual Description
Candlesticks: Overlaid with teal (high) and maroon (low) lines connecting C Candles to signal bars.
Labels: Green "Buy: " below bullish candles (e.g., "Buy: 98305") and red "Sell: " above bearish candles (e.g., "Sell: 91552.88").
Lines: Solid, stopping at the signal bar for a clean display.
Usage Tips
Chart Compatibility: Works on any chart type (regular candlesticks or Heikin Ashi) since it calculates HA values internally.
Confirmation: Pair with other indicators (e.g., moving averages, volume) or price action analysis to validate signals.
Timeframes: Shines in swing trading on daily or higher charts (e.g., 1D for BTC/USD), but effective across various timeframes.
Customization: Modify line colors or toggle labels/arrows in the settings to suit your style.
Why Use It?
This indicator simplifies trend reversal trading by combining Heikin Ashi’s noise reduction with precise, alternating signals. Its visual clarity—through colored lines, labeled prices, and optional arrows—helps traders act confidently. Whether you’re trading cryptocurrencies like BTC/USD, stocks, or forex, "6F Signals" offers a straightforward, effective tool to enhance your strategy.
Notes
Price Display: Labels show the raw closing price at the signal bar (not HA close) for real-world entry/exit levels.
Signal Clarity: Optional cyan dots (buy) and red dots (sell) can enhance visibility on some setups.
Disclaimer: For educational purposes. Always test on a demo account before live trading.
Open-source script
In true TradingView spirit, the creator of this script has made it open-source, so that traders can review and verify its functionality. Kudos to the author! While you can use it for free, remember that republishing the code is subject to our House Rules.
For quick access on a chart, add this script to your favorites — learn more here.
Ravi_021
Follow
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.
TP/SL Percentage & RR Visual Tool📈 TP/SL Percentage & RR Visual Tool with UT Bot & EMA Suite
This all-in-one visual trading tool combines powerful precision with clean, dynamic overlays designed to help traders make smarter decisions in real time.
✅ Features:
TP/SL Lines + Zones
Visualize up to 3 Take Profit targets and your Stop Loss level on the chart. Zones are shaded for quick risk/reward perception.
Customizable Risk/Reward
Adjust TP/SL percentages and see real-time percentage distance from price, plus live R:R ratio.
Floating Table Display
A sleek, movable table shows:
Entry & Current Price
TP & SL values
% distance to TP
R:R Ratio
Current Session + Next Session time
Session Awareness
Automatically detects and displays whether you're in the Asian, London, or New York session. Highlights upcoming session transitions.
UT Bot Alerts Integration
Get clear Buy/Sell signals using trailing stop logic powered by ATR and optional Heikin Ashi candles.
Built-in EMAs (20, 50, 100, 200)
Customize and plot key moving averages directly on the chart with color-coded lines.
🔧 Customization Options:
TP/SL levels
Line style, color & thickness
EMA lengths
Table placement
Session timing logic
UT Bot sensitivity (ATR & key multiplier)
💡 Ideal For:
Scalping & intraday trading
Swing traders who use clear entry/exit zones
Anyone who wants clean R:R visuals and precision-based decisions
Trend-Based Buy/Sell/Sideways SignalThick trend bands with gradient coloring
✅ Clear "BUY", "SELL", and "SIDEWAYS" signals with labels
✅ Proper visual elements to enhance clarity
TREND and ZL FLOWThis PineScript combines two technical indicators—T3 Slow Trend Histogram and Zero Lag Moving Average to analyze market trends and potential reversals.
Giving credit to original authors of their original indicators: RedKTrader and Bjorgum
I have combined these into one indicator showing when trend is best to be trading...
When all lines are showing Green you are in a buying pressure market.
When all are lines are showing Red then you are in a selling pressure market.
T3 Slow Trend Histogram (Bjorgum):
A smoothed moving average (T3) is calculated using a recursive EMA (Exponential Moving Average) process with a length of 8 and a smoothing factor (b = 0.7). Six layers of EMAs are computed (xe1 to xe6) and combined with weighted coefficients (c1 to c4) to generate the final T3 value (nT3Average).
The histogram visually represents the T3’s momentum: green bars indicate upward momentum (T3 rising) and red bars signal downward momentum (T3 falling). This helps identify trend strength and direction.
ZL Flow (Zero-Lag Moving Average RedKTrader ):
A double-smoothed WMA (Weighted Moving Average) with a length of 9 and smoothing factor of 2 is applied to the price. The final ZLMA line is derived using a formula (2 * priceMA - ta.wma(priceMA, length)) to reduce lag.
The ZLMA line changes color (bright green for upward, red for downward) based on its direction.
Together, the T3 histogram tracks trend dynamics, while the ZL Flow provides early reversal signals, offering a dual approach to trend analysis and trade timing. The script is ideal for traders seeking confirmation of momentum shifts and zero-lag responsiveness.
EMA Crossover (Short Focus with Trailing Stop)This strategy utilizes a combination of Exponential Moving Averages (EMA) and Simple Moving Averages (SMA) to generate entry and exit signals for both long and short positions. The core of the strategy is based on the 13-period EMA (short EMA) crossing the 33-period EMA (long EMA) for entering long trades, while a 13-period EMA crossing the 25-period EMA (mid EMA) generates short trade signals. The 100-period SMA and 200-period SMA serve as additional trend indicators to provide context for the market conditions. The strategy aims to capitalize on trend reversals and momentum shifts in the market.
The strategy is designed to execute trades swiftly with an emphasis on entering positions when conditions align in real time. For long entries, the strategy initiates a buy when the 13 EMA is greater than the 33 EMA, indicating a bullish trend. For short entries, the 13 EMA crossing below the 33 EMA signals a bearish trend, prompting a short position. Importantly, the code includes built-in exit conditions for both long and short positions. Long positions are exited when the 13 EMA falls below the 33 EMA, while short positions are closed when the 13 EMA crosses above the 25 EMA.
A key feature of the strategy is the use of trailing stops for both long and short positions. This dynamic exit method adjusts the stop level as the market moves in favor of the trade, locking in profits while reducing the risk of losses. The trailing stop for long positions is based on the high price of the current bar, while the trailing stop for short positions is set using the low price, providing more flexibility in managing risk. This trailing stop mechanism helps to capture profits from favorable market moves while ensuring that positions are exited if the market moves against them.
This strategy works best on the 4H timeframe and is optimized for major cryptocurrency pairs. The daily chart allows for the EMAs to provide more reliable signals, as the strategy is designed to capture broader trends rather than short-term market fluctuations. Using it on major crypto pairs increases its effectiveness as these assets tend to have strong and sustained trends, providing better opportunities for the strategy to perform well.
Color Changing EMAthis indicator shows change of color on ema.
A moving average is a technical indicator that investors and traders use to determine the trend direction of securities. It is calculated by adding up all the data points during a specific period and dividing the sum by the number of time periods. Moving averages help technical traders to generate trading signals.
Market Bias with Multiple TimeframesLets you choose multiple Market bias in multi timeframe way. Enjoy.
Squeeze Momentum [CryptoSoldier]Script for CryptoSoldier Community. Squeeze Momentum Indicator and 3 EMAs
D.J. XAU 1MIN. SCALPING - London SessionThis is a scalping strategy designed for XAU (Gold) on a 1-minute timeframe, optimized for the London trading session (02:00 - 09:00 UTC). It uses a combination of EMA crossovers, an adaptive EMA filter, and Chandelier Exit for dynamic stop-loss management.
Key Components
EMA Crossover System
Short EMA (12) & Long EMA (26) determine trend direction.
A bullish crossover (Short EMA > Long EMA) signals a long entry.
A bearish crossover (Short EMA < Long EMA) signals a short entry.
Adaptive EMA Filter (50-period)
Confirms trend strength:
Longs only if price is above the 50 EMA.
Shorts only if price is below the 50 EMA.
Chandelier Exit (CE) for Stop Management
Uses ATR (22-period, 3x multiplier) to set dynamic trailing stops.
Long trades: Exit when price closes below the CE stop.
Short trades: Exit when price closes above the CE stop.
Session-Based Filter
Trades are only taken during the London session (02:00 - 09:00 UTC).
Risk Management
Fixed Risk-Reward Ratio (configurable: 1:1, 1:1.5, 1:2, etc.).
Trailing Stop Option (adjustable points).
Swing High/Low used for initial stop-loss placement.
Visual Indicators
EMA lines (12, 26, 50) plotted on the chart.
Chandelier Exit stops (green for long, red for short).
Background highlight during the London session.
Trade signals marked with circles (green for long, red for short).
Best Suited For
Fast scalping in high-liquidity conditions.
Gold (XAU/USD) during London hours (high volatility).
Traders who prefer EMA-based trend-following with dynamic exits.
CCI MR-TDescription:
This advanced indicator enhances the traditional Commodity Channel Index (CCI) by integrating two powerful tools:
🔹 CCI: Measures momentum and identifies overbought (>100) and oversold (<-100) conditions based on the hlc3 price source.
🔹 WMA (Weighted Moving Average): Smooths the CCI line using a 14-period WMA for clearer trend direction.
🔹 Bollinger Bands on CCI: Applies a 20-period SMA with ±2 standard deviations to visualize CCI volatility and potential reversal zones.
Visual Highlights:
Background turns red when CCI > 100 (overbought), green when < -100 (oversold).
Orange line = 14-period WMA of CCI
Purple lines = Bollinger Band upper/lower bounds on CCI
This combination helps traders confirm momentum strength, spot extreme moves, and avoid false signals during sideways markets.
Use this tool in conjunction with price action, trendlines, or volume for best results.
ShivShakti V1.0Buy Sell Signal Trend following indicator
This indicator is combination of Supertrend,RSI,EMA 20 and ADX with custom logic based on price action
Moving AveragesThis script contains the most important averages, which are:
- EMA 20
- EMA 50
- EMA 100
- EMA 200
- SMA 200
SMA Trend Panel// This indicator presents a compact panel for traders, combining SMA-based trend tracking and key volume/momentum technical indicators.
// The panel displays short-, mid-, and long-term SMAs (13, 50, 200), MACD, ADX, Stochastic RSI,
// OBV, CMF, volume change, weekly/monthly pivot levels, and ATR (volatility) directly on the chart.
// Each cell shows the current condition of its indicator with a symbol: positive (✅), negative (❌), or neutral (🔄).
// It is designed for traders who want to quickly assess overall technical conditions at a glance.
Volume Spikes Pro - relative volume comparisonThe Enhanced Volume Spike Detector builds on the basic relative volume comparison by adding price direction analysis and more sophisticated categorization of volume events.
Directional Analysis
This indicator doesn't just identify volume spikes, but categorizes them as:
- **Bullish**: Volume spike with upward price movement
- **Bearish**: Volume spike with downward price movement
- **Neutral**: Volume spike with minimal price change
- **Strong**: Exceptional volume spike (2.5x+ default) regardless of direction
Visual Classification
Different color schemes instantly communicate the volume spike type:
- Green for bullish volume (price rising)
- Red for bearish volume (price falling)
- Dark Green for strong bullish volume
- Dark Red for strong bearish volume (price falling)
Customization Tips
- For day trading or short timeframes: Consider reducing MA length to 10-15
- For swing trading: The default 20 is appropriate
- For position trading or longer timeframes: Consider increasing to 30-50
- For more selective signals: Increase multiplier to 2.0 or higher
- For more comprehensive detection: Decrease multiplier to 1.3-1.4
Moving Average CrossoverSimple moving average crossover configurable by period.
The indicator displays a bullish crossover with a green circle and a bearish crossover with a red circle just below or above the candle where the moving average crossover occurs.