Gold Scalping Strategy (5min EMA, RSI, MACD, VPVR)//@version=5
indicator("Gold Scalping Strategy (5min EMA, RSI, MACD, VPVR)", overlay=true)
// 🔹 1. EMA 50 & EMA 200 sur un timeframe supérieur (15 min)
ema50 = ta.ema(request.security(syminfo.tickerid, "15", close), 50)
ema200 = ta.ema(request.security(syminfo.tickerid, "15", close), 200)
// Détection des croisements (Golden Cross & Death Cross)
goldenCross = ta.crossover(ema50, ema200)
deathCross = ta.crossunder(ema50, ema200)
plot(ema50, title="EMA 50 (15m)", color=color.blue, linewidth=2)
plot(ema200, title="EMA 200 (15m)", color=color.red, linewidth=2)
// 🔹 2. RSI (Relative Strength Index) sur 5 min
rsi = ta.rsi(close, 14)
rsiOverbought = 70
rsiOversold = 30
hline(rsiOverbought, "Surachat (70)", color=color.red)
hline(rsiOversold, "Survente (30)", color=color.green)
// Détection des signaux RSI
rsiBuySignal = ta.crossover(rsi, rsiOversold)
rsiSellSignal = ta.crossunder(rsi, rsiOverbought)
// 🔹 3. MACD (12,26,9) sur 5 min
= ta.macd(close, 12, 26, 9)
macdBuy = ta.crossover(macdLine, signalLine)
macdSell = ta.crossunder(macdLine, signalLine)
plot(macdLine, title="MACD Line", color=color.blue)
plot(signalLine, title="Signal Line", color=color.red)
// 🔹 4. Volume Profile basé sur 1H pour détecter les zones clés
vp = request.security(syminfo.tickerid, "60", ta.highest(close, 50))
plot(vp, title="Zone de volume", color=color.gray, style=plot.style_circles)
// ✅ Alertes automatiques adaptées au 5 min
alertcondition(goldenCross, title="Golden Cross (Achat)", message="EMA 50 a croisé EMA 200 à la hausse!")
alertcondition(deathCross, title="Death Cross (Vente)", message="EMA 50 a croisé EMA 200 à la baisse!")
alertcondition(rsiBuySignal, title="RSI Achat", message="RSI est en zone de survente (<30)!")
alertcondition(rsiSellSignal, title="RSI Vente", message="RSI est en zone de surachat (>70)!")
alertcondition(macdBuy, title="MACD Achat", message="MACD croise au-dessus du signal!")
alertcondition(macdSell, title="MACD Vente", message="MACD croise en dessous du signal!")
// Affichage des signaux sur le graphique
bgcolor(goldenCross ? color.green : na, transp=80)
bgcolor(deathCross ? color.red : na, transp=80)
المتوسطات المتحركة
ARENA-HUB-Edu-Script-RSI-EMA-SMA-ATRThe script was created as an educational tool to help recognize trends, identify entry points, use two RSI indicators together with moving averages, and understand when we are dealing with reversal points.
The script utilizes two RSI indicators on different timeframes for identification. To support this, it incorporates the relationship between three SMAs and three EMAs, while the Supertrend serves as a visual aid for educational purposes.
If you have any questions, feel free to message me.
Liquidity Location Detector [BigBeluga]
This indicator helps traders identify potential liquidity zones by detecting significant volume levels at key highs and lows. By using color intensity and scoring numbers, it visually highlights areas where liquidity concentration may be highest while incorporating trend analysis through EMAs.
🔵Key Features:
Liquidity Zone Detection: Automatically detects and marks areas where significant volume has accumulated at swing highs and lows.
Dynamic Box Plotting: Draws liquidity boxes at key highs and lows, updating based on market conditions.
Volume Strength Scaling: Uses a scoring system to rank liquidity zones, helping traders identify the strongest areas.
Color Intensity for Volume Strength: More transperent color indicate less liquidity, while less transperent represent stronger volume concentrations.
Customizable Display: Users can adjust the number of displayed liquidity zones and modify colors to suit their trading style.
Real-Time Liquidity Adaptation: As price interacts with liquidity zones, the indicator updates dynamically to reflect changing market conditions.
Auto-Stopping Liquidity Zones: Liquidity boxes automatically stop extending to the right once price crosses them, preventing outdated zones from interfering with live market action.
Trend Analysis with EMAs: Includes two optional EMAs (fast and slow) to help traders analyze market trends. Users can enable or disable these EMAs in the settings and use crossover signals for trend confirmation.
🔵Usage:
Identify Key Liquidity Areas: Use color intensity and transparency levels to determine high-impact liquidity zones.
Support & Resistance Confirmation: Liquidity zones can act as potential support and resistance levels, enhancing trade decision-making.
Market Structure Analysis: Observe how price interacts with liquidity to anticipate breakout or reversal points.
Scalping & Swing Trading: Works for both short-term and long-term traders looking for liquidity-based trade setups.
Liquidation Map Insight: A liquidity map highlights areas where large amounts of leveraged positions (both long and short) are likely to get liquidated. Since many traders use leverage, sharp price movements can trigger a cascade of liquidations, leading to rapid price surges or drops. Monitoring these liquidity zones and trends helps traders anticipate where price might react strongly.
Liquidity Location Detector is an essential tool for traders seeking to map out potential liquidity zones, providing deeper insights into market structure and trading volume dynamics.
VIDYA with Customizable Table RowsVolumatic VIDYA Enhanced
The Volumatic VIDYA (Variable Index Dynamic Average) indicator, originally created by BigBeluga, is a powerful trend-following tool that combines price and volume analysis to provide traders with a comprehensive view of market dynamics. This enhanced version, designed with user-friendliness in mind, builds upon the original by adding new features and customization options, making it even more versatile and easy to use.
Original Features (by BigBeluga)
VIDYA Core: This technique utilizes the Variable Index Dynamic Average (VIDYA) as the core smoothing technique to identify trends and filter market noise.
Volume Analysis: Plots volume levels at key market structure pivot points (lows and highs), helping traders understand the relationship between price and volume.
Delta Volume: Calculates and displays delta volume values to evaluate the balance between buy and sell pressure during each trend phase.
Trend Visualization: Clearly visualizes uptrends and downtrends with color-coded indicators, making it easy to identify market sentiment shifts.
Enhancements in This Version
1. Directional Movement Index (DMI) Integration:
Added +DI, -DI, and ADX metrics to assess trend strength and direction.
Includes a DMI Trend indicator to show whether the market is in an uptrend, downtrend, or neutral phase.
2. Volume SMAs with Color Coding:
Added Volume SMAs (9, 20, 51, 200) to analyze volume trends over different timeframes.
Color-coded SMAs (green for uptrend, red for downtrend, gray for neutral) provide quick visual cues.
3. Customizable Table:
Users can now enable or disable individual rows in the table to display only the metrics they care about.
Includes options for Buy Volume, Sell Volume, Delta Volume, Relative Volume, Volume SMAs, Trend Status, Signal, DMI Metrics, and more.
4. Improved Usability:
Added user-friendly input options for customizing the indicator's behavior and appearance.
Enhanced table layout for better readability and organization.
Why Use This Indicator?
Comprehensive Analysis: Combines price, volume, and trend strength metrics into a single tool.
Customizable: Tailor the indicator to your trading style by enabling or disabling specific features.
Visual Clarity: Color-coded trends and volume levels make it easy to interpret market conditions at a glance.
Market Sentiment: Delta volume and DMI metrics provide insights into buy-sell pressure and trend strength.
**Credits**
Original Creator: BigBeluga (for the Volumatic VIDYA indicator).
Enhancements: (for adding DMI integration, Volume SMAs, and customizable table options).
This enhanced version of the Volumatic VIDYA indicator is designed to help traders make more informed decisions by providing a deeper understanding of price, volume, and trend dynamics. Whether you're a beginner or an experienced trader, this tool offers valuable insights to improve your trading strategy.
GrowthGenius-NDTECHThe ndtech-GrowthGenius indicator is a custom trading tool designed to enhance trading decisions, particularly when used in conjunction with the MACD (Moving Average Convergence Divergence) indicator. Below is a detailed explanation of how it works and how to use it effectively in trading:
Key Features of ndtech-GrowthGenius Indicator
MACD-Based Enhancement:
The ndtech-GrowthGenius indicator builds on the traditional MACD by adding additional layers of analysis, such as trend strength, momentum confirmation, and potential reversal signals.
It uses the MACD line, signal line, and histogram but incorporates advanced algorithms to filter out noise and improve accuracy.
Trend Identification:
The indicator helps identify strong trends by analyzing the slope and divergence of the MACD histogram.
It highlights potential trend continuations or reversals by combining MACD data with other technical factors.
Momentum Confirmation:
The ndtech-GrowthGenius indicator provides additional momentum signals, such as overbought/oversold conditions, to confirm MACD crossovers.
Custom Alerts:
It includes customizable alerts for MACD crossovers, histogram divergences, and trend changes, making it easier for traders to act on signals in real-time.
User-Friendly Visualization:
The indicator is designed to be visually intuitive, with color-coded histograms, arrows, or other markers to highlight key trading opportunities.
How to Use ndtech-GrowthGenius with MACD
Install the Indicator:
Add the ndtech-GrowthGenius indicator to your trading platform (e.g., TradingView, MetaTrader).
Ensure the MACD indicator is also applied to the chart for comparison.
Identify MACD Crossovers:
Look for the MACD line crossing above the signal line (bullish signal) or below the signal line (bearish signal).
Use the ndtech-GrowthGenius indicator to confirm the strength of the crossover.
Analyze Histogram Divergence:
Pay attention to divergences between the MACD histogram and price action.
The ndtech-GrowthGenius indicator will highlight significant divergences that may indicate potential reversals.
Check Momentum Levels:
Use the momentum confirmation feature to ensure the market is not overbought or oversold before entering a trade.
Set Alerts:
Configure alerts for key signals, such as MACD crossovers or histogram peaks/troughs, to stay updated on potential trading opportunities.
Combine with Other Indicators:
For better accuracy, combine the ndtech-GrowthGenius indicator with other tools like RSI, moving averages, or support/resistance levels.
Example Trading Strategy
Entry:
Enter a long position when:
The MACD line crosses above the signal line.
The ndtech-GrowthGenius indicator confirms strong bullish momentum.
The histogram shows increasing positive values.
Exit:
Exit the trade when:
The MACD line crosses below the signal line.
The ndtech-GrowthGenius indicator shows weakening momentum or a bearish divergence.
Stop Loss and Take Profit:
Place a stop loss below the recent swing low (for long positions) or above the recent swing high (for short positions).
Set a take profit level based on risk-reward ratio (e.g., 1:2 or 1:3).
Advantages of ndtech-GrowthGenius
Improved Accuracy: Reduces false signals by filtering out market noise.
Customizable: Can be tailored to suit different trading styles and timeframes.
Real-Time Alerts: Helps traders act quickly on emerging opportunities.
Limitations
Lagging Nature: Like MACD, the ndtech-GrowthGenius indicator is based on historical data and may lag during highly volatile market conditions.
Requires Confirmation: Should be used alongside other technical analysis tools for best results.
Uwen FX: UWEN StrategyThis Pine Script defines a trading indicator called "Uwen FX: UWEN Strategy" Where ideas coming from Arab Syaukani and modified by Fiki Hafana. It combines a CCI-based T3 Smoothed Indicator with a MACD overlay. Here's a breakdown of what it does:
Key Components of the Script:
1. CCI (Commodity Channel Index) with T3 Smoothing
Uses a T3 smoothing algorithm on the CCI to generate a smoother momentum signal. The smoothing formula is applied iteratively using weighted averages. The final result (xccir) is plotted as a histogram, colored green for bullish signals and red for bearish signals.
2. MACD (Moving Average Convergence Divergence)
The MACD is scaled to match the range of the smoothed CCI for better visualization. Signal Line and MACD Line are plotted if showMACD is enabled. The normalization ensures that MACD values align with the CCI-based indicator.
3. Bar Coloring for Trend Indication
Green bars indicate a positive trend (pos = 1).
Red bars indicate a negative trend (pos = -1).
Blue bars appear when the trend is neutral.
How It Can Be Used:
Buy Signal: When the xccir (smoothed CCI) turns green, indicating bullish momentum.
Sell Signal: When xccir turns red, indicating bearish momentum.
MACD Confirmation: Helps confirm the trend direction by aligning with xccir.
I will add more interesting features if this indicator seems profitable
EMA BY RouzzyIt works by indicating the crossing of the trend, both bullish and bearish, and indicating the market trend.
*Blue indicates bullish movement
*Red indicates downward movement
*Black indicates the market trend
Works with any section and any market.
I hope it helps you a lot and you enjoy it.
OANDA:XAUUSD TVC:DXY OANDA:EURUSD FX:US30 BITSTAMP:BTCUSD
DEMA 21, DEMA 50 e DEMA 80 - Filtro de AlertasAlerta de Long e Short, baseado no cruzamento de DEMA21 e DEMA50.
EMA Cross Alert (5m EMA, Custom Timeframe Opposite Candle)Key Features
1. EMA Calculation:
* Calculates two EMAs:
* emaShort: 9-period EMA.
* emaLong: 21-period EMA.
* Plots these EMAs on the chart with transparency:
* EMA 9: Yellow with 50% transparency.
* EMA 21: Orange with 30% transparency.
2. Crossover Detection:
* Detects bullish crossovers (EMA 9 crosses above EMA 21).
* Detects bearish crossovers (EMA 9 crosses below EMA 21).
3. Custom Timeframe Opposite Candle:
* Allows the user to select a custom timeframe (1m, 2m, or 3m) for detecting an opposite candle after a crossover.
* An opposite candle is defined as:
* A red candle (close < open) for bullish crossovers.
* A green candle (close > open) for bearish crossovers.
4. State Tracking:
* Tracks whether the script is waiting for a red or green candle after a crossover:
* waitingForRed: Set to true after a bullish crossover.
* waitingForGreen: Set to true after a bearish crossover.
5. Alert Conditions:
* Triggers an alert when:
* A bullish crossover is followed by a red candleon the custom timeframe.
* A bearish crossover is followed by a green candle on the custom timeframe.
* Alerts are reset after being triggered.
6. Visual Markers:
* Plots shapes on the chart to indicate:
* Bullish crossovers (green circle below the bar).
* Bearish crossovers (red circle above the bar).
* Opposite candle alerts (crosses on the bar where the alert is triggered).
2. User Customization
* Custom Timeframe Selection:
* Users can choose between 1-minute, 2-minute, or 3-minute timeframes for detecting the opposite candle.
* This is done via the input.string function with options .
3. How It Works
1. EMA Crossovers:
* The script detects when the 9-period EMA crosses above or below the 21-period EMA on the 5-minute chart.
2. Opposite Candle Detection:
* After a crossover, the script waits for the first opposite candle on the selected custom timeframe:
* For a bullish crossover, it waits for a red candle.
* For a bearish crossover, it waits for a green candle.
3. Alerts:
* Alerts are triggered when the opposite candle is detected on the custom timeframe.
* The alert message specifies the type of crossover and the opposite candle condition.
4. Visual Feedback:
* The script provides visual feedback on the chart:
* Circles mark the crossover points.
* Crosses mark the opposite candle alerts.
4. Use Case
This script is ideal for traders who:
* Use EMA crossovers as a trend-following strategy.
* Want to confirm crossovers with price action on a different timeframe.
* Prefer to wait for an opposite candle (e.g., a pullback or continuation signal) before entering a trade.
5. Example Scenarios
1. Bullish Crossover:
* EMA 9 crosses above EMA 21 on the 5-minute chart.
* The script waits for a red candle on the selected custom timeframe (e.g., 2-minute chart).
* Once the red candle closes, a bullish alert is triggered.
2. Bearish Crossover:
* EMA 9 crosses below EMA 21 on the 5-minute chart.
* The script waits for a green candle on the selected custom timeframe (e.g., 2-minute chart).
* Once the green candle closes, a bearish alert is triggered.
6. Visual Markers
* Bullish Cross: Green circle below the bar.
* Bearish Cross: Red circle above the bar.
* Bullish Alert: Red cross below the bar.
* Bearish Alert: Green cross above the bar.
7. Summary
This script combines EMA crossovers with opposite candle confirmation on a custom timeframe to provide a more robust trading signal. It is particularly useful for traders who want to:
* Avoid false signals by waiting for price confirmation.
* Use multiple timeframes for better decision-making.
* Receive real-time alerts when conditions are met.
EMA: Technical Analysis Tool - PanelKey Features
1. Multiple EMAs:
* Calculates and plots EMAs for periods 8, 9, 20, 21, and 50.
* Allows customization of EMA colors.
2. VWAP (Volume-Weighted Average Price):
* Calculates VWAP and resets at the start of each trading session.
* Dynamically colors the VWAP line based on whether the price is above (green) or below (red) the VWAP.
3. RSI (Relative Strength Index):
* Calculates RSI with customizable length (default: 14).
* Highlights overbought (≥70) and oversold (≤30) conditions.
4. MACD (Moving Average Convergence Divergence):
* Calculates MACD with customizable short, long, and signal lengths.
* Displays bullish (green) or bearish (red) signals based on MACD line vs. signal line.
5. Parabolic SAR:
* Calculates Parabolic SAR and displays bullish (green) or bearish (red) signals based on price position relative to SAR.
6. Price Display:
* Displays the current price on the chart with a dotted line and label.
* Colors the line green if the current candle is bullish (close ≥ open) or red if bearish (close < open).
7. Cross Signals:
* Plots circles at crossover points for:
* EMA 9 vs. EMA 21 (bullish/bearish).
* EMA 8 vs. EMA 20 (bullish/bearish).
* Price vs. VWAP (bullish/bearish).
8. Table Display:
* Displays a summary table with the following information:
* EMA 8/20 and EMA 9/21 cross signals (bullish/bearish).
* EMA 50 signal (bullish/bearish).
* VWAP signal (bullish/bearish).
* MACD signal (bullish/bearish).
* Parabolic SAR signal (bullish/bearish).
* RSI value and overbought/oversold status.
2. User Customization
* EMA Colors: Users can customize the colors of each EMA.
* Table Options:
* Choose which indicators to display in the table (EMA 8/20, EMA 9/21, EMA 50, VWAP, MACD, RSI, Parabolic SAR).
* Adjust the table's position (e.g., top right, bottom left).
* Adjust the text size (auto, normal, small, tiny).
3. Visual Enhancements
* Dynamic Coloring:
* VWAP, MACD, Parabolic SAR, and EMA cross signals are colored green (bullish) or red (bearish).
* RSI is colored red (overbought), green (oversold), or gray (neutral).
* Plot Shapes:
* Circles are plotted at key crossover points (e.g., EMA crosses, price vs. VWAP).
4. Use Case
This script is designed for technical analysis and provides a comprehensive view of:
* Trend direction (using EMAs and VWAP).
* Momentum (using RSI and MACD).
* Volatility and reversals (using Parabolic SAR).
It is particularly useful for traders who want to:
* Identify trends and crossovers.
* Monitor key support/resistance levels (VWAP).
* Spot overbought/oversold conditions (RSI).
* Make decisions based on multiple indicators in one place.
5. Summary Table
The table consolidates all the signals into one place, making it easy to interpret the current market conditions at a glance. For example:
* EMA 8/20: Bullish/Bearish.
* EMA 9/21: Bullish/Bearish.
* EMA 50: Bullish/Bearish.
* VWAP: Bullish/Bearish.
* MACD: Bullish/Bearish.
* Parabolic SAR: Bullish/Bearish.
* RSI: Overbought/Oversold/Neutral.
This script is a powerful all-in-one tool for traders who rely on multiple technical indicators for decision-making.
RSI Long/Short Signals// Estratégia de Sinais Long e Short baseada apenas no RSI
//@version=6
indicator('RSI Long/Short Signals', overlay = true)
// Definição do RSI
rsi = ta.rsi(close, 14)
// Condições para LONG
long_condition = rsi < 25
// Condições para SHORT
short_condition = rsi > 75
// Plotando Sinais
plotshape(long_condition, location = location.belowbar, color = color.green, style = shape.labelup, title = 'LONG Signal')
plotshape(short_condition, location = location.abovebar, color = color.red, style = shape.labeldown, title = 'SHORT Signal')
// Alertas
if long_condition
alert('Sinal de LONG: RSI < 30 (Sobrevendido)', alert.freq_once_per_bar_close)
if short_condition
alert('Sinal de SHORT: RSI > 70 (Sobrecomprado)', alert.freq_once_per_bar_close)
Bollinger Bands con AlertasBollinger Bands con Alertas actualizado ahora la alerta sonará cada vez que haya un cruce del precio con una de las bandas
Simple Moving Averages MTFSimple Moving Averages MTF
This indicator plots Simple Moving Averages (SMAs) from multiple timeframes—intraday, daily, weekly, and monthly—right on your chart. It’s built for traders who want a clear, adaptable way to spot trends, whether trading short-term or holding long-term positions.
Key Features:
- Multi-Timeframe SMAs: View intraday, daily, weekly, and monthly SMAs in one place.
- Fully Customizable: Set lengths and colors for each SMA.
- Toggle On/Off: Show or hide SMAs to keep your chart clean.
- Quick Setup: Adjust settings inline with ease.
How to Use:
Add the indicator to your chart.
Open settings and pick a timeframe group (e.g., "Intraday Timeframes").
Enable/disable SMAs, tweak lengths and colors.
Hit "OK" to see it in action.
Interpretation:
- Support/Resistance: SMAs serve as dynamic levels for price reactions.
- Trend Signals: Rising SMAs indicate bullish momentum; falling SMAs suggest bearish.
- Crossovers: Short SMA crossing above a long SMA may signal a buy; below, a sell.
- Divergence: Price diverging from SMAs can hint at reversals.
Why Use It?
"Simple Moving Averages MTF" is a versatile, no-fuss tool for trend analysis. Use it solo or pair it with other indicators to match your trading style. Get multi-timeframe insights, simplified.
EMA BY CS v3It works by indicating the crossing of the trend, both bullish and bearish, and indicating the market trend.
*Green indicates bullish movement
*Red indicates downward movement
*Blue indicates the market trend
Works with any section and any market.
I hope it helps you a lot and you enjoy it.
TVC:DXY OANDA:EURUSD FX:US30 OANDA:XAUUSD BITSTAMP:BTCUSD
SCALPER 1 MINThe indicator is based on crossing EMAs. It provides buy and sell signals. You can also set your own TP and SL depending on your requirements. Tested with high leverage on XAU/USD, using TP settings for a $2 increase and SL at $2, it generates decent profits when the filter in the settings is enabled, which reduces false signals.
Cyclical trend Δx %🔄 Cyclical Trend Δx % - The Ultimate Tool for Cyclical Analysis
📊 Introduction
Cyclical Trend Δx % is much more than a simple indicator: it's a powerful cyclical analysis tool that will revolutionize your approach to trading. Created with the goal of identifying ongoing cyclical trends, during testing it demonstrated extraordinary capabilities in detecting Bayer cycles, cyclical closures, and trend interruptions with surprising precision.
This indicator represents a decisive advantage in the hands of aware traders who understand the importance of cyclical analysis in financial markets.
🔄 Cycle Closures and Starts
Precise identification of cyclical turning points is fundamental for any effective trading strategy. Cyclical Trend Δx % excels in this aspect:
🔹Bullish cross of the zero line: Precisely confirms the start of the cycle at the previous period low
🔹Bearish cross: Signals that the previous high represents the top of the cycle under examination, which won't be exceeded before the complete cyclical closure
📈 Shifted and Smoothed Average: Four Functions in One
The future-shifted average integrated into the tool offers multiple practical applications:
1️⃣ Cyclical Trend Identification
The slope of the average, positive or negative, immediately reveals the direction of the underlying cyclical trend.
2️⃣ Percentage Oscillation Estimate
Calculates the maximum percentage oscillation for return to the average, taking into account the intrinsic regression of the shifted average - a crucial advantage for positioning stops and targets.
3️⃣ Filtering of Cyclical Substructures
By combining the Cyclical Trend with its average, it's possible to ignore the substructures of the main cycle, focusing only on significant movements.
4️⃣ Signaling Pauses and Reversals
The bearish cross of the indicator on its average suggests a pause in the trend while seeking a minimum or, when both align downward, a trend reversal.
📏 Maximum Delta Analysis: Exceptional Power
One of the most innovative aspects of Cyclical Trend Δx% is its ability to measure the maximum percentage deviation from the cyclical average, providing valuable information on volatility and movement potential.
⚠️ Bayer Cycle Detection
In the presence of significant cyclical closures, when the indicator shows a scissor-like pattern relative to price, it's likely that you are near a Bayer cycle - information of inestimable value for anticipating important market movements.
🚀 Why Use Cyclical Trend Δx%?
While most indicators merely follow price movements, Cyclical Trend Δx% goes beyond, offering a true understanding of the market's cyclical structure. This allows you to:
🔹 Anticipate turning points instead of merely reacting
🔹 Distinguish between temporary corrections and true reversals
🔹 Optimize your entries and exits based on cyclical structure
🔹 Filter false signals by focusing only on significant movements
Don't let the cyclical structure of the market remain invisible to your eyes. Cyclical Trend Δx% transforms complex data into actionable information that can make the difference between consistent profits and missed opportunities.
[GYTS] Ultimate Smoother (3-poles + 2 poles)Ultimate Smoother (3-pole)
🌸 Part of GoemonYae Trading System (GYTS) 🌸
🌸 --------- INTRODUCTION --------- 🌸
💮 Release of 3-Pole Ultimate Smoother
This indicator presents a new 3-pole version of John Ehlers' Ultimate Smoother (2024) . This results in an unconventional filter that exhibits effectively zero lag in practical trading applications, regardless of the set period. By using a 2-pole high-pass filter in its design, it responds to price direction changes on the same bar, while still allowing the user to control smoothness.
💮 What is the Ultimate Smoother?
The original Ultimate Smoother is a revolutionary filter designed by John Ehlers (2024) that smooths price data with virtually zero lag in the pass band. While conventional filters always introduce lag when removing market noise, the Ultimate Smoother maintains phase alignment at low frequencies while still providing excellent noise reduction.
💮 Mathematical Foundation
The Ultimate Smoother achieves its remarkable properties through a clever mathematical approach:
1. Instead of directly designing a low-pass filter (like traditional moving averages), it subtracts a high-pass filter from an all-pass filter (the original input data).
2. At very low frequencies, the high-pass filter contributes almost nothing, so the output closely matches the input in both amplitude and phase.
3. At higher frequencies, the high-pass filter's response increasingly matches the input data, resulting in cancellation through subtraction.
The 3-pole version extends this principle by using a higher-order high-pass filter, requiring additional coefficients and handling more terms in the numerator of the transfer function.
🌸 --------- USAGE GUIDE --------- 🌸
💮 Period Parameter Behaviour
The period parameter in the 3-pole Ultimate Smoother works somewhat counterintuitively:
- Longer periods: Result in less smooth, but more responsive following of the price. The filter output more closely tracks the input data.
- Shorter periods: Produce smoother output but may exhibit overshooting (extrapolating price movement) for larger movements.
This is different from most filters where longer periods typically produce smoother outputs with more lag.
💮 When to Choose 3-Pole vs. 2-Pole
- Choose the 3-pole version when you need zero-lag but want to control the smoothness
- Choose the 2-pole version when you are okay with some lag with the benefit of more smoothness.
🌸 --------- ACKNOWLEDGEMENTS --------- 🌸
This indicator builds upon the pioneering work of John Ehlers, particularly from his article April 2024 edition of TASC's Traders' Tips . The original version is published on TradingView by @PineCodersTASC .
This 3-pole extension was developed by @GoemonYae . Feedback is highly appreciated!
5XMA-BandA useful 5-tier SMA/EMA lines.
You can set the MA periods and indicate "EMA" or "SMA" for each.
Morphine Moving AveragesMorphine Moving Averages (MMA) is a comprehensive technical analysis tool designed to give traders a clear, visual representation of key market trends. Combining several essential indicators into one, MMA includes:
Bollinger Bands (20 SMA, 2 standard deviation): Provides a dynamic range to identify volatility and potential reversals.
VWAP (Volume Weighted Average Price): Offers an average price weighted by volume, helping you assess market trends and potential entry points.
8 SMA: A simple moving average that helps identify short-term trends.
20 EMA: A faster-moving average that responds to recent price changes, ideal for spotting shorter-term momentum.
50 EMA: Represents a medium-term trend, smoothing out price action for better market clarity.
200 EMA: A long-term moving average, widely followed to understand the broader trend and potential support/resistance zones.
Each line is color-coded for quick identification, making it an ideal tool for both short-term and long-term traders who want a comprehensive view of the market's key levels. Use the Morphine Moving Averages indicator to spot trends, reversals, and key support/resistance levels all in one glance!
Make sure you have it pinned to price scale right.
If you have any questions or bugs, feel free to reach out to me on X. x.com
Multi-Filter Momentum OscillatorMulti-Filter Momentum Oscillator
Description
The Multi-Filter Momentum Oscillator is an advanced technical indicator that leverages multiple moving average filters to identify trend strength, momentum shifts, and potential reversal points in price action. This indicator combines a cluster-based approach with momentum analysis to provide traders with a comprehensive view of market conditions.
Key Components
Filter Cluster Analysis: The indicator creates an array of moving averages with different periods using your choice of filter (PhiSmoother, EMA, DEMA, TEMA, WMA, or SMA). These filters form a cluster that helps identify the underlying trend direction.
Composite Score: The relative positions of these filters are analyzed to generate a net score, which represents the overall trend strength and direction.
Signal Line: A smoothed version of the composite score that helps identify momentum shifts.
Four-Color Histogram: Visualizes the relationship between the score and signal line with four distinct colors:
Bright Green (Bullish Rising): Positive momentum that is accelerating
Olive Green (Bullish Falling): Positive momentum that is decelerating
Dark Red (Bearish Rising): Negative momentum that is improving
Bright Red (Bearish Falling): Negative momentum that is worsening
LazyLine Overlay: An additional triple-smoothed WMA that can be displayed on the price chart to visualize the dominant trend.
Trading Applications
Trend Direction: The oscillator's position above or below zero indicates the prevailing trend direction.
Momentum Shifts: The histogram's color changes signal momentum shifts before they become apparent in price.
Divergence Detection: Compare oscillator peaks/troughs with price action to identify potential divergences.
Overbought/Oversold Conditions: Extreme readings near the upper and lower threshold levels can indicate potential reversal zones.
Trend Confirmation: The LazyLine overlay confirms the broader trend direction on the price chart.
Customization Options
The indicator offers extensive customization through multiple parameters:
Filter type selection (PhiSmoother, EMA, DEMA, TEMA, WMA, SMA)
Cluster dispersion and trim settings
Post-smoothing options
Signal line parameters
Threshold levels
Color preferences for various elements
Histogram width and visibility
Optional swing signals with customizable placement
Modes
Trend Strength Mode: Focuses on the directional movement of the filter cluster.
Volatility Mode: Weights the score based on the bandwidth of the filter cluster, making it more responsive during volatile periods.
This versatile oscillator combines elements of trend following, momentum analysis, and volatility assessment to provide traders with actionable signals across different market conditions. The four-color histogram adds another dimension to traditional oscillator analysis by visually representing both the direction and strength of momentum shifts.
ZLSMA Trend- Zero Lag SMA TrendThanks to the original author for this indicator!
----------------------------------------------------------
Zero lag signal line, now with ALERT-FIX, an option to get alarms/alerts when trend changes
ATR Mean Reversion# ATR Mean Reversion Indicator
## Overview
The ATR Mean Reversion Indicator is designed to identify potential reversal points in the market by detecting when price has become overextended from its mean. The indicator uses Average True Range (ATR) and Keltner Channels to determine when price has moved too far from its average, suggesting a possible reversion back to the mean.
## Key Features
- **Keltner Channels**: Uses EMA as a midline with ATR-based upper and lower bands
- **Trend Detection**: Includes trend strength analysis to avoid countertrend trades
- **Reversal Signals**: Identifies potential buy and sell signals based on price action
- **Risk Management**: Includes parameters for position sizing and stop loss calculations
## Default Settings
- **ATR Period**: 5 (Measures market volatility over the last 5 periods)
- **EMA Period**: 50 (Base line for calculating the mean)
- **Keltner Channel Multiplier**: 2.5 (Width of the bands as a multiple of ATR)
- **Trade Fraction**: 0.5 (Percentage of equity to risk per trade)
- **Stop Loss %**: 0.04 (4% stop loss from entry)
## Visual Elements
- **EMA Line**: Blue line showing the mean price
- **Upper Keltner Channel**: Red line showing overextended high zone
- **Lower Keltner Channel**: Green line showing overextended low zone
- **BUY Signal**: Green triangle below the candle
- **SELL Signal**: Red triangle above the candle
- **Info Panel**: Table in the top-right showing current values and market conditions
## Trading Tips
1. **Best Market Conditions**: This strategy works best in ranging markets or during temporary pullbacks in a trend
2. **Avoid**: Using this strategy in strongly trending markets without confirmation
3. **Confirmation**: Consider waiting for additional confirmation like RSI or volume patterns
4. **Stop Loss**: Always place a stop loss, suggested at the ATR multiplier distance from entry
5. **Take Profit**: Consider taking profits when price approaches the mean (EMA line)
## Risk Management
- Use the trade fraction parameter to control position sizing
- Consider reducing position size in highly volatile markets
- The indicator includes built-in alerts that can be set for both BUY and SELL signals
## Customization
You can adjust the parameters to suit different market conditions:
- Increase the ATR Period for less sensitive volatility measurement
- Increase the Keltner Multiplier for fewer but potentially stronger signals
- Adjust the EMA Period based on your trading timeframe (higher for longer-term trades)
## Best Timeframes
The indicator can be used on any timeframe, but typically works well on:
- 1H, 4H charts for short to medium-term trades
- Daily charts for swing trading opportunities
Remember that no indicator is perfect, and the ATR Mean Reversion indicator should be used as part of a complete trading system with proper risk management.
200 Day SMA HighlighterHighlights area under chart for 200 day moving average (adjustable).
Shows color coding for when price is above or below the sma.