Strategy**RSI EMA WMA Strategy - Multi-Timeframe (by AiViet)**
A clean scalping tool using multi-timeframe RSI, EMA9, and WMA45 logic.
🟢 Uses H1 for direction
🔵 M15 for confirmation
🟠 M5 for precision entries
Works great on gold, indices, or crypto with trend-following strategies.
No repaint. Fully open-source.
By @AiViet
Telegram: t.me/eddytraderfx
Indicatori di ampiezza
Scalping Pro Balance + UT Bot//@version=5
indicator("Scalping Pro Balance + UT Bot", overlay=true)
// === INPUTS ===
emaLen = input.int(20, "EMA Trend")
takeProfitPerc = input.float(1.0, "Take Profit (%)", step=0.1)
atrMult = input.float(0.8, "Trailing ATR Multiplier", step=0.1)
atrLen = input.int(14, "ATR Length")
rsiLen = input.int(9, "RSI Length")
// === INDICATORS ===
ema = ta.ema(close, emaLen)
= ta.macd(close, 6, 13, 6)
rsi = ta.rsi(close, rsiLen)
atr = ta.atr(atrLen)
// === UT BOT LOGIC ===
a = input.float(1.0, title="UT Key Multiplier")
c = input.int(10, title="UT ATR Period")
h = input.bool(false, title="Use Heikin Ashi")
src = h ? request.security(syminfo.tickerid, timeframe.period, hlc3) : close
xATR = ta.atr(c)
nLoss = a * xATR
var float xATRTrailingStop = na
xATRTrailingStop := na(xATRTrailingStop ) ? src - nLoss :
src > xATRTrailingStop and src > xATRTrailingStop ? math.max(xATRTrailingStop , src - nLoss) :
src < xATRTrailingStop and src < xATRTrailingStop ? math.min(xATRTrailingStop , src + nLoss) :
src > xATRTrailingStop ? src - nLoss : src + nLoss
pos = 0
pos := src < xATRTrailingStop and src > xATRTrailingStop ? 1 :
src > xATRTrailingStop and src < xATRTrailingStop ? -1 : pos
emaUT = ta.ema(src, 1)
above = ta.crossover(emaUT, xATRTrailingStop)
below = ta.crossover(xATRTrailingStop, emaUT)
ut_buy = src > xATRTrailingStop and above
ut_sell = src < xATRTrailingStop and below
// === CONDITIONS ===
macdBuy = ta.crossover(macdLine, signalLine)
macdSell = ta.crossunder(macdLine, signalLine)
rsiOk = rsi > 40 and rsi < 75
longCondPro = close > ema and macdBuy and rsiOk
longCond = longCondPro or ut_buy
shortCondPro = close < ema and macdSell and rsi < 60
shortCond = shortCondPro or ut_sell
// === PLOTS ===
plot(ema, title="EMA", color=color.orange)
plot(xATRTrailingStop, title="UT Trailing Stop", color=color.new(color.red, 30))
plotshape(longCond, title="BUY Alert Marker", location=location.belowbar, color=color.lime, style=shape.labelup, text="BUY", size=size.small)
plotshape(shortCond, title="SELL Alert Marker", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL", size=size.small)
// === ALERTS ===
alertcondition(longCond, title="BUY Alert", message="⚡ BUY: {{close}}, TP {{close * (1 + takeProfitPerc / 100)}}, SL {{close - atr * atrMult}}")
alertcondition(shortCond, title="SELL Alert", message="⚡ SELL: {{close}}, TP {{close * (1 - takeProfitPerc / 100)}}, SL {{close + atr * atrMult}}")
Strategy**RSI EMA WMA Strategy - Multi-Timeframe (by AiViet)**
A clean scalping tool using multi-timeframe RSI, EMA9, and WMA45 logic.
🟢 Uses H1 for direction
🔵 M15 for confirmation
🟠 M5 for precision entries
Works great on gold, indices, or crypto with trend-following strategies.
No repaint. Fully open-source.
By @AiViet
Telegram: t.me/eddytraderfx
Swing Trade – ADR / % Change / LoD / RS / Sector / Mcap / 52W 📊 A clean, toggle-friendly info panel built for swing traders.
This indicator displays key technical metrics in a compact table overlay, helping you stay focused on price context and relative strength without clutter.
🧩 Metrics Included:
• ADR% – Average Daily Range % (custom length)
• % Change – from previous day’s close (green/red color-coded)
• LoD Dist. – % distance from today’s Low
• Off 52W High – % below 52-week high
• Above 52W Low – % above 52-week low
• RS Rating – Relative strength vs NIFTY 50 (weighted 3m/6m/12m)
• Sector – Displays stock’s sector
• Market Cap – Auto-formatted with B/M/K units
⚙️ Features:
• Full toggle control per metric
• Custom table size, alignment, and colors
• Clean table layout with optional empty row
• Built on daily and weekly data – reliable for swing setups
🎯 Use this to evaluate:
• Strength from intraday lows
• Momentum continuation (% Chg + RS)
• Volatility contraction/expansion (ADR%)
• Distance from key long-term levels (52W range)
• Sectoral filtering for top-down analysis
Created by: **@learningvitals**
License: Mozilla Public License 2.0
🔒 Pine v6 | No repaint | Lightweight | Chart overlay ready
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?
⚡ Quick Scalping //@version=5
indicator("⚡ Quick Scalping ", overlay=true)
// === CÀI ĐẶT ===
ma_len = input.int(50, title="MA Period")
sl_size = input.float(2.0, title="Stop Loss (giá)")
tp_size = input.float(4.0, title="Take Profit (giá)")
// === MA ===
ma = ta.ema(close, ma_len)
// === MÔ HÌNH NẾN ===
bull_candle = close > open
bear_candle = close < open
// === TÍN HIỆU VÀO LỆNH NHẸ ===
buy_signal = ta.crossover(close, ma) and bull_candle
sell_signal = ta.crossunder(close, ma) and bear_candle
// === TP / SL ===
buy_tp = buy_signal ? close + tp_size : na
buy_sl = buy_signal ? close - sl_size : na
sell_tp = sell_signal ? close - tp_size : na
sell_sl = sell_signal ? close + sl_size : na
// === VẼ TÍN HIỆU ===
plotshape(buy_signal, location=location.belowbar, style=shape.triangleup, color=color.green, size=size.normal, text="BUY")
plotshape(sell_signal, location=location.abovebar, style=shape.triangledown, color=color.red, size=size.normal, text="SELL")
plot(buy_tp, title="BUY TP", color=color.lime, linewidth=1)
plot(buy_sl, title="BUY SL", color=color.red, linewidth=1)
plot(sell_tp, title="SELL TP", color=color.fuchsia, linewidth=1)
plot(sell_sl, title="SELL SL", color=color.aqua, linewidth=1)
plot(ma, title="EMA50", color=color.orange)
// === LABEL ĐƠN GIẢN ===
if buy_signal
label.new(bar_index, low, "BUY", style=label.style_label_up, color=color.green, textcolor=color.white, size=size.small)
if sell_signal
label.new(bar_index, high, "SELL", style=label.style_label_down, color=color.red, textcolor=color.white, size=size.small)
// === ALERT ===
alertcondition(buy_signal, title="BUY Alert", message="⚡ BUY: {{close}}, TP {{close + 4}}, SL {{close - 2}}")
alertcondition(sell_signal, title="SELL Alert", message="⚡ SELL: {{close}}, TP {{close - 4}}, SL {{close + 2}}")
Likidite Boşlukları ve Likidite AvıAnalyzing key liquidity gaps and identifying potential stop hunt zones based on market structure, order flow, and imbalance areas.
This strategy helps spot where smart money might trap retail traders – turning confusion into sniper entries.
Perfect for scalping and precision trading.
#SmartMoney #LiquidityGrab #StopHunt #Forex #Crypto #PriceAction #SniperEntry
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
🚀 Cảnh Báo Tăng/Giảm Mạnh + Đảo Chiều Sóng Sure! Here's the fully optimized Pine Script v6 indicator with:
✅ Custom manual calculations for RSI, MFI, MACD, ADX
✅ Reversal confirmation (swing points)
✅ Clean signal alerts only (no plots of indicators)
✅ Email alert support
✅ Suitable for low timeframes (1–15min)
---------------------------------------------------------------------------------------------------------------
//@version=6
indicator("🚀 Strong Bullish/Bearish Alert (RSI-MFI-MACD-ADX)", overlay=true)
// === Settings === //
src = input.source(close, "Price Source")
rsi_len = 14
mfi_len = 14
macd_fast = 12
macd_slow = 26
macd_signal_len = 9
adx_len = 14
show_labels = input.bool(true, "Show Signal Labels")
// === Manual RSI Calculation === //
delta = src - src
gain = delta > 0 ? delta : 0
loss = delta < 0 ? -delta : 0
avg_gain = ta.ema(gain, rsi_len)
avg_loss = ta.ema(loss, rsi_len)
rs = avg_loss == 0 ? 0 : avg_gain / avg_loss
rsi = avg_loss == 0 ? 100 : 100 - (100 / (1 + rs))
// === Manual MFI Calculation === //
typical = (high + low + close) / 3
raw_money = typical * volume
pos_mf = 0.0
neg_mf = 0.0
for i = 1 to mfi_len
pos_mf += typical > typical ? raw_money : 0
neg_mf += typical < typical ? raw_money : 0
mfi_ratio = neg_mf == 0 ? 0 : pos_mf / neg_mf
mfi = neg_mf == 0 ? 100 : 100 - (100 / (1 + mfi_ratio))
// === Manual MACD Calculation === //
ema_fast = ta.ema(src, macd_fast)
ema_slow = ta.ema(src, macd_slow)
macd_line = ema_fast - ema_slow
macd_signal = ta.ema(macd_line, macd_signal_len)
macd_bull = macd_line > macd_signal
// === Manual ADX Calculation === //
up_move = high - high
down_move = low - low
plus_dm = (up_move > down_move and up_move > 0) ? up_move : 0
minus_dm = (down_move > up_move and down_move > 0) ? down_move : 0
tr = math.max(high - low, math.max(math.abs(high - close ), math.abs(low - close )))
tr_sma = ta.rma(tr, adx_len)
plus_di = 100 * ta.rma(plus_dm, adx_len) / tr_sma
minus_di = 100 * ta.rma(minus_dm, adx_len) / tr_sma
dx = 100 * math.abs(plus_di - minus_di) / (plus_di + minus_di)
adx = ta.rma(dx, adx_len)
// === Reversal Confirmation (Swing Points) === //
swing_low = low < low and low < low
swing_high = high > high and high > high
bullish_reversal = swing_low and close > high
bearish_reversal = swing_high and close < low
// === Signal Logic === //
bullish = ta.crossover(rsi, 50) and mfi > 50 and macd_bull and adx > 20 and plus_di > minus_di and bullish_reversal
bearish = ta.crossunder(rsi, 50) and mfi < 50 and not macd_bull and adx > 20 and minus_di > plus_di and bearish_reversal
// === Plot Signal Labels === //
plotshape(bullish and show_labels, title="Strong Bullish Signal", style=shape.labelup,
location=location.belowbar, color=color.green, size=size.normal,
text="🚀 Bullish")
plotshape(bearish and show_labels, title="Strong Bearish Signal", style=shape.labeldown,
location=location.abovebar, color=color.red, size=size.normal,
text="⚠️ Bearish")
// === Alert Conditions === //
alertcondition(bullish, title="📩 Bullish Signal", message="🚀 Strong Bullish Signal on {{ticker}} at {{interval}}")
alertcondition(bearish, title="📩 Bearish Signal", message="⚠️ Strong Bearish Signal on {{ticker}} at {{interval}}")
🐍 Mongoose Fed Sentiment Dashboard🐍 Mongoose Fed Sentiment Dashboard v1.0
📝 Description (TV-Ready):
A macro sentiment scoring tool based on price behavior across 10 Fed-sensitive assets, including:
Bonds (TLT, TIP, SHY, IEF)
Credit & risk (HYG, SPY, XLF, XHB)
Commodities (GOLD)
U.S. Dollar (DXY)
Treasury yields (US02Y, US10Y)
🧮 The model assigns:
+1 for dovish/risk-on behavior
-1 for hawkish/risk-off signals
📈 Score range:
+6 to +10 = Dovish / Risk-On 🟢
-5 to +5 = Neutral / Mixed 🟠
-6 to -10 = Hawkish / Risk-Off 🔴
Also includes a 5-day SMA for trend clarity.
This is a macro overlay dashboard, built to simplify central bank watching and rate cycle sentiment.
🔍 For educational and analytical purposes only.
🐍 Mongoose Macro Rotation Tracker🧵 Thread: How to Use the Mongoose Macro Rotation Tracker
1️⃣ What is it?
A real-time script that tracks capital rotation across the 3 major U.S. indices:
QQQ (NASDAQ – growth, tech)
SPY (S&P 500 – broad market)
DIA (Dow – value, industrials)
It also compares key sectors:
XLK vs XLF (Tech vs Financials)
XLF vs XLI (Financials vs Industrials)
XLK vs XLI (Tech vs Industrials)
2️⃣ How does it work?
It calculates the daily change in 6 ratios, then scores them:
+1 if capital is rotating into risk
-1 if capital is rotating out of risk
The total score ranges from -6 (full risk-off) to +6 (full risk-on).
3️⃣ What do the labels mean?
🔴 Risk-Off: Into DIA (Score -6) → Defensive, value names favored
🟢 Risk-On: Inflow to QQQ (Score +6) → Growth, tech, speculation back on
🟠 Mixed Rotation → No clear macro consensus (chop zone)
These are painted directly on your chart with color-coded boxes.
4️⃣ How do I use it?
Confirm macro shifts BEFORE they show in price
Time entries in SPX, QQQ, BTC, or risk assets with confidence
Watch for rotation score flips at key technical levels
Bonus tip: Use with Mongoose FX Sentiment Dashboard for a full macro sweep 🧠
5️⃣ Why it matters:
Money always moves before narratives change.
This tracker helps you see the where, when, and why — before the rest of the crowd.
💻 Published here on TradingView under:
"🐍 Mongoose Macro Rotation Tracker v1.0"
Built for clarity. Clean. Savage. Signal.
Pocket Option SMA StrategyOn a real market, this strategy can be moderately profitable for short-term binary options trades on Pocket Option, especially when combined with good risk management and proper trading sessions (like low-volatility periods). However, because this script relies solely on moving averages, it may lag during sharp market reversals or sideways movement, leading to late entries or false signals. It’s not ideal as a standalone system for high-frequency trading or volatile market conditions but can be a profitable confirmation tool when paired with additional indicators like RSI, Supertrend, or support/resistance analysis. Its performance will heavily depend on discipline, session timing, and avoiding overtrading—particularly on 1M or 2M real-time frames.
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.
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.
Trend Levels Altcoin Pioneers Group TRADING ™Trend Levels Altcoin Pioneers Group TRADING ™ is an advanced trend-following indicator designed to highlight key support and resistance zones based on Kalman filter crossovers. With dynamic trend analysis and actionable signals, it helps traders interpret market direction and momentum shifts effectively.
🔵 Key Features:
Trend Levels with Crossover Boxes: Identifies trend shifts by tracking crossovers between fast and slow Kalman filters. When the fast line crosses above the slow line, a green box level appears, indicating a potential support zone. When it crosses below, a red box level forms, acting as a resistance zone.
snapshot
Retest Signals for Support and Resistance Levels: Enable retest signals to capture price rejections at the established levels, providing possible re-entry points where the price confirms a support or resistance area.
snapshot
Adaptive Candle Coloring by Trend Momentum: Candle colors adjust based on the trend's strength:
> During a downtrend, if the fast Kalman line shows upward movement, indicating reduced bearish momentum, candles turn gray to signal the weakening trend.
snapshot
> In an uptrend, when the fast Kalman line declines, showing lower bullish momentum, candles become gray, signaling a potential slowdown in upward movement.
snapshot
Crossover Signals with Price Labels: Displays arrows with price values at crossover points for quick reference, marking where the fast line overtakes or dips below the slow line. These labels provide a precise price snapshot of significant trend changes.
snapshot
🔵When to Use:
The Kalman Trend Levels indicator is ideal for traders looking to identify and act upon trend changes and significant price zones. By visualizing key levels and momentum shifts, this tool allows you to:
Define support and resistance zones that align with trend direction.
Identify and react to trend weakening or strengthening via candle color changes.
Use retest signals for potential re-entries at critical levels.
See crossover points and price values to gain a clearer view of trend changes in real time.
With its focus on trend direction, support/resistance, and momentum clarity, Kalman Trend Levels is an essential tool for navigating trending markets, providing actionable insights with every crossover and trend shift.
HOD/LODAllows you to create an alert if XLV XLF and QQQ are at High of day or Low of day at the same time
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.
David Scalpeur Pro V2.12This indicator helps you make buy and sell decisions.
This indicator will not only help you with your scalping, but can also, at times, provide you with good positions on several candlesticks.
Don't neglect to study charts and trends to validate a buy or sell position.