bojunGGAE Ribbonssma 20 smma7
sma99 smma50
리본끼리 데크나거나 골크나거나
지지받으면 개상승
뚫리면 개떡락
아주명확함
그냥 sma ema보다 훨신나음 보기에
sma 20 smma7
sma99 smma50
Ribbons are decked or tall
If you get support, you will be rehabilitated.
If it is pierced, it will be a slap in the face
Very clear
It's much better than just SMA EMA to look at
Indicadores de Banda
M A COverview
Indicator Declaration: The script starts by defining an indicator named “M A C” that overlays on the main price chart.
Plotting Close Price: It plots the closing prices of the asset using the plot(close) function.
Inputs
Moving Average Length: Users can set the length of the moving average with a default value of 21.
Exponential vs. Simple MA: A toggle option allows the user to choose between an Exponential Moving Average (EMA) and a Simple Moving Average (SMA).
Bollinger Bands: Users can choose to display Bollinger Bands by toggling the relevant input.
Corridor Visualization: There is an option to visualize a corridor defined by two moving averages of the high and low prices.
Fill Color: Users can choose to fill the corridor with the color of the moving average.
Calculations
Moving Averages: The script calculates the selected moving average (either EMA or SMA) for closing prices, high prices, and low prices.
Bollinger Bands: If enabled, it calculates the upper and lower bands based on the moving average and the standard deviation, adjusting the bands according to a user-defined multiplier.
Plotting
MA Color Logic: The color of the moving average line changes based on the price’s relationship to the moving averages of the high and low prices—green when the close is above the high MA, red when below the low MA, and blue otherwise.
Bollinger Bands Visualization: If enabled, the upper and lower Bollinger Bands are plotted, and a shaded area between them is filled with a light blue color.
Corridor Plotting: If the corridor option is chosen, the script plots the moving averages of the high and low prices and can fill the space between them with the selected MA color.
Summary
This script is a versatile tool for traders, allowing them to visualize the price action alongside dynamic moving averages and Bollinger Bands. The customizable features provide flexibility for different trading strategies, helping traders identify potential buy and sell based on the behavior of the price relative to the moving averages and bands.
IRUS: % stocks above SMA 50 / 100 / 200
📊 IRUS Breadth Indicators (MOEX Market Breadth)
This script shows market breadth conditions based on the percentage of stocks or sectors trading above selected moving averages (SMA or EMA) with customizable periods (50 / 100 / 200).
There are two modes available:
IRUS Ticker-Based Breadth
Calculates the % of liquid Russian stocks (IRUS group) trading above a selected MA.
Great for detailed breadth analysis based on individual stock participation.
Sector-Based Breadth
Calculates the % of major MOEX sector indices above their MAs.
A clean, high-level view of market strength across sectors.
Use these indicators to assess market health, detect divergences, and filter
Trade Flux Pro v1Multi-Timeframe Indicator System: Advanced Technical Analysis Solution
This Pine Script 6 based analysis system combines technical indicators across different timeframes to generate more reliable signals.
How It Works
The system analyzes primary and secondary indicators across three timeframes (lower, current, and higher), allowing users to better evaluate market movements with multiple confirmation levels.
Key Features
Dual Momentum Indicators: Combines two complementary oscillators for signal generation
Triple Timeframe Analysis: Examines lower, current, and higher timeframes simultaneously
Flexible Confirmation Modes: Choose between majority, all, or any timeframe confirmation
Visual Signals: Clear markers and color-coded panel showing indicator status
Notification System: Webhook integration for external alerts
Recommended Markets
Suitable for crypto, forex, stock, and futures markets with optimized settings for each.
Practical Applications
More accurate trend identification
Optimized entry and exit points
Reduced false signals
Adaptable to different market conditions
This system is fully compatible with Pine Script 6 and optimized for the TradingView platform.
MOEX Sectors: % Above MA 50/100/200 (EMA/SMA)📊 Indicator Name:
MOEX Sector Breadth: % Above MA 50/100/200 (EMA/SMA)
📝 Description:
This indicator tracks market breadth across sector indices of the Moscow Exchange (MOEX). It calculates the percentage of sectors trading above selected moving averages (SMA or EMA) with user-defined periods (50, 100, or 200).
It provides a high-level view of market participation and internal strength, helping to identify broad trends, divergences, and potential reversals.
📦 Tracked MOEX Sector Indices:
mathematica
Copy
Edit
MOEXOG — Oil & Gas
MOEXCH — Chemicals
MOEXMM — Metals & Mining
MOEXTN — Transport
MOEXCN — Consumer
MOEXFN — Financials
MOEXTL — Telecom
MOEXEU — Utilities
MOEXIT — Information Technology
MOEXRE — Real Estate
📈 How to Use:
>50% above MA 200 → Bullish market regime
<50% above MA 200 → Weak breadth, caution advised
>90% above MA 50 → Market may be overbought
<10% above MA 200 → Market oversold, possible bottom
Combine with the IMOEX index to assess participation behind major moves
Use as a trend filter or divergence detector
Quantum Phoenix 2.0 Quantum Phoenix 2.0 – Strategy Documentation
Version: Pine Script v5
Platform: TradingView
Script Type: Strategy (Backtest & Alerts)
Overlay: Yes
Purpose: To identify high-probability breakout entries with trend, volume, and multi-timeframe confirmation.
🔧 Inputs
Parameter Description Default
Risk % Percentage of account risked per trade 1.0%
Account Size ($) Virtual capital for position size calculation 10,000
Take Profit % Target profit per trade 3.0%
Stop Loss % Maximum allowed loss per trade 1.5%
Min. ADX Strength Minimum trend strength to validate entry 20
Volume Filter If enabled, filters out low-volume conditions Enabled
📈 Indicators Used
EMA 50 & EMA 200: Trend confirmation
RSI (14): Momentum condition
MACD Histogram: Entry timing filter
SuperTrend (3,7): Trend direction
ADX & DMI (14): Trend strength and direction
Volume + 20 SMA: Volume filter
ATR (14): Used for dynamic position sizing
MTF EMAs (1H): Higher timeframe trend confirmation
📊 Entry Conditions
🟢 LONG:
Price > EMA200
EMA50 > EMA200
RSI between 40–70
MACD Histogram > 0
1H EMA50 > 1H EMA200 (MTF Trend Up)
ADX > threshold and SuperTrend is Bullish
Volume filter (if enabled) must be met
🔴 SHORT:
Price < EMA200
EMA50 < EMA200
RSI between 30–60
MACD Histogram < 0
1H EMA50 < 1H EMA200 (MTF Trend Down)
ADX > threshold and SuperTrend is Bearish
Volume filter (if enabled) must be met
💼 Risk Management
Uses ATR-based position sizing
Position Size = (AccountSize * Risk%) / ATR
Take Profit and Stop Loss levels are calculated based on % of price
📉 Strategy Orders
pinescript
Kopyala
Düzenle
strategy.entry("Long", strategy.long, when=longCond)
strategy.exit("TP/SL Long", from_entry="Long", limit=TP Level, stop=SL Level)
strategy.close("Long", when=MACD Histogram < 0 or RSI > 70)
strategy.entry("Short", strategy.short, when=shortCond)
strategy.exit("TP/SL Short", from_entry="Short", limit=TP Level, stop=SL Level)
strategy.close("Short", when=MACD Histogram > 0 or RSI < 30)
📊 Visual Components
EMA Lines: EMA50 (orange), EMA200 (teal)
Labels on Chart: “AL” for Long, “SAT” for Short
Dashboard Table (Top-Right):
Strategy name
Account balance
TP & SL rates
Current ADX & ATR values
Multi-Timeframe Trend Status (UP / DOWN / FLAT)
🚨 Alerts
LONG Giriş: Triggers when all Long conditions are met
SHORT Giriş: Triggers when all Short conditions are met
Ideal for automated alert-based trading bots or Telegram signal bots
📌 Notes
Script is designed for educational and strategic testing purposes.
Real trading decisions must include manual confirmation and risk assessment.
Strategy results may vary based on asset type and market conditions.
MOEX Sectors: % Above MA 50/100/200 (EMA/SMA)📊 Indicator Name:
MOEX Sector Breadth: % Above MA 50/100/200 (EMA/SMA)
📝 Description:
This indicator tracks market breadth across sector indices of the Moscow Exchange (MOEX). It calculates the percentage of sectors trading above selected moving averages (SMA or EMA) with user-defined periods (50, 100, or 200).
It provides a high-level view of market participation and internal strength, helping to identify broad trends, divergences, and potential reversals.
📦 Tracked MOEX Sector Indices:
mathematica
Copy
Edit
MOEXOG — Oil & Gas
MOEXCH — Chemicals
MOEXMM — Metals & Mining
MOEXTN — Transport
MOEXCN — Consumer
MOEXFN — Financials
MOEXTL — Telecom
MOEXEU — Utilities
MOEXIT — Information Technology
MOEXRE — Real Estate
📈 How to Use:
>50% above MA 200 → Bullish market regime
<50% above MA 200 → Weak breadth, caution advised
>90% above MA 50 → Market may be overbought
<10% above MA 200 → Market oversold, possible bottom
Combine with the IMOEX index to assess participation behind major moves
Use as a trend filter or divergence detector
Dskyz (DAFE) Aurora Divergence - Dskyz (DAFE) Aurora Divergence Indicator
Advanced Divergence Detection for Traders. Unleash the power of divergence trading with this cutting-edge indicator that combines price and volume analysis to spot high-probability reversal signals.
🧠 What Is It?
The Dskyz (DAFE) Aurora Divergence Indicator is designed to identify bullish and bearish divergences between the price trend and the On Balance Volume (OBV) trend. Divergence occurs when the price of an asset and a technical indicator (in this case, OBV) move in opposite directions, signaling a potential reversal. This indicator uses linear regression slopes to calculate the trends of both price and OBV over a specified lookback period, detecting when these two metrics are diverging. When a divergence is detected, it highlights potential reversal points with visually striking aurora bands, orbs, and labels, making it easy for traders to spot key signals.
⚙️ Inputs & How to Use Them
The indicator is highly customizable, with inputs grouped under "⚡ DAFE Aurora Settings" for clarity. Here’s how each input works:
Lookback Period: Determines how many bars are used to calculate the price and OBV slopes. Higher values detect longer-term trends (e.g., 20 for 1H charts), while lower values are more responsive to short-term movements.
Price Slope Threshold: Sets the minimum slope value for the price to be considered in an uptrend or downtrend. A value of 0 allows all slopes to be considered, while higher values filter for stronger trends.
OBV Slope Threshold: Similar to the price slope threshold but for OBV. Helps filter out weak volume trends.
Aurora Band Width: Adjusts the width of the visual bands that highlight divergence areas. Wider bands make the indicator more visible but may clutter the chart.
Divergence Sensitivity: Scales the strength of the divergence signals. Higher values make the indicator more sensitive to smaller divergences.
Minimum Strength: Filters out weak signals by only showing divergences above this strength level. A default of 0.3 is recommended for beginners.
Signal Cooldown (Bars): Prevents multiple signals from appearing too close together. Default is 5 bars, reducing chart clutter and helping traders focus on significant signals.
These inputs allow traders to fine-tune the indicator to match their trading style and timeframe.
🚀 What Makes It Unique?
This indicator stands out with its innovative features:
Price-Volume Divergence: Combines price trend (slope) and OBV trend for more reliable signals than price-only divergences.
Aurora Bands: Dynamic visual bands that highlight divergence zones, making it easier to spot potential reversals at a glance.
Interactive Dashboard: Displays real-time information on trend direction, volume flow, signal type, strength, and recommended actions (e.g., "Consider Buying" or "Consider Selling").
Signal Cooldown: Ensures only the most significant divergences are shown, reducing noise and improving usability.
Alerts: Built-in alerts for both bullish and bearish divergences, allowing traders to stay informed even when not actively monitoring the chart.
Beginner Guide: Explains the indicator’s visuals (e.g., aqua orbs for bullish signals, fuchsia orbs for bearish signals), making it accessible for new users.
🎯 Why It Works
The indicator’s effectiveness lies in its use of price-volume divergence, a well-established concept in technical analysis. When the price trend and OBV trend diverge, it often signals a potential reversal because the underlying volume support (or lack thereof) is not aligning with the price action. For example:
Bullish Divergence: Occurs when the price is making lower lows, but the OBV is making higher lows, indicating weakening selling pressure and potential upward reversal.
Bearish Divergence: Occurs when the price is making higher highs, but the OBV is making lower highs, suggesting weakening buying pressure and potential downward reversal.
The use of linear regression ensures smooth and accurate trend calculations over the specified lookback period. The divergence strength is then normalized and filtered based on user-defined thresholds, ensuring only high-quality signals are displayed. Additionally, the cooldown period prevents signal overload, allowing traders to focus on the most significant opportunities.
🧬 Indicator Recommendation
Best For: Traders looking to identify potential trend reversals in any market, especially those where volume data is reliable (e.g., stocks, futures, forex).
Timeframes: Suitable for all timeframes. Adjust the lookback period accordingly—smaller values for shorter timeframes (e.g., 1H), larger for longer ones (e.g., 4H or daily).
Pair With: Support and resistance levels, trend lines, other oscillators (e.g., RSI, MACD) for confirmation, and volume profile tools for deeper analysis.
Tips:
Look for divergences at key support/resistance levels for higher-probability setups.
Pay attention to signal strength; higher strength divergences are often more reliable.
Use the dashboard to quickly assess market conditions before entering a trade.
Set up alerts to catch divergences even when not actively watching the chart.
🧾 Credit & Acknowledgement
This indicator builds upon the classic concept of price-volume divergence, enhancing it with modern visualization techniques, advanced filtering, and user-friendly features. It is designed to provide traders with a powerful yet intuitive tool for spotting reversals.
📌 Final Thoughts
The Dskyz (DAFE) Aurora Divergence Indicator is more than just a divergence tool; it’s a comprehensive trading assistant that combines advanced calculations, intuitive visualizations, and actionable insights. Whether you’re a seasoned trader or just starting out, this indicator can help you spot high-probability reversal points with confidence.
Use it with discipline. Use it with clarity. Trade smarter.
**I will continue to release incredible strategies and indicators until I turn this into a brand or until someone offers me a contract.
-Dskyz
NY AM Session Quartile LinesNY AM Session Quartile Lines
This script automatically divides the New York AM session (6:00 AM to 12:00 PM NY time) into four clear quartiles.
It helps traders visualize the market structure by marking each new quartile with customizable vertical lines.
🔹 Features:
Configurable session start time (NY time).
Adjustable line color, width, and style (solid, dashed, or dotted).
Clean, lightweight design that fits any trading style.
Works across all instruments and timeframes that cover the NY session.
🔹 Perfect for:
Intraday traders who focus on New York session dynamics.
Identifying accumulation, manipulation, and distribution phases across the session.
Structuring the AM session into logical market segments for better planning and analysis.
🎯 Default Settings:
Start Hour: 6:00 AM NY
Line Style: Dashed
Line Color: Black
Line Width: 2
BTC/XAUT Rotational Strategy ✅Relative inverse proportionality for Gold Vs. BTC I used tokenized gold XAUT paired with gold price. The goal of this indicator is assuming that the leader of the crypto world is BTC and dumps or bumps affects severely the alt coins in a direct proportionality basis.
To prevent losses rotating to safer assets as gold in its blockchain form, in a specific moment, could be one of the best options. There is a relative inverse proportionality between Gold and BTC, that occurs in some ratios in particular. The goal of this tool is to detect them and advise us to rotate from one kind of assets to the other. The moist accurate time frame is weekly or monthly. Enjoy the ride
Market Exposure Zones – Multi-Market📊 Market Exposure Zones – Multi-Market 📊
This indicator visually displays market exposure zones based on the relationship between key moving averages (10, 20, 50, and 200 SMA). It dynamically adapts to your chart’s exchange:
✅ NSE: Tracks CNX500
✅ NASDAQ/NYSE/AMEX: Displays NASDAQ and SPY
✅ ASX: Displays XJO
Color-coded exposure levels help guide risk positioning:
🔴 5% – Weak trend: 10MA < 20MA < 200MA
🌸 10–30% – Early recovery phase
🟠 30–70% – Strengthening momentum
🟢 70–100% – Full trend confirmation
Useful for position sizing, market timing, and understanding trend structure.
⚠️ Disclaimer:
This tool is for informational and educational purposes only. It does not constitute financial advice. Please use it at your own discretion and manage your risk accordingly.
TripleTP Filter ProThis strategy is a sophisticated trading system that combines multiple technical indicators to identify entry and exit points in the market. Here are the key positives of the strategy without revealing the proprietary code details:
Strategy Strengths
Triple Take Profit Mechanism
Implements a well-structured take profit system with three distinct levels, allowing for partial profit taking at different price points. This helps maximize returns while keeping a portion of the position open for potential continued price movement.
Percentage-Based Position Sizing
Each take profit level can be configured with a specific percentage of the position, allowing for customized risk management.
Dual Confirmation System
Entry signals require confirmation from two separate technical indicators , reducing false signals and increasing reliability.
Smart Filtering
Uses advanced filtering techniques that adapt to market volatility, creating a responsive system that can work in different market conditions.
Directional Trend Detection
Incorporates trend detection that identifies whether the market is in an upward or downward movement, ensuring trades align with the prevailing direction.
Signal Reset Logic
Includes an option to wait for new signals after take profits are hit, preventing premature re-entry into potentially exhausted moves.
Time Window Configuration
Allows testing and execution within specific date ranges, useful for backtesting and performance analysis.
Adaptive Volatility Measurement
Uses multiple methods to assess market volatility including ATR, Average Change, and Standard Deviation.
The strategy demonstrates sophisticated market analysis techniques and thoughtful risk management principles, making it suitable for traders who want to capture profits at multiple levels while maintaining a disciplined approach to entries and exits.
Ultimate Volatility AnalyzerThis script uses volatility indicators to give directions of any asset. The moving average, price above long and short below. As the price comes out of the squeeze if the price is above the average it usually long and short below it. Very simple. When the average is going sideways stay out of the trade. Use with combination of other indicators but work well on its own. Use anytime frame you want.
Sonic R+EMA PYTAGOSonic R is a famous discovery of a trader from Singapore. This is a famous trader with topics that attract great interest from the community. Here we will learn about the Sonic R indicator through the following contents:
What is Sonic R?
Install Sonic R on Tradingview
Structure of the Sonic R indicator
03 applications of the Sonic R indicator
Sonic R system rules
How to use Sonic R effectively in trading
06 notes when using Sonic R
What is Sonic R?
Sonic R is an indicator that has been used for a long time in the world, but in Vietnam it has only been popular in the past few years. This EMA set still has the properties of all EMAs:
Trend: Price is above Sonic R for an uptrend, below Sonic R for a downtrend.
Price goes too far and tends to converge with the EMA.
Dynamic support and resistance: price breaks through the EMA and acts to return to test.
Sonic R is an indicator like a moving support resistance resistance with a combination of EMA lines. Including EMA 34, 89 and 200. So why EMA 34 and 89? According to Elliott wave theory, each large wave will have 34 main waves and 89 corrective waves. The EMA lines act as psychological support and resistance. The larger the EMA, the greater the resistance.
Moving Average PairSonic R is a famous discovery of a trader from Singapore. This is a famous trader with topics that attract great interest from the community. Here we will learn about the Sonic R indicator through the following contents:
What is Sonic R?
Install Sonic R on Tradingview
Structure of the Sonic R indicator
03 applications of the Sonic R indicator
Sonic R system rules
How to use Sonic R effectively in trading
06 notes when using Sonic R
What is Sonic R?
Sonic R is an indicator that has been used for a long time in the world, but in Vietnam it has only been popular in the past few years. This EMA set still has the properties of all EMAs:
Trend: Price is above Sonic R for an uptrend, below Sonic R for a downtrend.
Price goes too far and tends to converge with the EMA.
Dynamic support and resistance: price breaks through the EMA and acts to return to test.
Sonic R is an indicator like a moving support resistance resistance with a combination of EMA lines. Including EMA 34, 89 and 200. So why EMA 34 and 89? According to Elliott wave theory, each large wave will have 34 main waves and 89 corrective waves. The EMA lines act as psychological support and resistance. The larger the EMA, the greater the resistance.
RSI + Stochatic RSI BOTSonic R is a famous discovery of a trader from Singapore. This is a famous trader with topics that attract great interest from the community. Here we will learn about the Sonic R indicator through the following contents:
What is Sonic R?
Install Sonic R on Tradingview
Structure of the Sonic R indicator
03 applications of the Sonic R indicator
Sonic R system rules
How to use Sonic R effectively in trading
06 notes when using Sonic R
What is Sonic R?
Sonic R is an indicator that has been used for a long time in the world, but in Vietnam it has only been popular in the past few years. This EMA set still has the properties of all EMAs:
Trend: Price is above Sonic R for an uptrend, below Sonic R for a downtrend.
Price goes too far and tends to converge with the EMA.
Dynamic support and resistance: price breaks through the EMA and acts to return to test.
Sonic R is an indicator like a moving support resistance resistance with a combination of EMA lines. Including EMA 34, 89 and 200. So why EMA 34 and 89? According to Elliott wave theory, each large wave will have 34 main waves and 89 corrective waves. The EMA lines act as psychological support and resistance. The larger the EMA, the greater the resistance.
Px & Vol Up/Dn Ratio with MAPx & Vol Up/Down Ratio with Moving Average
This custom indicator calculates the Price Up/Down Ratio and Volume Up/Down Ratio over a user-defined lookback period. It provides a unique perspective on market strength by comparing the magnitude of gains vs. losses (in both price and volume) — helping traders gauge the underlying momentum and accumulation/distribution behavior.
🔍 Core Features:
Price Ratio: Total positive price change divided by the absolute value of total negative price change.
Volume Ratio: Total volume on up days divided by total volume on down days.
Moving Average Overlay: Smooth each ratio with your choice of moving average — SMA, EMA, or WMA.
Customizable lookback period and moving average length for flexible analysis.
🧭 Use Case:
A rising Price Ratio above 1 indicates stronger positive price action than negative.
A rising Volume Ratio above 1 suggests increased participation on up moves — a sign of accumulation.
Divergences between Price and Volume ratios can provide early clues on trend reversals or weakening momentum.
🧱 Visual Aids:
Includes six key horizontal reference lines at levels: 0.5, 0.75, 1, 1.25, 1.5, 2 to benchmark current ratio strength.
Color-coded plots for clarity:
Blue for Price Ratio
Green for Volume Ratio
EMA 9|48|180Triple EMA 9|48|180
Here's a brief overview of how these EMAs can work together:
EMA 9 : This is a shorter-term moving average that reacts quickly to price changes. It can be used to identify short-term trends and potential entry points.
EMA 48 : This intermediate-term moving average can help smooth out the price action and provide insight into medium-term trends.
EMA 180 : This longer-term moving average provides a view of the overall trend. It reacts slowly to price changes and can help to identify the broad direction of the market.
How to Use Them Together:
Crossover Strategy: Traders often look for crossovers between these EMAs to signal potential buy or sell opportunities. For example, a bullish signal occurs when the EMA 9 crosses above the EMA 48, and a bearish signal occurs when it crosses below.
Trend Confirmation: You can use the EMA 180 as a trend filter. For instance, you might only take long trades when the price is above the EMA 180 and only take short trades when it's below.
Advantages:
Trend Following: This strategy can help traders follow established trends and capitalize on them.
Flexibility: The EMAs can be adapted for different time frames and assets.
Disadvantages:
Lagging Indicator: EMAs are lagging indicators, meaning they respond to price changes rather than predict them, which can sometimes result in delayed signals.
Whipsaws: In a ranging or choppy market, EMAs can generate false signals, leading to potential losses.
Conclusion:
Whether or not EMA 9, 48, and 180 form a "good" strategy largely depends on your trading style (day trading, swing trading, etc.), risk tolerance, and how well you're able to manage trades. Backtesting the strategy against historical data, along with a solid risk management plan, is crucial in determining its effectiveness for your specific trading goals. Additionally, combining EMA signals with other indicators or analysis techniques (like support and resistance, volume analysis, or candlestick patterns) can improve the robustness of your strategy.
Moving average with different timeThis script allowing you to plot up to 6 different types of moving averages (MAs) on the chart, each with customizable parameters such as type, length, source, color, and timeframe. It also allows you to set different timeframes for each moving average.
Key Features:
Multiple Moving Averages: You can add up to 6 different moving averages to your chart.
Each MA can be one of the following types: SMA, EMA, SMMA (RMA), WMA, or VWMA.
Custom Timeframes: Each moving average can be applied to a specific timeframe, giving you flexibility to compare different periods (e.g., a 50-period moving average on the 1-hour chart and a 200-period moving average on the 4-hour chart).
Customizable Inputs:
Type: Choose between SMA, EMA, SMMA, WMA, or VWMA for each MA.
Source: You can select the price data source (e.g., close, open, high, low).
Length: Set the number of periods (length) for each moving average.
Color: Each moving average can be assigned a specific color.
Timeframe: Customize the timeframe for each moving average individually (e.g., MA1 on 15-minute, MA2 on 1-hour).
User Interface:
The script includes a data window display for each moving average, allowing you to control whether to show each MA and configure its settings directly from the settings menu.
Flexible Use:
Toggle individual moving averages on and off with the show checkbox for each MA.
Customize each MA's parameters without affecting others.
Parameters:
MA Type: You can choose between different moving averages (SMA, EMA, etc.).
Source: Price data used for calculating the moving average (e.g., close, open, etc.).
Length: Defines the period (number of bars) for each moving average.
Color: Change the line color for each moving average for better visualization.
Timeframe: Set a different timeframe for each moving average (e.g., 1-day MA vs. 1-week MA).
Example Use Case:
You might use this indicator to track short-term, medium-term, and long-term trends by adding multiple MAs with different lengths and timeframes. For example:
MA1 (20-period) might be an SMA on a 1-hour chart.
MA2 (50-period) might be an EMA on a 4-hour chart.
MA3 (100-period) might be a WMA on a daily chart.
This setup allows you to visually track the market's behavior across different timeframes and better identify trends, crossovers, and other patterns.
How to Customize:
Show/Hide MAs: Enable or disable each moving average from the input menu.
Modify Parameters: Change the MA type, source, length, and color for each individual moving average.
Timeframes: Set different timeframes for each moving average for more detailed analysis.
With this Moving Average Ribbon, you get a versatile and visually rich tool to aid in technical analysis.
SIMON VWAP + EMA 200📈 SIMON VWAP + EMA 200
Take control of the trend with this powerful dual-confluence indicator.
🔹 Dynamic VWAP and smart EMA 200 automatically change color based on price action:
✅ Green/Purple when the market is bullish
🔴 Red/Orange when the market is bearish
Perfect for spotting trend shifts, confirming entries, and staying away from counter-trend traps.
🎯 Built for traders who demand visual clarity and precision.
Crafted by Simón Groove.
🚀 Works on all timeframes.
💡 Ready to trade with an edge?
Candle Pattern Signals - Global Lowest/HighestForex Indicator – Precision Tool for Smarter Trading
Unlock the full potential of your trading strategy with this powerful Forex indicator. Designed to identify high-probability trade setups, it combines real-time price action analysis with advanced technical algorithms. Whether you're a scalper, swing trader, or trend follower, this tool provides clear entry and exit signals to boost your performance. Compatible with all major currency pairs and optimized for MetaTrader 4/5. Take your trading to the next level – trade smarter, not harder.
AST + SMA (Alvin Strategy)New indicator combine with Adaptive Super Trend and SMA20.
This indicator suitable for scalper that focusing on trend trading. It give confirmation for a scalp trader and suggest a close entry.
Change % - NQ / ES / YM Funded Futures Risk Manager – NQ / ES / YM
🎯 Purpose
This tool is designed for funded futures traders who need to comply with daily risk rules from Topstep, Apex, and similar programs. It tracks the real-time daily % price change in major U.S. equity index futures: Nasdaq (NQ), S&P 500 (ES), and Dow Jones (YM).
⚠️ Why It Matters
Most funded trading programs prohibit trading when the market is within 2% of CME’s daily price limits. This script provides a clear, real-time visual warning to help avoid account violations or disqualification.
🧠 What It Does
Detects the instrument (NQ1!, ES1!, YM1!, and front-month contracts like NQM2025)
Calculates % change from the daily open
Simulates CME’s ±7% daily limit bands
Displays a floating panel with current change in %
Shows a warning if price is within the restricted last 2%
Optionally triggers a visual or sound alert
🔍 Why It’s Different
This is not a predictive or technical analysis tool.
It’s a real-time compliance assistant designed to protect your funded account during volatile sessions.
No complex logic, just clear visual safety for serious traders.
🧭 How To Use It
Add the script to your chart
Use it on NQ1!, ES1!, or YM1! (or M2025 contracts)
The panel shows live price change % from today’s open
When price enters the last 2% of CME’s limit, a warning appears
Avoid entering trades during these times to stay compliant
🖼️ Recommended Chart Setup
✔️ Only this script applied
✔️ Show ticker, timeframe, and the floating panel
✔️ Clean background (no extra drawings or indicators)
✔️ Use on a volatile day for better demonstration (e.g. -2% day)
✅ Fully compliant with TradingView’s script publishing rules.
✅ Focused on risk awareness and rule enforcement.
✅ Supports real-world funded traders.