Quarterly-Inspired EMA Swing Strategy🚀 Quarterly EMA Strategy: Simplified
This strategy uses quarterly trends and pullbacks to EMAs (Exponential Moving Averages) to buy low and sell high in strong uptrends (longs) or short weak stocks in strong downtrends.
⸻
🔧 Core Setup
• Timeframe: Quarterly (1 candle = 3 months or ~65 trading days).
• Stocks: Liquid NSE F&O stocks (e.g., Reliance, Bajaj Finance, Tata Motors, etc.).
• Indicators Used:
• 10-quarter EMA → Shorter-term trend.
• 21-quarter EMA → Long-term trend.
• 13-week EMA → Weekly confirmation.
• ATR → For stop-loss.
• VIX → Volatility control.
• Relative Strength vs Nifty → Filter strong/weak stocks.
⸻
🟢 LONG SETUP (Buy on Pullback in Uptrend)
✅ Conditions:
1. Quarterly Trend is Bullish
Price > 10Q EMA > 21Q EMA
2. Pullback Happens
Price closes within 3% of 10Q or 21Q EMA, or touches it and bounces.
• E.g., Stock close = 8200, 10Q EMA = 8000 → Pullback = Valid (2.5% gap)
3. Previous Trend is Strong
• Last 1-2 quarters were making higher highs OR closing well above 10Q EMA
4. Candle Shows Rejection
• Lower wick (buying pressure from EMA)
• Small body (<5% total candle range)
5. Market Support Filters
• Nifty > its 4-quarter EMA (sloping upward)
• India VIX < 20 (low panic)
• Stock’s last 2 quarters’ return > 1.1× Nifty’s return
6. Weekly Confirmation
• Price > 13-week EMA
• 13W EMA is rising
• Bullish pattern in last 2 candles
• Volume ≥ 75% of 20-week average
⸻
📈 Example (Bajaj Finance):
• Close: 8200,
• 10Q EMA: 8000 (bullish),
• 21Q EMA: 7800
• Weekly price > 13W EMA → Confirmation ✅
⸻
🎯 Trade Plan (Long):
• Entry: 8200 (Quarterly) or near 13W EMA (Weekly)
• Stop-Loss: 2× ATR below 21Q EMA or candle low
• Target: 2:1 reward
• Exit 1: Book 50% at target
• Exit 2: Trail 21Q EMA
• Optional Hedge: Buy Nifty PUT if VIX > 15
⸻
🔴 SHORT SETUP (Sell on Pullback in Downtrend)
✅ Conditions:
1. Quarterly Trend is Bearish
Price < 10Q EMA < 21Q EMA
2. Pullback to EMA
Price closes within 3% of 10Q or 21Q EMA, or touches and gets rejected
3. Prior Trend is Down
Last 1-2 quarters had lower lows or closing >5% below 10Q EMA
4. Bearish Candle Setup
• Upper wick (rejection from EMA)
• Small body
5. Market Support Filters
• Nifty < its 4-quarter EMA (sloping down)
• India VIX < 20
• Stock’s 2-quarter return < 0.9× Nifty’s return
6. Weekly Confirmation
• Price < 13-week EMA
• 13W EMA is falling
• Bearish candles (engulfing, lower highs)
• Volume ≥ 75% of 20-week average
⸻
📉 Example (Vodafone Idea):
• Close: ₹8
• 10Q EMA: ₹8.2 → Close is 2.5% below
• Weekly close < 13W EMA
• Bearish candle → Confirmation ✅
⸻
🔻 Trade Plan (Short):
• Entry: 8
• Stop-Loss: 2× ATR above 21Q EMA or candle high
• Target: 2:1 reward
• Exit 1: Book 50% at target
• Exit 2: Trail 21Q EMA
• Optional Hedge: Buy Nifty CALL if VIX > 15
⸻
📊 Position Sizing (Same for Long & Short):
• Risk per trade: 0.5–1% of total capital
• Example:
• Capital = ₹10 lakh
• Risk = ₹10,000
• Stop = 800 points → Buy 12 shares
⸻
✅ Exit Rules Summary
Penunjuk Breadth
JL - Market HeatmapThis indicator plots a static table on your chart that displays any tickers you want and their % change on the day so far.
It updates in real time, changes color as it updates, and has several custom functions available for you:
1. Plot up to 12 tickers of your choice
2. Choose a layout with 1-4 rows
3. Display % Change or Not
4. Choose your font size (Tiny, Small, Normal, Large)
5. Up/Down Cell Colors (% change dependent)
6. Up/Down Text Colors (high contrast to your color choices)
The purpose of the indicator is to quickly measure a broad basket of market instruments to paint a more context-rich perspective of the chart you are looking at.
I hope this indicator can help you (and me) accomplish this task in a simple, clean, and seamless manner.
Thanks and enjoy - Jack
Setup Cripto EMA + Volume//@version=5 indicator("Sinais Multi-Cripto – EMA+Volume (BTC/ETH/BNB/SOL/XRP)", overlay=false)
// Inputs emaFast = input.int(50, "EMA Curta") emaSlow = input.int(200, "EMA Longa") emaPull = input.int(20, "EMA Pullback") volLen = input.int(20, "Média Volume")
symBTC = input.symbol(defval="BINANCE:BTCUSDT", title="BTC") symETH = input.symbol(defval="BINANCE:ETHUSDT", title="ETH") symBNB = input.symbol(defval="BINANCE:BNBUSDT", title="BNB") symSOL = input.symbol(defval="BINANCE:SOLUSDT", title="SOL") symXRP = input.symbol(defval="BINANCE:XRPUSDT", title="XRP")
f_sig(sym) => c = request.security(sym, timeframe.period, close) v = request.security(sym, timeframe.period, volume) e50 = ta.ema(c, emaFast) e200 = ta.ema(c, emaSlow) e20 = ta.ema(c, emaPull) vma = ta.sma(v, volLen) long = (e50 > e200) and (c > e20) and (v > vma) short = (e50 < e200) and (c < e20) and (v > vma)
= f_sig(symBTC) = f_sig(symETH) = f_sig(symBNB) = f_sig(symSOL) = f_sig(symXRP)
// Exibição plotchar(btcL, title="BTC Long", char="▲", location=location.top) plotchar(btcS, title="BTC Short", char="▼", location=location.bottom) plotchar(ethL, title="ETH Long", char="▲", location=location.top) plotchar(ethS, title="ETH Short", char="▼", location=location.bottom) plotchar(bnbL, title="BNB Long", char="▲", location=location.top) plotchar(bnbS, title="BNB Short", char="▼", location=location.bottom) plotchar(solL, title="SOL Long", char="▲", location=location.top) plotchar(solS, title="SOL Short", char="▼", location=location.bottom) plotchar(xrpL, title="XRP Long", char="▲", location=location.top) plotchar(xrpS, title="XRP Short", char="▼", location=location.bottom)
XRP 5-10m EMA+RSI Signal//@version=5
indicator("XRP 5-10m EMA+RSI Signal", overlay=true)
// === Inputs ===
emaFastLength = input.int(9, "EMA Fast")
emaSlowLength = input.int(21, "EMA Slow")
rsiLength = input.int(14, "RSI Length")
rsiOverbought = input.int(70, "RSI Overbought Level")
rsiOversold = input.int(30, "RSI Oversold Level")
// === Calculations ===
emaFast = ta.ema(close, emaFastLength)
emaSlow = ta.ema(close, emaSlowLength)
rsi = ta.rsi(close, rsiLength)
// === Conditions ===
trendUp = emaFast > emaSlow
trendDown = emaFast < emaSlow
buySignal = trendUp and ta.crossover(rsi, rsiOversold)
sellSignal = trendDown and ta.crossunder(rsi, rsiOverbought)
// === Plotting ===
plot(emaFast, color=color.yellow, title="EMA 9")
plot(emaSlow, color=color.red, title="EMA 21")
plotshape(buySignal, title="BUY Signal", location=location.belowbar,
color=color.green, style=shape.labelup, text="BUY")
plotshape(sellSignal, title="SELL Signal", location=location.abovebar,
color=color.red, style=shape.labeldown, text="SELL")
// === Alerts ===
alertcondition(buySignal, title="BUY Alert", message="XRP BUY Signal (EMA+RSI)")
alertcondition(sellSignal, title="SELL Alert", message="XRP SELL Signal (EMA+RSI)")
LP_Suitability_Overlay_ATR_ADX_BB_RSI_v3.2Per controllare i range, e i pattern e la collocazione dei range su grafici a 4h
SuperTrend V — Volume Shadow趋势速度分析(中文)Overview
SuperTrend V — Volume Shadow augments the classic SuperTrend with a price–volume “Volume Shadow” core and an EMA-smoothed centerline. Trend direction is derived from ATR bands around that center. The tool also adds a higher-timeframe EMA band (red/blue) for regime filtering and a linear-regression ±σ channel for take-profit triggers—giving you a simple “enter → trail → take profit” workflow.
How it works
Volume Shadow center: a volatility-scaled, volume-diffused series (out) built from price spread and volume; smoothed with EMA to form the SuperTrend base.
SuperTrend line: ATR bands around the smoothed center; green/red cross plot shows the active trailing level.
HTF reference band: red = EMA of out, blue = EMA of open, both computed from a reference timeframe (default 720 minutes). Red above blue = bullish regime; red below blue = bearish regime.
±σ take-profit channel: rolling linear regression midline ± (σ × stdev). Crosses of these bands emit TP triggers.
Inputs
Reference Timeframe (minutes) — default 720.
SuperTrend Multiplier (st_mult) — default 1.0 (higher = fewer, sturdier signals).
SuperTrend Period (st_period) — default 10 (ATR length).
TP Multiplier (σ) — default 2.
TP Window Length (len5) — default 150.
Signals & alerts
Buy: close crosses above the SuperTrend line and price is above the blue EMA.
Sell: close crosses below the SuperTrend line and price is below the blue EMA.
TP triggers (±σ channel)
Long TP Trigger: price crosses down through the upper band (crossunder upper).
Short TP Trigger: price crosses up through the lower band (crossover lower).
Recommended usage (workflow)
Regime filter
Trade longs only when red EMA > blue EMA; shorts only when red EMA < blue EMA.
Entries
Go long on Buy; go short on Sell (both require agreement with the regime filter).
Risk & exit
Use the SuperTrend line as a dynamic stop; flip/exit on an opposite cross.
Take profit
When a TP trigger fires (±σ channel), scale out or trail stops to the most recent ST level.
Suggested starting points
High-volatility (crypto, indices): st_mult 1.2–1.6, st_period 10–14, σ 2–2.5.
Lower-volatility (FX): st_mult 0.8–1.2, st_period 10, σ 1.5–2.
P&CO-Analytics - BTC STRIKERThis is the Bitcoin Striker Algorithm. This Algo helps to identify trends early on. This Algo can only be used on the 1D chart.
RuleBased Ai SM Footprint Finder by QuantxRuleBased AI SM Footprint Finder by Quantx
Uncover where the Smart Money is entering and exiting the market with precision. The RuleBased AI SM Footprint Finder combines AI-driven logic with institutional Orderblock footprint analysis to reveal hidden liquidity zones, accumulation, and distribution and FVG levels.
✅ Spot Smart Money footprints early
✅ Identify high-probability reversal and Pullback zones
✅ Filter out noise with AI-based confirmation
✅ Works across stocks, indices, and derivatives and Market instruments
Trade with the confidence of knowing where big players are moving their capital.
MMA ACADEMYTRADING🧭 Entry Guide Based on the Script Logic
1. Conditions for BUY Entry (Long Position)
The script uses higher timeframes to detect liquidity sweeps, depending on your current chart timeframe:
Your Current Timeframe Liquidity Sweep is Checked on
5 minutes (5m) 60-minute (1H) timeframe
15 minutes (15m) 240-minute (4H) timeframe
1 hour (1H) Daily (D) timeframe
4 hours (4H) Weekly (W) timeframe
1 day (1D) Monthly (M) timeframe
MA(7/28) + RSI + MACD(hist) — AUTO(exit)Trading Strategy Overview
This strategy combines Moving Averages (7-day & 28-day), RSI (Relative Strength Index), and MACD (Moving Average Convergence Divergence) to generate highly accurate trading signals, especially for short-term traders.
Entry Signals
Golden Cross / Death Cross:
The 7-day moving average crossing above the 28-day signals a bullish momentum (Golden Cross), while crossing below signals bearish momentum (Death Cross).
RSI Confirmation:
RSI above 50 confirms long entries, while RSI below 50 confirms short entries.
MACD Histogram Filter:
Positive histogram values strengthen long entries, while negative values support short entries.
Exit & Position Management
Trades are exited when the MACD histogram shifts direction (positive to negative or vice versa), clearly marking the optimal take-profit or exit zone.
Performance
With this multi-layer confirmation system, the strategy filters out false signals and provides up to 90% accuracy in entry/exit timing, making it particularly effective for scalpers and short-term traders who seek high-probability setups.
MA + RSI + MACD StrategyTrading Strategy Overview
This strategy combines Moving Averages (7-day & 28-day), RSI (Relative Strength Index), and MACD (Moving Average Convergence Divergence) to generate highly accurate trading signals, especially for short-term traders.
Entry Signals
Golden Cross / Death Cross:
The 7-day moving average crossing above the 28-day signals a bullish momentum (Golden Cross), while crossing below signals bearish momentum (Death Cross).
RSI Confirmation:
RSI above 50 confirms long entries, while RSI below 50 confirms short entries.
MACD Histogram Filter:
Positive histogram values strengthen long entries, while negative values support short entries.
Exit & Position Management
Trades are exited when the MACD histogram shifts direction (positive to negative or vice versa), clearly marking the optimal take-profit or exit zone.
Performance
With this multi-layer confirmation system, the strategy filters out false signals and provides up to 90% accuracy in entry/exit timing, making it particularly effective for scalpers and short-term traders who seek high-probability setups.
Abu Alanoud >> حركة السعرمؤشر alsubihi حركة السعر يجمع بين:
تحليل هيكل السوق
مناطق العرض والطلب
Price Action أنماط
مؤشرات دعم الاتجاه
تحليل متعدد الأطر الزمنية
مناسب للمضاربين والمحللين الفنيين، ويعمل على جميع الفريمات
Alsubihi Price Action Indicator combines:
Market Structure Analysis
Supply and Demand Zones
Price Action Patterns
Trend Support Indicators
Multi-Timeframe Analysis
Hitu - MTF High/Low Marker
This indicator is a powerful tool for traders, designed to display the high and low levels from multiple significant timeframes directly on your chart. It helps you quickly identify key support, resistance, and liquidity levels at a glance, improving your understanding of the market structure.
Key Features:
* Multi-Timeframe Support: Visualize high and low levels from Monthly, Weekly, Daily, 4H, 1H, 15M, and 5M timeframes.
* Full Customization: Each timeframe's line can be customized with your preferred color and style (Solid, Dashed, or Dotted) directly from the settings.
* Toggle On/Off: You have complete control to enable or disable any timeframe level to match your specific trading strategy.
How It Helps:
The MTF High/Low Marker simplifies the process of finding crucial price zones. By seeing key highs and lows from higher timeframes on your current chart, you can make more informed decisions about your entries, exits, and overall risk management.
Asian Session High/Low + FibThis is a indicator for only Asian season plus FIB it works only Asian season so you apply and enjoy indicator
Smart Money Windows X6Smart Money Windows 📊💰 – See where the pros hide their orders! Spot liquidity traps, smart money zones, and session kill zones before price flips. 🚀🔥
HI LO Today Previous Year Week Month YearHI LO Today Previous Year Week Month Year
Fully operational colours, fonts, label offset, names, and so on
Weekly High-Low RibbonWeekly set black zone!
better to read speaks for itself black zone no buy above below look at daily open PDL PDH LWH LWL
HI LO DRILL BTTM
Asian Session Pip Boxes 25/50/75 (History) MIN MAX PAST FUTUREAsian Session Pip Boxes 25/50/75 (History)
You can edit minimum and maximum length and days, colours, boxes on off and so on
Hamza Price action ConceptsPrice Action Hamza Concepts is a powerful all-in-one tool combining SMC, ICT concepts, and classic price action structure. It automatically detects market structure shifts, order blocks, FVGs, CHoCH, BOS, and premium-discount zones. Ideal for scalping, intraday, swing, and position trading.
NYSE Advancing Issues & Volume RatiosOverview
This comprehensive market breadth indicator tracks two essential NYSE ratios that provide deep insights into market sentiment and internal strength:
NYSE Advancing Issues Ratio
NYSE Advancing Volume Ratio
Dual Ratio Analysis
Issues Ratio: Measures the percentage of NYSE stocks advancing vs. total issues
Volume Ratio: Measures the percentage of NYSE volume flowing into advancing stocks
Both ratios displayed as easy-to-read percentages (0-100%)
Customizable Display Options
Toggle each ratio on/off independently
Choose from multiple moving average types (SMA, EMA, WMA)
Adjustable moving average periods
Custom color schemes for better visualization
Reference Levels
50% Line: Market neutral point (gray dashed)
10% Line: Extremely bearish breadth (red dotted)
90% Line: Extremely bullish breadth (green dotted)
Optional background highlighting for extreme readings
Smart Alerts
Cross above/below 50% (neutral) for both ratios
Extreme readings: Above 90% (strong bullish) and below 10% (strong bearish)
Real-time notifications for key market breadth shifts
📈 How to Interpret
Bullish Signals
Above 50%: More stocks/volume advancing than declining
Above 90%: Extremely strong market breadth (rare occurrence)
Divergence: Price making new highs while breadth weakens (potential warning)
Market Timing
Extreme readings (10%/90%) often coincide with market turning points
Breadth thrusts from extreme levels can signal powerful moves
Use with other technical indicators for enhanced timing
VietNguyen2 AlgoThis is indicator of Vietnammes. I am living at Da Nang city.
If you want to meeting then call me 0888135999