Hann Window FIR Filter Ribbon [BigBeluga]🔵 OVERVIEW
The Hann Window FIR Filter Ribbon is a trend-following visualization tool based on a family of FIR filters using the Hann window function. It plots a smooth and dynamic ribbon formed by six Hann filters of progressively increasing length. Gradient coloring and filled bands reveal trend direction and compression/expansion behavior. When short-term trend shifts occur (via filter crossover), it automatically anchors visual support/resistance zones at the nearest swing highs or lows.
🔵 CONCEPTS
Hann FIR Filter: A finite impulse response filter that uses a Hann (cosine-based) window for weighting past price values, resulting in a non-lag, ultra-smooth output.
hannFilter(length)=>
var float hann = na // Final filter output
float filt = 0
float coef = 0
for i = 1 to length
weight = 1 - math.cos(2 * math.pi * i / (length + 1))
filt += price * weight
coef += weight
hann := coef != 0 ? filt / coef : na
Ribbon Stack: The indicator plots 6 Hann FIR filters with increasing lengths, creating a smooth "ribbon" that adapts to price shifts and visually encodes volatility.
Gradient Coloring: Line colors and fill opacity between layers are dynamically adjusted based on the distance between the filters, showing momentum expansion or contraction.
Dynamic Swing Zones: When the shortest filter crosses its nearest neighbor, a swing high/low is located, and a triangle-style level is anchored and projected to the right.
Self-Extending Levels: These dynamic levels persist and extend until invalidated or replaced by a new opposite trend break.
🔵 FEATURES
Plots 6 Hann FIR filters with increasing lengths (controlled by Ribbon Size input).
Automatically colors each filter and the fill between them with smooth gradient transitions.
Detects trend shifts via filter crossover and anchors visual resistance (red) or support (green) zones.
Support/resistance zones are triangle-style bands built around recent swing highs/lows.
Levels auto-extend right and adapt in real time until invalidated by price action.
Ribbon responds smoothly to price and shows contraction or expansion behavior clearly.
No lag in crossover detection thanks to FIR architecture.
Adjustable sensitivity via Length and Ribbon Size inputs.
🔵 HOW TO USE
Use the ribbon gradient as a visual trend strength and smooth direction cue.
Watch for crossover of shortest filters as early trend change signals.
Monitor support/resistance zones as potential high-probability reaction points.
Combine with other tools like momentum or volume to confirm trend breaks.
Adjust ribbon thickness and length to suit your trading timeframe and volatility preference.
🔵 CONCLUSION
Hann Window FIR Filter Ribbon blends digital signal processing with trading logic to deliver a visually refined, non-lagging trend tool. The adaptive ribbon offers insight into momentum compression and release, while swing-based levels give structure to potential reversals. Ideal for traders who seek smooth trend detection with intelligent, auto-adaptive zone plotting.
Trendfollowing
PulseWave Strategy Markking77PulseWave Strategy (Markking77) — Description & Indicator Roadmap
PulseWave Strategy (Markking77) is a sleek, straightforward trading system that fuses three powerful market indicators — VWAP, MACD, and RSI — into one harmonious tool. Designed for traders who want clear, actionable signals, this strategy captures trend direction, momentum shifts, and market strength to help you spot optimal entry and exit points.
Step 1: VWAP — The Market Trend Compass (Color: Blue)
What it does:
The Volume Weighted Average Price (VWAP) is the average price a security has traded at throughout the day, weighted by volume. It acts as a dynamic benchmark that many institutional traders rely on.
Why it matters:
Price above the VWAP (blue line) signals bullish momentum — buyers dominate.
Price below the VWAP signals bearish momentum — sellers in control.
PulseWave use:
VWAP sets the trend foundation — we trade in the direction the price sits relative to VWAP.
Step 2: MACD — Momentum Confirmation (Colors: Orange & Blue)
What it does:
MACD tracks momentum by comparing short-term and long-term moving averages, using the MACD line and a signal line to indicate shifts.
Why it matters:
When the MACD line (orange) crosses above the Signal line (blue), it signals rising momentum — a bullish cue.
When the MACD line crosses below the signal line, it signals weakening momentum — bearish cue.
PulseWave use:
MACD confirms momentum that aligns with the VWAP trend before entering trades.
Step 3: RSI — The Strength Filter (Color: Purple)
What it does:
The Relative Strength Index (RSI) measures how fast prices are changing to indicate overbought or oversold conditions.
Why it matters:
RSI above 70 = overbought (possible reversal or pause).
RSI below 30 = oversold (potential bounce).
PulseWave use:
RSI filters out trades taken at extreme price levels, avoiding entries that are too stretched.
Color-Coded Roadmap Summary:
Step Indicator Role Buy Signal Sell Signal Color
1 VWAP Trend Direction Price > VWAP (bullish) Price < VWAP (bearish) Blue
2 MACD Momentum Confirmation MACD line crosses above Signal line MACD line crosses below Signal line Orange & Blue
3 RSI Entry Filter RSI < 70 (not overbought) RSI > 30 (not oversold) Purple
How PulseWave Strategy Works:
Buy when price sits above VWAP, MACD line crosses above the Signal line, and RSI is below 70.
Sell (exit) when price drops below VWAP, MACD line crosses below the Signal line, and RSI is above 30.
This layered approach ensures you only trade when trend, momentum, and strength align — reducing false signals and improving your edge.
Why Use PulseWave Strategy?
Clear & Simple: No guesswork — clear color-coded signals guide your decisions.
Robust: Combines trend, momentum, and strength in one system.
Versatile: Fits day trading and swing trading styles alike.
Visual: Easily interpreted signals with minimal clutter.
Dynamic DCA Envelope – Beta V1.1Dynamic DCA Envelope-Beta V1.1 is a preview version of a Dollar-Cost Averaging (DCA) strategy designed for trending or volatile markets.
-Long Positions Only
-Intended for Cryptocurrency, but can be used in any market
-1 and 4 hour timeframe
-Average Commissions 0.1%-0.3% per trade (Cryptocurrency)
What it does:
This strategy identifies buying opportunities when price closes below a dynamic envelope (based on EMA). After 3 consecutive closes below the lower envelope, the system arms a buy condition. A DCA buy-in is triggered when price bounces by a configurable percentage from the trailing low. The strategy supports up to 3 buy-ins, each equally sized, and closes the entire position at a fixed take profit or stop loss.
How it works:
-Entry logic is based on price deviation from an EMA envelope
-Waits for 3 closes below the envelope to detect weakness
-Uses bounce percentage from the lowest point to trigger each buy
-Includes cooldown logic between buys to avoid clustering
-All positions are closed when TP or SL is hit
How to use it:
-Use on trending assets with volatility (e.g., crypto, tech stocks)
-Adjust inputs to match asset behavior:
-EMA Length
-Envelope Offset %
-Bounce % (Trailing DCA)
-Take Profit / Stop Loss
-View strategy performance in the Strategy Tester tab
What’s unique:
Unlike most DCA scripts that immediately average down, this version includes:
-Trigger logic requiring multiple closes below trend
-Bounce-based entry to avoid catching a falling knife
-Cooldown resets to prevent overtrading
-A true entry–wait–buy–reset loop mimicking disciplined execution
*This is a beta version intended as a preview. A full Pro version is in development, which includes:
-SmartScaling logic
-Trailing take profit
-Multi-symbol scanning
-Backtest range limits
-Risk-adjusted filtering
MTPI SOL | JeffreyTimmermansMedium-Term Trend Probability Indicator
The "Medium-Term Trend Probability Indicator" on SOL (Solana) is a custom-built tool designed to analyze Solana (SOL) from a medium-term perspective. Unlike short-term indicators that react quickly to intraday volatility or long-term models that focus on macro cycles, the MTPI is optimized to detect medium-term market trends—capturing key turning points and momentum shifts that unfold over multiple weeks.
This version of the MTPI is applied to SOL, making it a Solana-specific trend-following tool with particular sensitivity to its price behavior and structural dynamics.
Key Features
Medium-Term Focus:
Built to monitor price action over several weeks to months, the MTPI filters out short-term noise while remaining responsive to meaningful trend changes.
8 Input Signals:
The MTPI aggregates 8 carefully selected trend-following inputs, each tuned to reflect mid-cycle behavior in SOL’s price movements.
Market Regimes:
The MTPI classifies market behavior into one of three clear regimes:
Bullish → Momentum and structure align to support a continued uptrend
Bearish → Majority of signals point to trend deterioration or downside momentum
Neutral → Mixed signals, often during consolidation or early transition phases
Visual Background:
The background color shifts dynamically to reflect the active regime—making it easy to visually interpret the prevailing market condition.
Comprehensive Dashboard:
The lower panel displays:
The state of each individual input (Bullish, Bearish, Neutral)
The numerical MTPI Score (average of all 8 signals)
The final Trend Classification (Bullish / Bearish / Neutral)
How It Works
Input Analysis:
Each of the 8 inputs outputs a score based on its internal signal:
+1 = Bullish condition
-1 = Bearish condition
0 = Neutral / indecisive
Score Calculation:
The MTPI Score is calculated as the average of all 8 input signals:
Score > +0.1 = Bullish regime
Score < -0.1 = Bearish regime
Score between -0.1 and +0.1 = Neutral regime
Background Coloring:
Color-coded backgrounds instantly reflect the current trend classification based on the MTPI Score, helping traders stay aligned with the market direction at all times.
Use Cases
Mid-Term Positioning:
Identify strong trend phases on SOL with reduced noise and increased directional clarity.
Confirmation Layer:
Use MTPI as a mid-term confirmation tool alongside short-term setups or long-term macro models (like LTPI).
Rotation or Transition Detection:
Spot key moments when SOL transitions from expansion to contraction phases (and vice versa).
Dynamic Alerts:
Bullish Signal: MTPI Score crosses above +0.1
Bearish Signal: MTPI Score crosses below -0.1
Neutral Zone: MTPI Score enters between -0.1 and +0.1
Conclusion
The Medium-Term Trend Probability Indicator (MTPI – SOL) provides a powerful framework for identifying trend phases on Solana with mid-term relevance. By combining 8 intelligent inputs into a single score and market classification, it offers clarity in times of uncertainty and confidence in times of momentum. Whether used alone or as part of a broader multi-timeframe strategy, the MTPI helps refine entries, exits, and macro alignment in the dynamic world of Solana trading.
LTPI BTC | JeffreyTimmermansLong-Term Trend Probability Indicator
The "Long-Term Trend Probability Indicator" on BTC is a custom-built tool designed to analyze BTC from a long-term perspective. Unlike short-term indicators that react to price volatility, LTPI focuses on major trend shifts on BTC, and therefore across the entire crypto market, helping to identify major trend shifts early.
This version of the LTPI is applied to BTC, making it a BTC specific trend following tool, but very broad (crypto wise), because BTC is the biggest asset.
Key Features
Long-Term Focus:
Designed for macro market analysis with less sensitivity to short-term noise.
8 Input Signals:
Combines 8 carefully selected inputs (trend following indicators) into a single score that reflects the overall market condition.
Market Regimes:
Classifies the BTC trend into:
Bullish: Strong uptrend, expansion phase
Bearish: Strong downtrend, contraction phase
Neutral: Transitional or uncertain
Visual Background:
Background colors clearly display which regime is active.
Comprehensive Dashboard:
The panel at the bottom shows each input’s state, the composite LTPI score, and the resulting market trend.
How It Works
Inputs Analysis:
Each of the 8 inputs outputs one of three states:
+1 (Bullish)
-1 (Bearish)
0 (Neutral)
Score Calculation:
The total score is the sum of all 8 input signals divided by 8.
Score > 0.1 = Bullish
Score < -0.1 = Bearish
Between -0.1 and 0.1 = Neutral
Background Coloring:
Background colors dynamically adjust to reflect the long-term market regime.
Use Cases
Long-Term Positioning:
Identify periods of global expansion or contraction to position yourself accordingly.
Macro Confirmation:
Use LTPI in combination with medium-term (MTPI) and short-term tools for multi-timeframe confirmation.
Market Timing:
Alerts when LTPI crosses key thresholds help highlight the start of major bullish or bearish phases.
Dynamic Alerts:
Bullish Entry: LTPI score crosses above 0.1
Bearish Entry: LTPI score crosses below -0.1
Neutral Zone: Score moves back between -0.1 and 0.1
Conclusion
The Long-Term Trend Probability Indicator (LTPI – BTC) is a powerful tool for identifying long-term market phases across the entire crypto ecosystem. By focusing on long term trends and combining 8 inputs into a single probability score, it provides a clear macro trend perspective for strategic decision-making.
LTPI TOTAL | JeffreyTimmermansLong-Term Trend Probability Indicator
The "Long-Term Trend Probability Indicator" on TOTAL is a custom-built tool designed to analyze the global crypto market (TOTAL) from a long-term perspective. Unlike short-term indicators that react to price volatility, LTPI focuses on major trend shifts across the entire crypto market, helping to identify major trend shifts early.
This version of the LTPI is applied to the TOTAL market cap, making it a broad trend following tool.
Key Features
Long-Term Focus:
Designed for macro market analysis with less sensitivity to short-term noise.
10 Input Signals:
Combines 10 carefully selected inputs (trend following indicators) into a single score that reflects the overall market condition.
Market Regimes:
Classifies the TOTAL market into:
Bullish: Strong uptrend, expansion phase
Bearish: Strong downtrend, contraction phase
Neutral: Transitional or uncertain
Visual Background:
Background colors clearly display which regime is active.
Comprehensive Dashboard:
The panel at the bottom shows each input’s state, the composite LTPI score, and the resulting market trend.
How It Works
Inputs Analysis:
Each of the 10 inputs outputs one of three states:
+1 (Bullish)
-1 (Bearish)
0 (Neutral)
Score Calculation:
The total score is the sum of all 10 input signals divided by 10.
Score > 0.1 = Bullish
Score < -0.1 = Bearish
Between -0.1 and 0.1 = Neutral
Background Coloring:
Background colors dynamically adjust to reflect the long-term market regime.
Use Cases
Long-Term Positioning:
Identify periods of global expansion or contraction to position yourself accordingly.
Macro Confirmation:
Use LTPI in combination with medium-term (MTPI) and short-term tools for multi-timeframe confirmation.
Market Timing:
Alerts when LTPI crosses key thresholds help highlight the start of major bullish or bearish phases.
Dynamic Alerts:
Bullish Entry: LTPI score crosses above 0.1
Bearish Entry: LTPI score crosses below -0.1
Neutral Zone: Score moves back between -0.1 and 0.1
Conclusion
The Long-Term Trend Probability Indicator (LTPI – TOTAL) is a powerful tool for identifying long-term market phases across the entire crypto ecosystem. By focusing on long term trends and combining 10 inputs into a single probability score, it provides a clear macro perspective for strategic decision-making.
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.
LTPI Global Liquidity | JeffreyTimmermansLong-Term Probability Indicator (LTPI)
The "Long-Term Probability Indicator (LTPI)" on a generic liquidity ticker is a custom-built analytical tool designed to evaluate market conditions over a long-term horizon, with a strong focus on global liquidity trends. By combining six carefully selected input signals into a single probability score, this indicator helps traders and analysts identify prevailing long-term market states: Bullish, Bearish, or Neutral.
Where short-term systems/timeframes react quickly to price fluctuations, LTPI smooths out noise and focuses on the bigger picture, allowing for informed strategic decision-making rather than short-term speculation.
Key Features
Multi-Input Aggregation:
Uses six independent inputs, each based on long-term liquidity and macro-related data, to generate a composite market probability score.
Long-Term Focus:
Prioritizes medium-to-long-term trends, ignoring smaller fluctuations that often mislead traders in volatile markets.
Simplified Market States:
Classifies the global market into three primary states:
Bullish: Favorable liquidity and conditions for long-term risk-taking.
Bearish: Tightening liquidity and conditions that require caution.
Neutral: Transitional phases or uncertain conditions.
Background Coloring:
Visual cues on the chart help identify which regime is active at a glance.
Global Liquidity Perspective:
Designed for use on a generic liquidity ticker, based on M2 money supply, to track macroeconomic liquidity flows and risk appetite.
Dashboard Display:
A compact on-screen table summarizes all six inputs, their states, and the resulting LTPI score.
Dynamic Alerts:
Real-time alerts signal when the LTPI shifts from one regime to another.
Inputs & Settings
LTPI Inputs:
Input Sources (6): Each input is a carefully chosen trend following indicator.
Weighting: Each input contributes equally to the final score.
Score Calculation:
Bullish = +1
Bearish = -1
Neutral = 0
Color Settings:
Strong Bullish: Bright Green
Weak Bullish: Light Green
Neutral: Gray/Orange
Weak Bearish: Light Red
Strong Bearish: Bright Red
(Colors can be customized.)
Calculation Process
Collect Data:
Six long-term inputs are evaluated at each bar.
Scoring:
Each input’s state contributes +1 (bullish), -1 (bearish), or around 0 (neutral).
Aggregate Probability:
The LTPI Score is calculated as the sum of all six scores divided by 6, resulting in a value between -1 and +1.
Market Classification:
Score > 0.1: Bullish regime
Score < -0.1: Bearish regime
-0.1 ≤ Score ≤ 0.1: Neutral
Background Coloring:
Background colors are applied to highlight the current regime.
How to Use LTPI
Strategic Positioning:
Bullish: Favor holding or adding to long-term positions.
Bearish: Reduce risk, protect capital.
Neutral: Wait for confirmation before making significant moves.
Confirmation Tool:
LTPI works best when combined with shorter-term indicators like MTPI or trend-following tools to confirm alignment across multiple timeframes.
Dynamic Alerts:
Bullish Regime Entry: When the LTPI Score crosses above 0.1.
Bearish Regime Entry: When the LTPI Score crosses below -0.1.
Neutral Zone: When the score moves back between -0.1 and 0.1.
These alerts help identify significant macro-driven shifts in market conditions.
Conclusion
The Long-Term Probability Indicator (LTPI) is an advanced, liquidity-focused tool for identifying macro-driven market phases. By consolidating six inputs into a single probability score and presenting the results visually, LTPI helps long-term investors and analysts stay aligned with global liquidity trends and avoid being distracted by short-term volatility.
MTPI TOTAL / BTC | JeffreyTimmermansMedium-Term Probability Indicator (MTPI)
The "Medium-Term Probability Indicator (MTPI)" is a multi-factor model designed to evaluate the medium-term state of a market. By aggregating signals from 20 underlying inputs, it generates a composite score that classifies the market as Bullish, Bearish, or Neutral. This helps traders understand the prevailing market regime and adapt strategies accordingly.
Key Features
Multi-Input Scoring: Combines up to 20 individual inputs (indicators, conditions, or models) into a single probability-based score.
Composite Market State: Translates raw input signals into three states: Bullish, Bearish, or Neutral.
Dynamic Background Coloring: Uses color-coded background shading to visually separate bullish, bearish, and neutral phases.
MTPI Score: Calculates a final numeric score (ranging from -1 to +1) to quantify the market’s directional bias.
Dashboard Display: Shows all input signals, their individual states, and the aggregated MTPI score at a glance.
Medium-Term Focus: Helps identify prevailing conditions that last from several weeks to several months.
Inputs & Settings
MTPI Settings:
Input Signals (1 to 20): Default: Predefined conditions. Each input evaluates the market from a unique perspective (trend, momentum, volatility, etc.).
Composite Score Calculation: Default weighting is equal across all inputs.
Color Settings:
Bullish: Bright green background
Neutral: Gray/orange background
Bearish: Bright red background
These colors can be customized as desired.
Calculation Process
Signal Aggregation:
Each input generates a state:
1 to 0.1 = Bullish
0.1 to -0.1 = Neutral
-0.1 to -1 = Bearish
Scoring:
The MTPI aggregates these values and calculates an average score.
Classification:
Bullish: Score > 0
Bearish: Score < 0
Neutral: Score ≈ 0
Visualization:
Background Coloring: Highlights the dominant phase on the chart.
Dashboard: Displays individual input states, the total MTPI score, and the resulting classification.
How to Use the MTPI
Identifying Market Regimes:
Bullish: Majority of inputs align positively. Favor long positions or trend-following strategies.
Bearish: Majority of inputs align negatively. Favor short positions or defensive strategies.
Neutral: Mixed signals. Caution or range-bound strategies may be preferable.
Transition Detection:
Changes in background color or the MTPI dashboard (score flipping from positive to negative, or vice versa) indicate potential regime shifts.
Dynamic Dashboard:
Score: Displays the net sum of all input signals (normalized).
State: Provides the classification (Bullish, Bearish, Neutral).
Trend: Visual cues for each input showing the current contribution to the MTPI.
Conclusion
The Medium-Term Probability Indicator (MTPI) consolidates multiple signals into a single, intuitive visualization that helps traders quickly assess the medium-term market environment. Its combination of a multi-input dashboard, composite scoring, and background coloring makes it a powerful decision-support tool.
This script is developed by Jeffrey Timmermans and is designed to complement other analysis methods.
NAIFCHART_NAS Ultimate Algo | Remastered+# NAIFCHART NAS Ultimate Algo Remastered+: Advanced Trend Following System
## Overview
The NAIFCHART NAS Ultimate Algo Remastered+ represents a sophisticated trend-following system that combines Supertrend analysis with multiple moving average confirmations. This comprehensive indicator was developed and shared by the trading community at t.me designed specifically for identifying high-probability trend continuation and reversal opportunities.
## Core Algorithm Components
**Supertrend Foundation**: The primary signal generation relies on a customizable Supertrend indicator with adjustable sensitivity (1-20 range). This adaptive trend-following tool uses Average True Range calculations to establish dynamic support and resistance levels that respond to market volatility.
**SMA Confirmation Matrix**: Multiple Simple Moving Averages (SMA 4, 5, 9, 13) provide layered confirmation for signal strength. The algorithm distinguishes between regular signals and "Strong" signals based on SMA 4 vs SMA 5 relationship, offering traders different conviction levels for position sizing.
**Trend Ribbon Visualization**: SMA 21 and SMA 34 create a visual trend ribbon that changes color based on their relationship. Green ribbon indicates bullish momentum while red signals bearish conditions, providing immediate visual trend context.
**RSI-Based Candle Coloring**: Advanced 61-tier RSI system colors candles with gradient precision from deep red (RSI ≤20) through purple transitions to bright green (RSI ≥79). This visual enhancement helps traders instantly assess momentum strength and overbought/oversold conditions.
## Signal Generation Logic
**Buy Signal Criteria**:
- Price crosses above Supertrend line
- Close price must be above SMA 9 (trend confirmation)
- Signal strength determined by SMA 4 vs SMA 5 relationship
- "Strong Buy" when SMA 4 ≥ SMA 5
- Regular "Buy" when SMA 4 < SMA 5
**Sell Signal Criteria**:
- Price crosses below Supertrend line
- Close price must be below SMA 9 (trend confirmation)
- Signal strength based on SMA relationship
- "Strong Sell" when SMA 4 ≤ SMA 5
- Regular "Sell" when SMA 4 > SMA 5
## Advanced Risk Management System
**Automated TP/SL Calculation**: The indicator automatically calculates stop loss and take profit levels using ATR-based measurements. Risk percentage and ATR length are fully customizable, allowing traders to adapt to different market conditions and personal risk tolerance.
**Multiple Take Profit Targets**:
- 1:1 Risk-Reward ratio for conservative profit taking
- 2:1 Risk-Reward for balanced trade management
- 3:1 Risk-Reward for maximum profit potential
**Visual Risk Display**: All risk management levels appear as both labels and optional trend lines on the chart. Customizable line styles (solid, dashed, dotted) and positioning ensure clear visualization without chart clutter.
**Dynamic Level Updates**: Risk levels automatically recalculate with each new signal, maintaining current market relevance throughout position lifecycles.
## Visual Enhancement Features
**Customizable Display Options**: Toggle trend ribbon, TP/SL levels, and risk lines independently. Decimal precision adjustments (1-8 decimal places) accommodate different instrument price formats and personal preferences.
**Professional Label System**: Clean, informative labels show entry points, stop losses, and take profit targets with precise price levels. Labels automatically position themselves for optimal chart readability.
**Color-Coded Momentum**: The gradient RSI candle coloring system provides instant visual feedback on momentum strength, helping traders assess market energy and potential reversal zones.
## Implementation Strategy
**Timeframe Optimization**: The algorithm performs effectively across multiple timeframes, with higher timeframes (4H, Daily) providing more reliable signals for swing trading. Lower timeframes work well for day trading with appropriate risk adjustments.
**Sensitivity Adjustment**: Lower sensitivity values (1-5) generate fewer but higher-quality signals, ideal for conservative approaches. Higher sensitivity (15-20) increases signal frequency for active trading styles.
**Risk Management Integration**: Use the automated risk calculations as baseline parameters, adjusting risk percentage based on account size and market conditions. The 1:1, 2:1, 3:1 targets enable systematic profit-taking strategies.
## Market Application
**Trend Following Excellence**: Primary strength lies in capturing significant trend movements through the Supertrend foundation with SMA confirmation. The dual-layer approach reduces false signals common in single-indicator systems.
**Momentum Assessment**: RSI-based candle coloring provides immediate momentum context, helping traders assess signal strength and potential continuation probability.
**Range Detection**: The trend ribbon helps identify ranging conditions when SMA 21 and SMA 34 converge, alerting traders to potential breakout opportunities.
## Performance Optimization
**Signal Quality**: The requirement for both Supertrend crossover AND SMA 9 confirmation significantly improves signal reliability compared to basic trend-following approaches.
**Visual Clarity**: The comprehensive visual system enables rapid market assessment without complex calculations, ideal for traders managing multiple instruments.
**Adaptability**: Extensive customization options allow fine-tuning for specific markets, trading styles, and risk preferences while maintaining the core algorithm integrity.
## Community Resources
Join the active trading community at t.me for ongoing discussions about optimization techniques, market analysis, and strategy refinements using this advanced algorithm system.
The collaborative environment provides valuable insights into parameter adjustments for different market conditions and real-world performance feedback from experienced traders.
## Conclusion
The NAIFCHART NAS Ultimate Algo Remastered+ combines proven trend-following principles with modern visual enhancements and comprehensive risk management. The algorithm's strength lies in its multi-layered confirmation approach and automated risk calculations, providing both novice and experienced traders with clear signals and systematic trade management.
Success with this system requires understanding the relationship between signal strength indicators and adapting sensitivity settings to match current market conditions. The comprehensive visual feedback system enables rapid decision-making while the automated risk management ensures consistent trade parameters.
Practice with different sensitivity settings and timeframes to optimize performance for your specific trading style and risk tolerance. The algorithm's systematic approach provides excellent framework for disciplined trend-following strategies across various market environments.
19/23 ema/maMA combination used in the ZFT system so students can identify long term, and short term trends within a minute. This variance emphasizes short term cross overs.
ZFT ClassicMA combination used in the ZFT system so students can identify long term, medium term, and short term trends within a minute.
Intelligent Moving📘 Intelligent Moving – Adaptive Neural Trend Engine
Intelligent Moving is an invite-only, closed-source indicator that dynamically adjusts itself to evolving market conditions using a built-in neural optimizer. It combines a custom adaptive Moving Average, ATR-based deviation bands, and a fully internal virtual trade simulator to deliver smart trend signals and automatic parameter tuning — all without repainting or manual intervention.
This script is built entirely from original code and does not use any open-source components or built-in TradingView indicators.
🧠 Core Logic and Visual Structure
The indicator plots:
- A central moving average (optimized dynamically),
- Upper and lower deviation bands based on ATR × adaptive coefficients,
- Buy (aqua) and Sell (orange) arrows on reversion signals,
- Color-coded trend zones based on price vs. moving average.
All three bands change color in real time depending on the price’s position relative to the MA, clearly showing uptrends (e.g. blue) and downtrends (e.g. red).
📈 Signal Logic: Reversion from Extremes
- Buy Signal: After price closes below the lower deviation band, it then closes back above it.
- Sell Signal: After price closes above the upper deviation band, it then closes back below it.
These signals are not based on crossovers, oscillators, or lagging logic — they are pure structure-based reversion entries, designed to detect exhaustion and reversal zones.
🤖 Built-In Neural Optimizer (Perceptron Engine)
At the heart of Intelligent Moving lies a self-training engine that uses simulated (virtual) positions to test multiple configurations and pick the best one. Here’s how it works:
🔄 Virtual Trade Simulation
At regular intervals (user-defined), the script:
- Simulates virtual buy/sell positions based on its signal logic.
- Applies virtual Stop-Loss (just beyond the signal zone) and virtual Take-Profit (when price crosses back over the MA).
- Calculates simulated profit for each combination of:
- - MA periods,
- - Upper/lower ATR multipliers.
🧠 Neural Training Process
- A perceptron-like engine evaluates the simulated results.
- It selects the best-performing configuration and applies it to live plotting.
- You can choose whether optimization uses a base value or the last best result from the previous training pass.
This process runs forward-only and never overwrites history or uses future data. It's completely transparent and non-repainting.
⚙️ Customization and Parameters
Users can control:
- MA period range, step, and training type (base vs last best)
- Deviation multiplier ranges and step
- Training depth (number of bars in history)
- Training interval (how often to retrain)
- Spread simulation, alert options, and all visual settings
💡 What Makes It Unique
- ✅ Self-optimization with virtual trades and perceptron logic
- ✅ Adaptive deviation bands based on ATR (not standard deviation)
- ✅ No built-in indicators, no repaints, no curve-fitting
- ✅ Clear trend zones and reversal signals
- ✅ Optimized for live use and consistent behavior across assets
Unlike typical moving average tools, Intelligent Moving thinks, adapts, and reacts — turning a standard concept into a living, learning trend engine.
📊 Use Cases
- Trend detection with adaptive coloring
- Reversion trading from volatility extremes
- Dynamic strategy building with minimal manual input
- Alerts for automated or discretionary traders
🔒 Invite-Only Notice
This script is invite-only and closed-source.
The optimization logic, trade simulation system, and perceptron engine were developed from scratch, specifically for this indicator. No built-in functions (e.g. MA, BB, RSI) or public scripts were used or copied.
All decisions and calculations are based on current and past price only — no repainting, retrofitting, or future leakage.
⚠️ Disclaimer
This indicator is for educational and analytical use only.
It does not predict future prices or guarantee profits. Always use appropriate risk management and test thoroughly before live trading.
Smart Money Breakout Channels [AlgoAlpha]🟠 OVERVIEW
This script draws breakout detection zones called “Smart Money Breakout Channels” based on volatility-normalized price movement and visualizes them as dynamic boxes with volume overlays. It identifies temporary accumulation or distribution ranges using a custom normalized volatility metric and tracks when price breaks out of those zones—either upward or downward. Each channel represents a structured range where smart money may be active, helping traders anticipate key breakouts with added context from volume delta, up/down volume, and a visual gradient gauge for momentum bias.
🟠 CONCEPTS
The script calculates normalized price volatility by measuring the standard deviation of price mapped to a scale using the highest and lowest prices over a set lookback period. When normalized volatility reaches a local low and flips upward, a boxed channel is drawn between the highest and lowest prices in that zone. These boxes persist until price breaks out, either with a strong candle close (configurable) or by touching the boundary. Volume analysis enhances interpretation by rendering delta bars inside the box, showing volume distribution during the channel. Additionally, a real-time visual “gauge” shows where volume delta sits within the channel range, helping users spot pressure imbalances.
🟠 FEATURES
Automatic detection and drawing of breakout channels based on volatility-normalized price pivots.
Optional nested channels to allow multiple simultaneous zones or a clean single-zone view.
Gradient-filled volume gauge with dynamic pointer to show current delta pressure within the box.
Three volume visualization modes: raw volume, comparative up/down volume, and delta.
Alerts for new channel creation and confirmed bullish or bearish breakouts.
🟠 USAGE
Apply the indicator to any chart. Wait for a new breakout box to form—this occurs when volatility behavior shifts and a stable range emerges. Once a box appears, monitor price relative to its boundaries. A breakout above suggests bullish continuation, below suggests bearish continuation; signals are stronger when “Strong Closes Only” is enabled.
Watch the internal volume candles to understand where buy/sell pressure is concentrated during the box. Use the gauge on the right to interpret whether net pressure is building upward or downward before breakout to anticipate the direction.
Use alerts to catch breakout events without needing to monitor the chart constantly 🚨.
Stochastic Z-Score [AlgoAlpha]🟠 OVERVIEW
This indicator is a custom-built oscillator called the Stochastic Z-Score , which blends a volatility-normalized Z-Score with stochastic principles and smooths it using a Hull Moving Average (HMA). It transforms raw price deviations into a normalized momentum structure, then processes that through a stochastic function to better identify extreme moves. A secondary long-term momentum component is also included using an ALMA smoother. The result is a responsive oscillator that reacts to sharp imbalances while remaining stable in sideways conditions. Colored histograms, dynamic oscillator bands, and reversal labels help users visually assess shifts in momentum and identify potential turning points.
🟠 CONCEPTS
The Z-Score is calculated by comparing price to its mean and dividing by its standard deviation—this normalizes movement and highlights how far current price has stretched from typical values. This Z-Score is then passed through a stochastic function, which further refines the signal into a bounded range for easier interpretation. To reduce noise, a Hull Moving Average is applied. A separate long-term trend filter based on the ALMA of the Z-Score helps determine broader context, filtering out short-term traps. Zones are mapped with thresholds at ±2 and ±2.5 to distinguish regular momentum from extreme exhaustion. The tool is built to adapt across timeframes and assets.
🟠 FEATURES
Z-Score histogram with gradient color to visualize deviation intensity (optional toggle).
Primary oscillator line (smoothed stochastic Z-Score) with adaptive coloring based on momentum direction.
Dynamic bands at ±2 and ±2.5 to represent regular vs extreme momentum zones.
Long-term momentum line (ALMA) with contextual coloring to separate trend phases.
Automatic reversal markers when short-term crosses occur at extremes with supporting long-term momentum.
Built-in alerts for oscillator direction changes, zero-line crosses, overbought/oversold entries, and trend confirmation.
🟠 USAGE
Use this script to track momentum shifts and identify potential reversal areas. When the oscillator is rising and crosses above the previous value—especially from deeply negative zones (below -2)—and the ALMA is also above zero, this suggests bullish reversal conditions. The opposite holds for bearish setups. Reversal labels ("▲" and "▼") appear only when both short- and long-term conditions align. The ±2 and ±2.5 thresholds act as momentum warning zones; values inside are typical trends, while those beyond suggest exhaustion or extremes. Adjust the length input to match the asset’s volatility. Enable the histogram to explore underlying raw Z-Score movements. Alerts can be configured to notify key changes in momentum or zone entries.
Momentum_EMABand📢 Reposting this script as the previous version was shut down due to house rules. Follow for future updates.
The Momentum EMA Band V1 is a precision-engineered trading indicator designed for intraday traders and scalpers. This first version integrates three powerful technical tools — EMA Bands, Supertrend, and ADX — to help identify directional breakouts while filtering out noise and choppy conditions.
How the Indicator Works – Combined Logic
This script blends distinct but complementary tools into a single, visually intuitive system:
1️⃣ EMA Price Band – Dynamic Zone Visualization
Plots upper and lower EMA bands (default: 9-period) to form a dynamic price zone.
Green Band: Price > Upper Band → Bullish strength
Red Band: Price < Lower Band → Bearish pressure
Yellow Band: Price within Band → Neutral/consolidation zone
2️⃣ Supertrend Overlay – Reliable Trend Confirmation
Based on customizable ATR length and multiplier, Supertrend adds a directional filter.
Green Line = Uptrend
Red Line = Downtrend
3️⃣ ADX-Based No-Trade Zone – Choppy Market Filter
Manually calculated ADX (default: 14) highlights weak trend conditions.
ADX below threshold (default: 20) + Price within Band → Gray background, signaling low-momentum zones.
Optional gray triangle marker flags beginning of sideways market.
Why This Mashup & How the Indicators Work Together
This mashup creates a high-conviction, rules-based breakout system:
Supertrend defines the primary trend direction — ensuring trades are aligned with momentum.
EMA Band provides structure and timing — confirming breakouts with retest logic, reducing false entries.
ADX measures trend strength — filtering out sideways markets and enhancing trade quality.
Each component plays a specific role:
✅ Supertrend = Trend bias
✅ EMA Band = Breakout + Retest validation
✅ ADX = Momentum confirmation
Together, they form a multi-layered confirmation model that reduces noise, avoids premature entries, and improves trade accuracy.
💡 Practical Application
Momentum Breakouts: Enter when price breaks out of EMA Band with Supertrend confirmation
Avoid Whipsaws: Skip trades during gray-shaded low-momentum periods
Intraday Scalping Edge: Tailored for lower timeframes (5min–15min) where noise is frequent
⚠️ Important Disclaimer
This is Version 1 — expect future enhancements based on trader feedback.
This tool is for educational purposes only. No indicator guarantees profitability. Use with proper risk management and strategy validation.
Moving Average / ATR Breakout Signal [ARTech]Moving Average / ATR Breakout Signal
This indicator generates trend-following signals based on price breaking above or below a user-defined Moving Average (MA). It supports various MA types and lengths, while offering optional filters like ATR bands and breakout thresholds to enhance signal quality. The tool is designed to help traders detect momentum shifts with configurable confirmation logic and offers visual enhancements to help traders better interpret market conditions at a glance.
Key Features:
• Multi-Type Moving Average Support: Choose from various Moving Average types including EMA, SMA, Hull MA, VWMA, RMA, TEMA, and more — fully customizable with source and length options.
• Flexible Signal Logic: Signals are generated when price breaks above or below the selected MA. You can define the number of confirmation candles and choose between wick-based or close-based break logic.
• ATR-Based Filtering: Enable ATR filtering to create dynamic upper and lower breakout bands around the MA. This helps reduce noise and validate true breakouts with volatility-adjusted thresholds.
• Breakout Threshold Filtering: Add an optional breakout condition where the price must first move a minimum percentage away from the previous signal level before a new opposite signal is allowed. Prevents choppy back-to-back signals.
• Visual Enhancements: Color-coded backgrounds highlight long and short zones, adapting dynamically to signal context. Optional MA slope coloring further supports trend visualization.
• Signal Alerts: Customizable alerts for long and short signals, including user-defined messages, to keep you notified in real-time.
Why use this indicator?
• Helps you identify clear trend shifts by focusing on price action relative to a customizable moving average.
• Improves signal reliability with optional ATR filtering and breakout confirmation, reducing false signals.
• Flexible MA types and lengths let you tailor the indicator to your trading style.
• Suitable for traders of all levels looking for a straightforward, yet powerful trend-following tool.
How to Use
███████ Alerts ███████
• Custom Alerts: To enable Custom Alerts, you need to activate the fx alert() function call option in TradingView’s alert creation dialog. Then, select the desired alert type (Long or Short) from the indicator's settings under the "Alerts" section, you can customize messages and enable notifications for Long and Short signals.
Using Custom Alerts allows you to set up one alert that covers both Long and Short signals, simplifying your alert management.
• Long and Short Alerts: To create Long or Short alerts, open the alert dialog, select this indicator as the condition, then choose “Long” or “Short” from the list and click Create.
You need to set up two separate alerts: one for Long signals and one for Short signals.
███████ Moving Average ███████
This is the core component of the signal system. You can customize:
Moving Average Type: Choose from SMA, EMA, WMA, Hull MA, VWMA, RMA, or TEMA
Length: Adjust the length to suit your strategy.
Source: Select which price data (e.g., Close, Open, HL2) is used to calculate the MA.
Show Slope Color: Colors the MA line based on its direction: upward slopes are shown in the selected "Up" color, while downward slopes use the "Down" color. This helps you visually confirm trend direction at a glance.
Show Background Color: When enabled, highlights the area between the MA and price to enhance signal zones:
– If ATR filter is on, the space between ATR bands is shaded.
– If ATR filter is off, the area between the MA line and bar closes is colored.
This helps emphasize potential breakout or trend-following zones visually.
███████ Break Options ███████
Confirm Candles: Defines the number of consecutive candles that must break the selected level to confirm a signal.
– If ATR filter is enabled, this level is the ATR bands.
– If ATR is disabled, the Moving Average line is used.
This helps filter out noise and avoid premature signals.
Break Type: Specifies how the candle must break the level:
– Close: The candle must close beyond the level.
– Wick: A wick touching or exceeding the level is enough.
Choose based on how strict you want the breakout condition to be.
███████ Filters ███████
This section provides optional filters to improve signal accuracy:
ATR
When enabled, breakout confirmation requires the price to cross above the upper breakout line or below the lower breakout line by a specified percentage from the last signal price.
• Multiplier: Adjusts the width of ATR bands by multiplying the ATR value.
• Length: Sets the period for ATR calculation.
• Smoothing: Selects the smoothing method applied to the ATR (RMA, SMA, EMA, WMA).
• Upper and Lower Line Colors: Customize the colors of the ATR bands.
Breakout Filter
When enabled, breakout confirmation requires the price to cross above the upper breakout line or below the lower breakout line by a specified percentage from the last signal price.
• Threshold (%): Defines the minimum percentage price movement required to validate a breakout.
• Show Breakout Levels: Toggle to display or hide breakout threshold area on the chart.
Automated Scalping Signals with TP/SL Indicator [QuantAlgo]🟢 Overview
The Automated Scalping Signals with Take Profit & Stop Loss Indicator is a multi-timeframe trading system that combines market structure analysis with directional bias filtering to identify potential scalping opportunities. It detects Points of Interest (POI) including Fair Value Gaps (FVG) and Order Blocks (OB) while cross-referencing entries with higher timeframe exponential moving average positioning to create systematic entry conditions.
The indicator features adaptive timeframe calculations that automatically scale analysis periods based on your chart timeframe, maintaining consistent analytical relationships across different trading sessions. It provides integrated trade management with stop loss calculation methods, configurable risk-reward ratios, and real-time performance tracking through dashboard displays showing trade statistics, bias direction, and active position status.
This advanced system is designed for low timeframe trading, typically performing optimally on 1 to 15-minute charts across popular instruments such as OANDA:XAUUSD , CME_MINI:MES1! , CME_MINI:ES1! , CME_MINI:MNQ1! , CBOT_MINI:YM1! , CBOT_MINI:MYM1! , BYBIT:BTCUSDT.P , BYBIT:ETHUSDT.P , or any asset and timeframe of your preference.
🟢 How It Works
The indicator operates using a dual-timeframe mathematical framework where higher timeframe exponential moving averages establish directional bias through cross-over analysis, while simultaneously scanning for specific market structure patterns on the POI timeframe. The timeframe calculation engine uses multiplication factors to determine analysis periods, ensuring the bias timeframe provides trend context while the POI timeframe captures structural formations.
The structural analysis begins with FVG detection, which systematically scans price action to identify imbalances where gaps exist between consecutive candle ranges with no overlapping wicks. When such gaps are detected, the algorithm measures their size against minimum thresholds to filter out insignificant formations. Concurrently, OB recognition analyzes three-candle sequences, examining specific open/close relationships that indicate potential institutional accumulation zones. Once these structural patterns are identified, the algorithm cross-references them against the higher timeframe bias direction, creating a validation filter that only permits entries aligned with the prevailing EMA cross-over state. When price subsequently intersects these validated POI zones, entry signals generate with the system calculating entry levels at zone midpoints, then applying the selected stop loss methodology combined with the configured risk-reward ratio to determine take profit placement.
To mirror realistic trading conditions, the indicator incorporates configurable slippage calculations that account for execution differences between intended and actual fill prices. When trades reach their take profit or stop loss levels, the algorithm applies slippage adjustments that worsen the exit prices in a conservative manner - reducing take profit fills and increasing stop loss impact. This approach ensures backtesting results reflect more realistic performance expectations by accounting for spread costs, market volatility during execution, and liquidity constraints that occur in live trading environments.
It also has a performance dashboard that continuously tracks and displays comprehensive trading metrics:
1/ Bias TF / POI TF: Displays the calculated timeframes used for bias analysis and POI detection, showing the actual periods (e.g., "15m / 5m") that result from the multiplier settings to confirm proper adaptive timeframe selection
2/ Bias Direction: Shows current market trend assessment (Bullish, Bearish, or Sideways) derived from EMA cross-over analysis to indicate which trade directions align with prevailing momentum
3/ Data Processing: Indicates how many price bars have been analyzed by the system, helping users verify if complete historical data has been processed for comprehensive strategy validation
4/ Total Trades: Displays the cumulative number of completed trades plus any active positions, providing volume assessment for statistical significance of other metrics
5/ Wins/Losses: Shows the raw count of profitable versus unprofitable trades, offering immediate insight into strategy effectiveness frequency
6/ Win Rate: Reveals the percentage of successful trades, where values above 50% generally indicate effective entry timing and values below suggest strategy refinement needs
7/ Total R-Multiple: Displays cumulative risk-reward performance across all trades, with positive values demonstrating profitable system operation and negative values indicating net losses requiring analysis
8/ Average R Win/Loss: Shows average risk-reward ratios for winning and losing trades separately, where winning averages approaching the configured take profit ratio indicate minimal slippage impact while losing averages near -1.0 suggest effective stop loss execution
9/ TP Ratio / Slippage: Displays the configured take profit ratio and slippage settings with calculated performance impact, showing how execution costs affect actual versus theoretical returns
10/ Profit Factor: Calculates the ratio of total winning amounts to total losing amounts, where values above 1.5 suggest robust profitability, values between 1.0-1.5 indicate modest success, and values below 1.0 show net losses
11/ Maximum Drawdown: Tracks the largest peak-to-trough decline in R-multiple terms, with smaller negative values indicating better capital preservation and risk control during losing streaks
🟢 How to Use
Start by applying the indicator to your chart and observe its performance across different market conditions to understand how it identifies bias direction and POI formations. Then navigate to the settings panel to configure the Bias Timeframe Multiplier for trend context sensitivity and POI Timeframe Multiplier for structural analysis frequency according to your trading preference and objectives.
Next, fine-tune the EMA periods in Bias Settings to control trend detection sensitivity and select your preferred POI types based on your analytical preference. Proceed to configure your Risk Management approach by selecting from the available stop loss calculation methods and setting the Take Profit ratio that aligns with your risk tolerance and profit objectives. Complete the setup by customizing Display Settings to control table visibility and trade visualization elements, adjusting UI positioning and colors for optimal chart readability, then activate Alert Conditions for automated notifications on trade entries, exits, and bias direction changes to support systematic trade management.
🟢 Examples
OANDA:XAUUSD
CME_MINI:MES1!
CME_MINI:ES1!
CME_MINI:MNQ1!
CBOT_MINI:YM1!
BYBIT:BTCUSDT.P
BINANCE:SOLUSD
*Disclaimer: Past performance is not indicative of future results. None of our statements, claims, or signals from our indicators are intended to be financial advice. All trading involves substantial risk of loss, not just upside potential. Users are highly recommended to carefully consider their financial situation and risk tolerance before trading.
TradersAID - Adaptive Smoothing Velocity ColoringTradersAID – Adaptive Smoothing Velocity Coloring
1. Overview
TradersAID – Adaptive Smoothing Velocity Coloring is a momentum visualization tool designed to highlight bullish or bearish pressure directly on price bars — helping you intuitively read directional strength and velocity shifts in any market or timeframe.
Using a Kalman-inspired estimation framework originally developed for aerospace and autonomous navigation, this tool analyzes the velocity of price movement and assigns a contextual candle color — offering a clean and readable way to interpret short-term flow.
Whether you’re navigating ranges or watching for trend continuation, this visualization simplifies complex data into actionable visual rhythm.
2. What It Does
Instead of measuring only price, the script focuses on price velocity — the rate of change over time. It computes this through a proprietary estimator that continuously adapts to volatility and momentum shifts.
The output is color-coded candles that reflect velocity dynamics:
• Green shades represent bullish acceleration
• Red shades reflect bearish velocity
• Neutral tones indicate fading momentum or transition phases
This allows you to quickly assess market tone:
• In strong trends: Watch for fading momentum (weaker colors)
• In ranges: Spot subtle shifts that hint at upcoming breakout direction
• Near potential reversals: Diverging velocity and price can stand out at a glance
3. How to Use It
• Momentum Insight:
Use color intensity to judge whether the current move is gaining or losing strength.
• Breakout Anticipation:
In sideways markets, shifting colors within the range can help anticipate which side may take control next.
• Divergence Reading:
Look for double tops or bottoms where price holds but velocity changes — often a hint that the move is maturing.
• Visual Confirmation Layer:
Combine with structural tools (like TradersAID Warning Dots or Trend Bands) to add a layer of momentum awareness.
4. Key Features
• Adaptive Velocity Model: Kalman-filter-like algorithm continuously tracks price velocity
• Gradient Candle Coloring: Smooth scale from deep red (strong bearish) to deep green (strong bullish)
• Flexible Sensitivity Modes:
o Slow – smoothest interpretation
o Regular – balanced tone
o Fast – more responsive
• RSI Normalization: Translates raw velocity into a familiar oscillator scale
• Full Overlay Integration: Candle coloring works seamlessly with other studies on the same chart
5. Technical Basis (Why It’s Closed Source)
The tool is built on a proprietary Unscented Kalman Filter implementation that estimates both price and its velocity simultaneously.
This advanced approach is rare in retail tools, drawing from real-time estimation techniques used in robotics and aerospace applications.
While the source remains closed to protect the performance logic and smoothing implementation, the core concepts — adaptive filtering, velocity-based analysis, and visual gradient output — are fully explained here for transparency and compliant understanding.
6. Settings
• Sensitivity Modes: Fast / Regular / Slow
• RSI Length: Adjustable to control the smoothness of velocity normalization
• Color Theme: Intuitive gradient from red (bearish) to green (bullish)
• Compatible Timeframes: Designed to work across all timeframes — no restriction
7. Disclaimer
This tool is for educational and informational purposes only. It does not offer financial advice, predict outcomes, or generate trading signals. Always use in conjunction with your own analysis and supporting systems.
TradersAID / Adaptive Smoothing Channel (use on 1W chart)TradersAID – Adaptive Smoothing Channel (use on 1-Week chart)
Overview
TradersAID – Adaptive Smoothing Channel is a two-line price overlay designed to help traders interpret trend structure and shifting momentum zones on the 1-week chart only.
Unlike traditional moving averages or fixed smoothing methods, this tool uses an adaptive approach inspired by Kalman filtering — a concept widely used in robotics and control systems to track signals in noisy environments. Applied to price, this allows the band to adapt to directional flow and volatility while filtering out distracting short-term fluctuations.
1.What It Does
This tool builds a dynamic corridor around price using:
• A faster line that follows near-term directional movement
• A slower line that anchors broader market structure
Together, they form a responsive band that:
• Tilts with trend direction (via slope)
• Expands or contracts with volatility
• Fills the space between to show directional rhythm
It’s especially useful for observing how price moves within sustained trends or compression zones, helping traders visually interpret market structure with more clarity.
2. How to Use It
• Trend Structure:
Follow the slope of the band to understand overall direction. A narrowing band may indicate consolidation; a widening band may reflect strong follow-through.
• Momentum Compression Zones:
Watch for tightening distance between the lines — this may signal the market is preparing for a structural transition or breakout.
• Clarity Layer:
Overlay this tool with others (e.g. TradersAID Warning Dots) to reduce noise and improve decision context.
3. Key Features
• Dual Adaptive Lines: One fast, one slow — capturing different time dynamics
• Shaded Fill Zone: Highlights directional bias and rhythm
• 3 Reaction Modes: Slow / Regular / Fast for different sensitivities
• Overlay Style: Plots directly on price
• Minimalist Layout: Clean visual language
4. Technical Basis (Why It’s Closed Source)
This tool is based on a custom smoothing logic inspired by Kalman filtering, adapted specifically for charting market structure.
While it does not replicate a full Kalman system, it borrows key principles: dynamically adjusting to noisy input while maintaining structural clarity.
The algorithm was developed internally to provide a visual layer that integrates into the broader TradersAID analysis system — offering something distinct from public indicators. Its behavior, flexibility, and integration were designed to serve advanced structural analysis, and as such, the script is closed to protect proprietary logic and intellectual property.
5. Settings
• Mode Selector: Fast / Regular / Slow
• Color Fill Toggle & Styling
• Frame Lock:
✅ This script is built to work exclusively on the 1-week timeframe.
6. Disclaimer
This tool is for educational and informational purposes only. It does not offer financial advice or generate trading signals. Always use with your own strategy and discretion.
RSI-Adaptive T3 + Squeeze Momentum Strategy✅ Strategy Guide: RSI-Adaptive T3 + Squeeze Momentum Strategy
📌 Overview
The RSI-Adaptive T3 + Squeeze Momentum Strategy is a dynamic trend-following strategy based on an RSI-responsive T3 moving average and Squeeze Momentum detection .
It adapts in real-time to market volatility to enhance entry precision and optimize risk.
⚠️ This strategy is provided for educational and research purposes only.
Past performance does not guarantee future results.
🎯 Strategy Objectives
The main objective of this strategy is to catch the early phase of a trend and generate consistent entry signals.
Designed to be intuitive and accessible for traders from beginner to advanced levels.
✨ Key Features
RSI-Responsive T3: T3 length dynamically adjusts according to RSI values for adaptive trend detection
Squeeze Momentum: Combines Bollinger Bands and Keltner Channels to identify trend buildup phases
Visual Triggers: Entry signals are generated from T3 crossovers and momentum strength after squeeze release
📊 Trading Rules
Long Entry:
When T3 crosses upward, momentum is positive, and the squeeze has just been released.
Short Entry:
When T3 crosses downward, momentum is negative, and the squeeze has just been released.
Exit (Reversal):
When the opposite condition to the entry is triggered, the position is reversed.
💰 Risk Management Parameters
Pair & Timeframe: BTC/USD (30-minute chart)
Capital (simulated): $30,00
Order size: `$100` per trade (realistic, low-risk sizing)
Commission: 0.02%
Slippage: 2 pips
Risk per Trade: 5%
Number of Trades (backtest period): 181
📊 Performance Overview
Symbol: BTC/USD
Timeframe: 30-minute chart
Date Range: January 1, 2024 – July 3, 2025
Win Rate: 47.8%
Profit Factor: 2.01
Net Profit: 173.16 (units not specified)
Max Drawdown: 5.77% or 24.91 (0.79%)
⚙️ Indicator Parameters
Indicator Name: RSI-Adaptive T3 + Squeeze Momentum
RSI Length: 14
T3 Min Length: 5
T3 Max Length: 50
T3 Volume Factor: 0.7
BB Length: 27 (Multiplier: 2.0)
KC Length: 20 (Multiplier: 1.5, TrueRange enabled)
🖼 Visual Support
T3 slope direction, squeeze status, and momentum bars are visually plotted on the chart,
providing high clarity for quick trend analysis and execution.
🔧 Strategy Improvements & Uniqueness
Inspired by the RSI Adaptive T3 by ChartPrime and Squeeze Momentum Indicator by LazyBear ,
this strategy fuses both into a hybrid trend-reversal and momentum breakout detection system .
Compared to traditional trend-following methods, it excels at capturing early trend signals with greater sensitivity .
✅ Summary
The RSI-Adaptive T3 + Squeeze Momentum Strategy combines momentum detection with volatility-responsive risk management.
With a strong balance between visual clarity and practicality, it serves as a powerful tool for traders seeking high repeatability.
⚠️ This strategy is based on historical data and does not guarantee future profits.
Always use appropriate risk management when applying it.
Logarithmic Moving Average (LMA) [QuantAlgo]🟢 Overview
The Logarithmic Moving Average (LMA) uses advanced logarithmic weighting to create a dynamic trend-following indicator that prioritizes recent price action while maintaining statistical significance. Unlike traditional moving averages that use linear or exponential weights, this indicator employs logarithmic decay functions to create a more sophisticated price averaging system that adapts to market volatility and momentum conditions.
The indicator displays a smoothed signal line that oscillates around zero, with positive values indicating bullish momentum and negative values indicating bearish momentum. The signal incorporates trend quality assessment, momentum confirmation, and multiple filtering mechanisms to help traders and investors identify trend continuation and reversal opportunities across different timeframes and asset classes.
🟢 How It Works
The indicator's core innovation lies in its logarithmic weighting system, where weights are calculated using the formula: w = 1.0 / math.pow(math.log(i + steepness), 2) The steepness parameter controls how aggressively recent data is prioritized over historical data, creating a dynamic weight decay that can be fine-tuned for different trading styles. This logarithmic approach provides more nuanced weight distribution compared to exponential moving averages, offering better responsiveness while maintaining stability.
The LMA calculation combines multiple sophisticated components. First, it calculates the logarithmic weighted average of closing prices. Then it measures the slope of this average over a 10-period lookback: lmaSlope = (lma - lma ) / lma * 100 The system also incorporates trend quality assessment using R-squared correlation analysis of log-transformed prices, measuring how well the price data fits a linear trend model over the specified period.
The final signal generation uses the formula: signal = lmaSlope * (0.5 + rSquared * 0.5) which combines the LMA slope with trend quality weighting. When momentum confirmation is enabled, the indicator calculates annualized log-return momentum and applies a multiplier when the momentum direction aligns with the signal direction, strengthening confirmed signals while filtering out weak or counter-trend movements.
🟢 How to Use
1. Signal Interpretation and Threshold Zones
Positive Values (Above Zero): LMA slope indicating bullish momentum with upward price trajectory relative to logarithmic baseline
Negative Values (Below Zero): LMA slope indicating bearish momentum with downward price trajectory relative to logarithmic baseline
Zero Line Crosses: Signal transitions between bullish and bearish regimes, indicating potential trend changes
Long Entry Threshold Zone: Area above positive threshold (default 0.5) indicating confirmed bullish signals suitable for long positions
Short Entry Threshold Zone: Area below negative threshold (default -0.5) indicating confirmed bearish signals suitable for short positions
Extreme Values: Signals exceeding ±1.0 represent strong momentum conditions with higher probability of continuation
2. Momentum Confirmation and Visual Analysis
Signal Color Intensity: Gradient coloring shows signal strength, with brighter colors indicating stronger momentum
Bar Coloring: Optional price bar coloring matches signal direction for quick visual trend identification
Position Labels: Real-time position classification (Bullish/Bearish/Neutral) displayed on the latest bar
Momentum Weight Factor: When short-term log-return momentum aligns with LMA signal direction, the signal receives additional weight confirmation
Trend Quality Component: R-squared values weight the signal strength, with higher correlation indicating more reliable trend conditions
3. Examples: Preconfigured Settings
Default: Universally applicable configuration balanced for medium-term investing and general trading across multiple timeframes and asset classes.
Scalping: Highly responsive setup with shorter period and higher steepness for ultra-short-term trades on 1-15 minute charts, optimized for quick momentum shifts.
Swing Trading: Extended period with moderate steepness and increased smoothing for multi-day positions, designed to filter noise while capturing larger price swings on 1-4 hour and daily charts.
Trend Following: Maximum smoothing with lower steepness for established trend identification, generating fewer but more reliable signals optimal for daily and weekly timeframes.
Mean Reversion: Shorter period with high steepness for counter-trend strategies, more sensitive to extreme moves and reversal opportunities in ranging market conditions.
Xcalibur Signals & Alerts [AlgoXcalibur]An advanced trend-following algorithm forged to empower retail traders with an edge.
Xcalibur Signals & Alerts is a sophisticated, multi-layered algorithm designed to consistently deliver real-time trend signals—without clutter or unnecessary complexity. The system combines refined trend-following logic with breakout detection, flat-market filtration, false signal failsafes, take profit cues, live alerts, and more — all in a visually simple, easy-to-use indicator built for all assets, timeframes, and market conditions.
🧠 Algorithm Logic
Xcalibur Signals & Alerts operates on a systematic framework that evaluates multiple technical dimensions in harmony—directional alignment, momentum confirmation, relative strength, volume bias, breakout detection, Fibonacci calculations, and more. Rather than reacting to isolated triggers, it filters every opportunity through a multi-layered confirmation engine. It doesn’t just react to every move—it evaluates them. This cohesive approach ensures that each signal results from aligned conditions—not arbitrary thresholds. By combining structural awareness with adaptive filtering, Xcalibur maintains clarity and consistency across a wide range of market environments—delivering actionable signals without unnecessary noise or lag.
⚙️ User-Adjustable Features
• Adjustable Sensitivity:
Choose from 5 pre-tuned Signal Trigger Settings and 3 dynamic Confirmation Filter Modes to tailor the system to your trading style, asset, and timeframe. Candle color reflects the active trigger condition, while an adaptive cyan line displays the selected Confirmation Filter—blocking signals until the filter threshold is crossed.
• Directional Stability Filter: When enabled, this filter uses mean-reversion calculations to determine directional bias and block unreliable signals during choppy, indecisive price action. A magenta line represents this filter threshold and provides higher-confidence signals during periods of low directional conviction.
• Pullback Allowance Filter:
When enabled, this unique filter uses Fibonacci ratios to deliberately block signals from temporary pullbacks during strong trend periods. A green (uptrend) or red (downtrend) line marks the active pullback allowance zone.
• False Signal Failsafe
:
Two selectable modes:
Simple — Cancels the signal if price breaks the signal candle’s high or low.
Advanced — Requires both a price break and opposing momentum confirmation.
When triggered, the system plots a white “X” signal, turns candles gray, disables the background color, sends an alert (if enabled), and enters standby mode until a valid trend condition re-emerges.
• Reaction Zones:
Identifies probable reversal or breakout zones based on recent price action patterns. A yellow line appears when active, with a yellow caution flag plotted if the price reaches this critical area.
• Take-Profit Cues
: Automatically detects potential trend exhaustion using price action structure and momentum shifts. When triggered, a visual “TP” marker is plotted—advising traders to manage profits or prepare for a possible reversal.
• Trailing Stop:
Plots a dynamic, percentage-based trailing stop or trailing take-profit using your selected input. Adjust it to suit your risk tolerance and asset.
• Multi-Timeframe Monitor
: Displays real-time trend direction across 1m, 2m, 5m, 15m, 1H, 4H, and 1D timeframes in a compact, easy-to-read table.
• Alert System
:
Receive desktop and/or mobile alerts for:
* New trend signals
* Failsafe triggers
* 9:00 AM Morning Greeting messages with auto re-arming confirmation
(Alerts are limited to 9:00 AM – 4:00 PM Eastern Time)
• SuperCandles
: Highlights strong momentum moves with a stunning and easily recognizable glow effect.
• Color-Coded Candles & Background
: Candles reflect the current trigger condition, while the background tint tracks the most recent trend—enhancing situational awareness.
*All input settings include tooltips to guide users through setup and interpretation.
⚔️ Not Just Another Signal Tool
Xcalibur Signals & Alerts was built from the ground up to empower retail traders with access to a cohesive, structured algorithmic system—one that reflects the kind of awareness, discipline, and market adaptability found in professional-grade algorithms.
This is not another oversensitive or under-responsive signal indicator that is limited to one specific type of market condition or trader. It does not utilize hyperactive triggers, rely on lagging crossover logic, or need infinitely adjustable and complex sensitivity settings. Instead of cluttered visuals to interpret, this indicator delivers a simple, easy-to-use tool—prioritizing clarity and usability without compromising on depth and sophistication.
Whether the market is trending, breaking out, or moving sideways, Xcalibur adapts—prioritizing trend stability, directional integrity, and visual clarity from one signal to the next.
⚠️ While the Xcalibur Signals & Alerts algorithm is immune to human emotion, you are not. Be mindful not to fall victim to costly emotions that can manipulate your judgment, and understand the unpredictable and complex nature of trading. No algorithm, strategy, or technique can deliver perfect accuracy, and Xcalibur Signals & Alerts is no exception. While AlgoXcalibur strives to be as accurate as possible, incorrect signals can and will occur. Xcalibur Signals & Alerts is a tool, not a guarantee. Users are fully responsible for making their own trading decisions, implementing proper risk management, and always trading responsibly.
🛡️ Wield Xcalibur as a standalone weapon or use it alongside other tools.
🔐 To get access or learn more, visit the Author’s Instructions section.