Multi-Pip Grid (Adjustable) — FixedThis indicator draws multiple sets of horizontal grid lines on your chart at user-defined pip intervals. It’s designed for traders who want to quickly visualize key price levels spaced evenly apart in pips, with full control over pip size, grid spacing, and appearance.
Features:
Adjustable pip size — works for Forex, gold, crypto, and indices (e.g., 0.0001 for EURUSD, 0.10 for XAUUSD, 1 for NAS100).
Six grid spacings — 1000 pips, 500 pips, 250 pips, 125 pips, 62.5 pips, and 31.25 pips. Each grid can be toggled on or off.
Customizable base price — center the grid at the current market price or any manually entered price.
Optional snap-to-grid — automatically aligns the base price to the nearest multiple of the smallest step for perfect alignment.
Flexible range — choose how many grid lines are drawn above and below the base price.
Distinct colors per grid level for easy identification.
Automatic cleanup — removes old lines before redrawing to avoid clutter.
Use cases:
Identify large and small pip-based support/resistance zones.
Plan entries/exits using fixed pip distances.
Visualize scaled take-profit and stop-loss zones.
Overlay multiple timeframes with consistent pip spacing.
趨勢分析
Moving Average Relative StrengthShow the relative strength of a stock with respect to 50 ma versus an index
連騰カウントCount arbitrary winning streaks and calculate their occurrence probability over a specified period.
For example, if a 5-day winning streak occurs only 0.3% of the time, it indicates that the price movement is not random, but rather a clear sign of capital inflows — making it a useful metric for analysis.
ActivTrades US Market Pulse – Ion JaureguiWhat the ActivTrades US Market Pulse Indicator Does
This indicator measures US market risk sentiment by combining:
The relative position of cyclical and defensive sectors versus their 50-day moving averages.
The level of the VIX volatility index.
The yield spread between 10-year and 2-year US Treasury bonds.
It assigns points based on these conditions to create an index that oscillates between Risk-Off (fear) and Risk-On (risk appetite).
The result is shown as a colored histogram with labels indicating:
Extreme Risk-On (bullish market)
Extreme Risk-Off (fearful market)
Neutral zone
It helps anticipate shifts in market sentiment and supports investment or trading decisions.
*******************************************************************************************
The information provided does not constitute investment research. The material has not been prepared in accordance with the legal requirements designed to promote the independence of investment research and such should be considered a marketing communication.
All information has been prepared by ActivTrades ("AT"). The information does not contain a record of AT's prices, or an offer of or solicitation for a transaction in any financial instrument. No representation or warranty is given as to the accuracy or completeness of this information.
Any material provided does not have regard to the specific investment objective and financial situation of any person who may receive it. Past performance and forecasting are not a synonym of a reliable indicator of future performance. AT provides an execution-only service. Consequently, any person acting on the information provided does so at their own risk. Political risk is unpredictable. Central bank actions can vary. Platform tools do not guarantee success.
INDICATOR RISK ADVICE: The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by ActivTrades. This script intends to help follow the trend and filter out market noise. This script is meant for the use of international users. This script is not meant for the use of Spain users.
Dip Hunter [BackQuant]Dip Hunter
What this tool does in plain language
Dip Hunter is a pullback detector designed to find high quality buy-the-dip opportunities inside healthy trends and to avoid random knife catches. It watches for a quick drop from a recent high, checks that the drop happened with meaningful participation and volatility, verifies short-term weakness inside a larger uptrend, then scores the setup and paints the chart so you can act with confidence. It also draws clean entry lines, provides a meter that shows dip strength at a glance, and ships with alerts that match common execution workflows.
How Dip Hunter thinks
It defines a recent swing reference, measures how far price has dipped off that high, and only looks at candidates that meet your minimum percentage drop.
It confirms the dip with real activity by requiring a volume spike and a volatility spike.
It checks structure with two EMAs. Price should be weak in the short term while the larger context remains constructive.
It optionally requires a higher-timeframe trend to be up so you focus on pullbacks in trending markets.
It bundles those checks into a score and shows you the score on the candles and on a gradient meter.
When everything lines up it paints a green triangle below the bar, shades the background, and (if you wish) draws a horizontal entry line at your chosen level.
Inputs and what they mean
Dip Hunter Settings
• Vol Lookback and Vol Spike : The script computes an average volume over the lookback window and flags a spike when current volume is a multiple of that average. A multiplier of 2.0 means today’s volume must be at least double the average. This helps filter noise and focuses on dips that other traders actually traded.
• Fast EMA and Slow EMA : Short-term and medium-term structure references. A dip is more credible if price closes below the fast EMA while the fast EMA is still below the slow EMA during the pullback. That is classic corrective behavior inside a larger trend.
• Price Smooth : Optional smoothing length for price-derived series. Use this if you trade very noisy assets or low timeframes.
• Volatility Len and Vol Spike (volatility) : The script checks both standard deviation and true range against their own averages. If either expands beyond your multiplier the market confirms the move with range.
• Dip % and Lookback Bars : The engine finds the highest high over the lookback window, then computes the percentage drawdown from that high to the current close. Only dips larger than your threshold qualify.
Trend Filter
• Enable Trend Filter : When on, Dip Hunter will only trigger if the market is in an uptrend.
• Trend EMA Period : The longer EMA that defines the session’s backbone trend.
• Minimum Trend Strength : A small positive slope requirement. In practice this means the trend EMA should be rising, and price should be above it. You can raise the value to be more selective.
Entries
• Show Entry Lines : Draws a horizontal guide from the signal bar for a fixed number of bars. Great for limit orders, scaling, or re-tests.
• Line Length (bars) : How far the entry guide extends.
• Min Gap (bars) : Suppresses new entry lines if another dip fired recently. Prevents clutter during choppy sequences.
• Entry Price : Choose the line level. “Low” anchors at the signal candle’s low. “Close” anchors at the signal close. “Dip % Level” anchors at the theoretical level defined by recent_high × (1 − dip%). This lets you work resting orders at a consistent discount.
Heat / Meter
• Color Bars by Score : Colors each candle using a red→white→green gradient. Red is overheated, green is prime dip territory, white is neutral.
• Show Meter Table : Adds a compact gradient strip with a pointer that tracks the current score.
• Meter Cells and Meter Position : Resolution and placement of the meter.
UI Settings
• Show Dip Signals : Plots green triangles under qualifying bars and tints the background very lightly.
• Show EMAs : Plots fast, slow, and the trend EMA (if the trend filter is enabled).
• Bullish, Bearish, Neutral colors : Theme controls for shapes, fills, and bar painting.
Core calculations explained simply
Recent high and dip percent
The script finds the highest high over Lookback Bars , calls it “recent high,” then calculates:
dip% = (recent_high − close) ÷ recent_high × 100.
If dip% is larger than Dip % , condition one passes.
Volume confirmation
It computes a simple moving average of volume over Vol Lookback . If current volume ÷ average volume > Vol Spike , we have a participation spike. It also checks 5-bar ROC of volume. If ROC > 50 the spike is forceful. This gets an extra score point.
Volatility confirmation
Two independent checks:
• Standard deviation of closes vs its own average.
• True range vs ATR.
If either expands beyond Vol Spike (volatility) the move has range. This prevents false triggers from quiet drifts.
Short-term structure
Price should close below the Fast EMA and the fast EMA should be below the Slow EMA at the moment of the dip. That is the anatomy of a pullback rather than a full breakdown.
Macro trend context (optional)
When Enable Trend Filter is on, the Trend EMA must be rising and price must be above it. The logic prefers “micro weakness inside macro strength” which is the highest probability pattern for buying dips.
Signal formation
A valid dip requires:
• dip% > threshold
• volume spike true
• volatility spike true
• close below fast EMA
• fast EMA below slow EMA
If the trend filter is enabled, a rising trend EMA with price above it is also required. When all true, the triangle prints, the background tints, and optional entry lines are drawn.
Scoring and visuals
Binary checks into a continuous score
Each component contributes to a score between 0 and 1. The script then rescales to a centered range (−50 to +50).
• Low or negative scores imply “overheated” conditions and are shaded toward red.
• High positive scores imply “ripe for a dip buy” conditions and are shaded toward green.
• The gradient meter repeats the same logic, with a pointer so you can read the state quickly.
Bar coloring
If you enable “Color Bars by Score,” each candle inherits the gradient. This makes sequences obvious. Red clusters warn you not to buy. White means neutral. Increasing green suggests the pullback is maturing.
EMAs and the trend EMA
• Fast EMA turns down relative to the slow EMA inside the pullback.
• Trend EMA stays rising and above price once the dip exhausts, which is your cue to focus on long setups rather than bottom fishing in downtrends.
Entry lines
When a fresh signal fires and no other signal happened within Min Gap (bars) , the indicator draws a horizontal level for Line Length bars. Use these lines for limit entries at the low, at the close, or at the defined dip-percent level. This keeps your plan consistent across instruments.
Alerts and what they mean
• Market Overheated : Score is deeply negative. Do not chase. Wait for green.
• Close To A Dip : Score has reached a healthy level but the full signal did not trigger yet. Prepare orders.
• Dip Confirmed : First bar of a fresh validated dip. This is the most direct entry alert.
• Dip Active : The dip condition remains valid. You can scale in on re-tests.
• Dip Fading : Score crosses below 0.5 from above. Momentum of the setup is fading. Tighten stops or take partials.
• Trend Blocked Signal : All dip conditions passed but the trend filter is offside. Either reduce risk or skip, depending on your plan.
How to trade with Dip Hunter
Classic pullback in uptrend
Turn on the trend filter.
Watch for a Dip Confirmed alert with green triangle.
Use the entry line at “Dip % Level” to stage a limit order. This keeps your entries consistent across assets and timeframes.
Initial stop under the signal bar’s low or under the next lower EMA band.
First target at prior swing high, second target at a multiple of risk.
If you use partials, trail the remainder under the fast EMA once price reclaims it.
Aggressive intraday scalps
Lower Dip % and Lookback Bars so you catch shallow flags.
Keep Vol Spike meaningful so you only trade when participation appears.
Take quick partials when price reclaims the fast EMA, then exit on Dip Fading if momentum stalls.
Counter-trend probes
Disable the trend filter if you intentionally hunt reflex bounces in downtrends.
Require strong volume and volatility confirmation.
Use smaller size and faster targets. The meter should move quickly from red toward white and then green. If it does not, step aside.
Risk management templates
Stops
• Conservative: below the entry line minus a small buffer or below the signal bar’s low.
• Structural: below the slow EMA if you aim for swing continuation.
• Time stop: if price does not reclaim the fast EMA within N bars, exit.
Position sizing
Use the distance between the entry line and your structural stop to size consistently. The script’s entry lines make this distance obvious.
Scaling
• Scale at the entry line first touch.
• Add only if the meter stays green and price reclaims the fast EMA.
• Stop adding on a Dip Fading alert.
Tuning guide by market and timeframe
Equities daily
• Dip %: 1.5 to 3.0
• Lookback Bars: 5 to 10
• Vol Spike: 1.5 to 2.5
• Volatility Len: 14 to 20
• Trend EMA: 100 or 200
• Keep trend filter on for a cleaner list.
Futures and FX intraday
• Dip %: 0.4 to 1.2
• Lookback Bars: 3 to 7
• Vol Spike: 1.8 to 3.0
• Volatility Len: 10 to 14
• Use Min Gap to avoid clusters during news.
Crypto
• Dip %: 3.0 to 6.0 for majors on higher timeframes, lower on 15m to 1h
• Lookback Bars: 5 to 12
• Vol Spike: 1.8 to 3.0
• ATR and stdev checks help in erratic sessions.
Reading the chart at a glance
• Green triangle below the bar: a validated dip.
• Light green background: the current bar meets the full condition.
• Bar gradient: red is overheated, white is neutral, green is dip-friendly.
• EMAs: fast below slow during the pullback, then reclaim fast EMA on the bounce for quality continuation.
• Trend EMA: a rising spine when the filter is on.
• Entry line: a fixed level to anchor orders and risk.
• Meter pointer: right side toward “Dip” means conditions are maturing.
Why this combination reduces false positives
Any single criterion will trigger too often. Dip Hunter demands a dip off a recent high plus a volume surge plus a volatility expansion plus corrective EMA structure. Optional trend alignment pushes odds further in your favor. The score and meter visualize how many of these boxes you are actually ticking, which is more reliable than a binary dot.
Limitations and practical tips
• Thin or illiquid symbols can spoof volume spikes. Use larger Vol Lookback or raise Vol Spike .
• Sideways markets will show frequent small dips. Increase Dip % or keep the trend filter on.
• News candles can blow through entry lines. Widen stops or skip around known events.
• If you see many back-to-back triangles, raise Min Gap to keep only the best setups.
Quick setup recipes
• Clean swing trader: Trend filter on, Dip % 2.0 to 3.0, Vol Spike 2.0, Volatility Len 14, Fast 20 EMA, Slow 50 EMA, Trend 100 EMA.
• Fast intraday scalper: Trend filter off, Dip % 0.7 to 1.0, Vol Spike 2.5, Volatility Len 10, Fast 9 EMA, Slow 21 EMA, Min Gap 10 bars.
• Crypto swing: Trend filter on, Dip % 4.0, Vol Spike 2.0, Volatility Len 14, Fast 20 EMA, Slow 50 EMA, Trend 200 EMA.
Summary
Dip Hunter is a focused pullback engine. It quantifies a real dip off a recent high, validates it with volume and volatility expansion, enforces corrective structure with EMAs, and optionally restricts signals to an uptrend. The score, bar gradient, and meter make reading conditions instant. Entry lines and alerts turn that read into an executable plan. Tune the thresholds to your market and timeframe, then let the tool keep you patient in red, selective in white, and decisive in green.
Gold Scalping Grid Zones [CongTrader]📜 Overview
Gold Scalping Grid Zones is a professional trading tool designed for XAUUSD scalpers & day traders.
It automatically detects key Buy/Sell zones based on pivot points and projects future breakout targets using ATR.
This all-in-one indicator combines:
Dynamic Grid Trading Zones from recent highs/lows
Future Price Forecast Zones for breakout targeting
EMA + RSI filtering for higher signal accuracy
Unified Buy/Sell alert system optimized for fast execution
✨ Key Features
Automatic Buy/Sell grid zones based on recent pivots
Breakout target forecasting using ATR multipliers
Smart signal filtering
BUY: Price above EMA 200 + RSI oversold
SELL: Price below EMA 200 + RSI overbought
Unified single alert for both BUY and SELL triggers
Auto-clean chart – keeps only the latest signal label
Fully customizable: grid step, zone thickness, ATR multiplier, EMA, RSI...
📈 How to Use
Add to Chart
Apply to XAUUSD chart (best performance on M5 – H1).
Adjust Parameters
Grid Step: Distance between zones (default: $2.0)
Zone Thickness: Visual width of zones
ATR Multiplier: Distance for forecast zones
EMA Length & RSI Levels: Fine-tune signal filtering
Read the Zones & Signals
Green Zones → Demand areas (Buy)
Red Zones → Supply areas (Sell)
Forecast BUY/SELL labels → Next breakout target
BUY/SELL signal labels → Confirmed trade setups based on EMA + RSI filters
Set Alerts
Click the Alert (🔔) icon in TradingView
Condition: "Gold Trade Signal"
Choose “Once per bar close” (fewer alerts) or “Once per bar” (scalping mode)
Phone alert example:
Gold Trade Signal: BUY or SELL triggered
⚠️ Disclaimer
This is NOT financial advice.
Always combine with your own analysis, risk management, and stop loss.
Past performance does not guarantee future results.
Trading gold with leverage carries high risk.
💡 Pro Tip:
Combine this indicator with candlestick patterns, volume analysis, and higher timeframe trend confirmation to maximize accuracy.
Fewer resistance/support zones ahead = stronger breakout potential.
🙏 Thank You
Thank you for using Gold Scalping Grid Zones .
If you find this indicator helpful, please Follow the author and Share it with your trading community so more traders can benefit.
Every follow and share is motivation to keep building more high-quality trading tools. 🚀 . #gold #XAUUSD #scalping #gridtrading #zones #supplydemand #ATR #EMA #RSI #pivot
ADR/ATR Session No Probability Table by LKHere you go—clear, English docs you can drop into your script’s description or share with teammates.
ADR/ATR Session by LK — Overview
This indicator summarizes Average Daily Range (ADR) and Average True Range (ATR) for two horizons:
• Session H4 (e.g., 06:00–13:00 on a 4‑hour chart)
• Daily (D)
It shows:
• Current ADR/ATR values (using your chosen smoothing method)
• How much of ADR/ATR today/this bar has already been consumed (% of ADR/ATR)
• ADR/ATR as a percent of price
• Optional probability blocks: likelihood that %ADR will exceed user‑defined thresholds over a lookback window
• Optional on‑chart lines for the current H4 and Daily candles: Open, ADR High, ADR Low
⸻
What the metrics mean
• ADR (H4 / D): Moving average of the bar range (high - low).
• ATR (H4 / D): Moving average of True Range (max(hi-lo, |hi-close |, |lo-close |)).
• % of ADR (curr H4): (H4 range of the current H4 bar) / ADR(H4) × 100. Updates live even if the current time is outside the session.
• % of ADR (Daily): (today’s intra‑day range) / ADR(D) × 100.
• % of ATR (curr H4 / Daily): TR / ATR × 100 for that horizon.
• ADR % of Price / ATR % of Price: ADR or ATR divided by current price × 100 (a quick “volatility vs. price” gauge).
Session logic (H4): ADR/ATR(H4) only update on bars that fall inside the configured session window; outside the window the values hold steady (no recalculation “bleed”).
Daily range tracking: The indicator tracks today’s high/low in real‑time and resets at the day change.
⸻
Inputs (quick reference)
Core
• Length (ADR/ATR): smoothing length for ADR/ATR (default 21).
• Wait for Higher TF Bar Close: if true, updates ADR/ATR only after the higher‑TF bar closes when using request.security.
Timeframes
• Session Timeframe (H4): default 240.
• Daily Timeframe: default D.
Session time
• Session Timezone: “Chart” (default) or a fixed timezone.
• Session Start Hour, End Hour (minutes are fixed to 0 in this version).
Smoothing methods
• H4 ADR Method / H4 ATR Method: SMA/EMA/RMA/WMA.
• Daily ADR Method / Daily ATR Method: SMA/EMA/RMA/WMA.
Table appearance
• Table BG, Table Text, Table Font Size.
Lines (optional)
• Show current H4 segments, Show current Daily segments
• Line colors for Open / ADR High / ADR Low
• Line width
Probability
• H4 Probability Lookback (bars): number of H4 bars to examine (e.g., 300).
• Daily Probability Lookback (days): number of D bars (e.g., 180).
• ADR thresholds (%): CSV list of thresholds (e.g., 25,50,55,60,65,70,75,80,85,90,95,100,125,150).
The table will show the % of lookback bars where %ADR ≥ threshold.
Tip: If you want probabilities only for session H4 bars (not every H4 bar), ask and I can add a toggle to filter by inSess.
⸻
How to read the table
H4 block
• ADR (method) / ATR (method): the session‑aware averages.
• % of ADR (curr H4): live progress of this H4 bar toward the session ADR.
• ADR % of Price: ADR(H4) relative to price.
• % of ATR (curr H4) and ATR % of Price: same idea for ATR.
H4 Probability (lookback N bars)
• Rows like “≥ 80% ADR” show the fraction (in %) of the last N H4 bars that reached at least 80% of ADR(H4).
Daily block
• Mirrors the H4 block, but for Daily.
Daily Probability (lookback M days)
• Rows like “≥ 100% ADR” show the fraction of the last M daily bars whose daily range reached at least 100% of ADR(D).
⸻
Practical usage
• Use % of ADR (curr H4 / Daily) to judge exhaustion or room left in the day/session.
E.g., if Daily %ADR is already 95%, be cautious with momentum continuation trades.
• The probability tables give a quick historical context:
If “≥ 125% ADR” is ~18%, the market rarely stretches that far; your trade sizing/targets can reflect that.
• ADR/ATR % of Price helps normalize volatility between instruments.
⸻
Troubleshooting
• If probability rows are blank: ensure lookback windows are large enough (and that the chart has enough history).
• If ADR/ATR show … (NA): usually you don’t have enough bars for the chosen length/TF yet.
• If line segments are missing: verify you’re on a chart with visible current H4/D bars and the toggles are enabled.
⸻
Notes & customization ideas
• Add a toggle to count only session bars in H4 probability.
• Add separate thresholds for H4 vs Daily.
• Let users pick minutes for session start/end if needed.
• Add alerts when %ADR crosses specified thresholds.
If you want me to bundle any of the “ideas” above into the code, say the word and I’ll ship a clean patch.
Burt's Multi-EMA RibbonBurt’s Multi-EMA Ribbon is a simple tool for visualising multiple Exponential Moving Averages (EMAs) on the same chart.
It plots the 9, 21, 50, 100, and 200-period EMAs, allowing users to observe their relative positioning. The space between the EMA 9 and EMA 21 is shaded to highlight their relationship.
The script also includes optional alert conditions that notify when EMA 9 moves above or below EMA 21. These features can help traders monitor changes in EMA alignment without constantly watching the chart.
This indicator is intended as an analytical aid and should be used together with other forms of chart analysis. It does not provide buy or sell recommendations.
GMO The GMO is a multi-component confluence oscillator that helps traders visualise when several momentum and trend conditions align.
It blends an EMA trend filter, RSI bias, MACD histogram direction, and Stochastic RSI crossovers, with the option to add Fibonacci retracement proximity for additional confidence.
When multiple conditions agree, combined visual markers (triangle + emoji) appear above or below price, and background shading reflects bullish or bearish momentum. Supporting plots display MACD histogram bars, RSI, Stochastic RSI lines, and the chosen Fibonacci level, allowing quick confirmation at a glance.
This tool is best used as part of a broader confluence-based strategy and should be paired with independent analysis and risk management.
Complete HTF Candles by InzaghiThis indicator overlays Higher Time Frame (HTF) candles directly onto your lower-timeframe charts, providing a seamless multi-timeframe perspective.
Key Features:
1. HTF Candles with LTF Period Separators & Text Labels
2. CISD (Change in State of Delivery) – A toggleable feature that can be turned on/off in settings to instantly enhance price action interpretation.
3. Custom Watermark – Add your own title and subtitle, while also displaying the current date and symbol information directly on the chart.
Vertical Line Timeline 10 Inputs by LK**Vertical Line Timeline (10 Inputs)**
This TradingView indicator plots vertical lines on your chart at up to **10 specific times of day**. You can define each time in **HH.MM format** (e.g., `9.30` for 9:30 AM). When the current bar’s time matches any of the defined times (based on the chart’s timezone), the indicator automatically draws a **full-height vertical line** at that bar.
**Features:**
* **Up to 10 custom time inputs** (HH.MM format)
* **Custom color** for each time marker
* **Adjustable line width** (1–6 px)
* **Solid or dotted style** toggle
* **Full-height vertical lines** (extend through the entire chart height)
* Works on any intraday timeframe where bar start times can match the defined times
* No labels or extra elements — clean and minimal display
**Use cases:**
* Marking important market sessions (e.g., London Open, New York Open, Asian Close)
* Highlighting personal trade execution windows
* Visual cues for strategy backtesting or time-based setups
☑️VMA Win % Dashboard for Different LengthsVMA Win % Dashboard for Different Lengths
Overview
This Pine Script indicator evaluates the performance of a Variable Moving Average (VMA) for lengths 13 to 17. It tracks the success rate of price hitting target levels during bullish or bearish trends and displays results in a table. It is part of a combination that includes two other indicators: ✅ VMA Avg ATR + Days to Targets Total Improved 🎯 and 📊 Visual MTF VMA Dashboard🔄️.
How It Works
1. Inputs:
- ATR Length: 14 periods (for volatility).
- VMA Lengths: 13, 14, 15, 16, 17.
2. VMA Calculation:
- Uses closing price.
- Measures price increases (pdm) and decreases (mdm).
- Smooths data to calculate a Directional Movement Index (DMI).
- Adjusts VMA based on momentum and volatility.
3. Trend Detection:
- Bullish: VMA rises (green).
- Bearish: VMA falls (red).
- Neutral: No direction (white).
- Confirms trends align with daily and 195-minute timeframes.
4. Performance Tracking:
- Trend Start: Records price, ATR, and time when a trend begins.
- Price Movement: Tracks highest (bullish) or lowest (bearish) price.
- Targets:
---- T1: Starting price ± historical average movement (ATR-based).
---- T2: Starting price ± 6x ATR.
- Statistics:
---- Counts hits (reached T1/T2) and misses (didn’t reach T1).
---- Calculates win percentages: % of trends hitting T1.
5. Dashboard:
- Table with columns: VMA Length, Win % Up, Win % Down.
- Shows win percentages for each length (e.g., 75.23%).
Use Cases
- Trend Trading: Confirms trend direction and success rate.
- Optimization: Finds the best VMA length.
- Risk Management: Sets ATR-based trade targets.
- Combination: Complements ✅ VMA Avg ATR + Days to Targets Total Improved 🎯 and 📊 Visual MTF VMA Dashboard🔄️ for a complete strategy.
Example
- VMA 15: 80% Win Up, 55% Win Down → Best for bullish trades.
- VMA 13: 75% Win Up, 60% Win Down → More balanced.
Limitations
- Based on historical data, not future predictions.
- Only analyzes trends aligned with higher timeframes.
- No VMA lines or signals plotted on the chart.
LevelUp^ Power Earnings Gap & EPS Acceleration ScreenerCustomizable Pine Screener to scan for stocks with a Power Earnings Gap as well as accelerating earnings and sales. Historical analysis shows that strong earnings often trigger institutional buying, pushing prices higher and increasing the likelihood of sustained price gains.
🔹 Power Earnings Gap (PEG)
A power earnings gap refers to a significant price gap up after an earnings report, reflecting a rapid shift in investor sentiment and perceived value. It’s called "power" because the move is often sharp, sustained, and accompanied by high trading volume, signaling a potential trend continuation or reversal.
A gap is the difference between the closing price of a stock on the day before an earnings report and the opening price the next trading day. A power earnings gap typically exceeds a certain threshold (e.g., 8-10% or more) and is driven by earnings surprises, guidance changes, or other significant news.
Strong earnings beats, misses, or forward-looking guidance can trigger these gaps. For example, a company reporting higher-than-expected profits or raising guidance might gap up, while a miss or weak outlook could cause a gap down.
The gap is often accompanied by above-average trading volume, confirming the move's strength. Power gaps often lead to sustained price movement in the direction of the gap (continuation) or signal a reversal if the gap fills quickly.
How Power Earnings Gap Be Helpful
▪ Power earnings gaps often indicate strong momentum. Traders can capitalize on this by entering trades in the direction of the gap (e.g., buying on a gap-up if the trend continues).
Example: If a stock gaps up 10% after a stellar earnings report and shows high volume, traders might buy, expecting further upside as momentum builds.
▪ Breakout Opportunities: A gap through key technical levels (e.g., resistance or support) can signal a breakout. Traders use these gaps to identify potential long-term trends.
Example: A stock breaking above a resistance level on a power earnings gap may continue to rally, offering a setup for swing or position traders.
▪ Volatility for Short-Term Trades: Earnings gaps create heightened volatility, ideal for day traders or scalpers. The large price swings allow for quick profits if timed correctly.
Example: A trader might use options (e.g., calls for a gap-up, puts for a gap-down) to leverage the volatility around earnings.
▪ Confirmation of Fundamental Strength/Weakness: A power earning gap often reflects a fundamental shift, e.g., strong earnings growth or a major business development. Traders can use this to align technical setups with fundamental catalysts.
Example: A gap-up after a company raises its full-year guidance might signal a long-term buying opportunity.
▪ Risk Management and Stop Losses: Gaps provide clear levels for setting stop-loss orders. For instance, traders might place stops at or below the gap up bar low to protect against a potential reversal.
Example: If a stock gaps up from $100 to $110 and intraday hits a low of $105, a trader might set a stop at $105 or lower to limit downside risk.
▪ Gap Fill Strategies:Some traders bet on gaps filling, i.e., the stock returning to its pre-gap price. If a power earnings gap seems overextended (e.g., due to market overreaction), contrarian traders might short a gap-up or buy a gap-down, anticipating a pullback.
Example: A stock gaps up 15% but lacks volume or follow-through; a trader might short it, expecting the price to retreat.
🔹 Earnings and Sales Acceleration
Earnings and sales acceleration refers to the rate of growth in a company's earnings over consecutive quarters. It highlights companies that are not only growing but doing so at an accelerating pace, signaling improving financial health and operational momentum. This metric is derived from earnings reports, which detail a company’s financial performance.
Key Concepts
▪ Earnings Acceleration: When a company’s earnings per share (EPS) growth rate increases over time (e.g., EPS growth of 10% in Q1, 15% in Q2, 20% in Q3). It indicates improving profitability, often due to cost efficiencies, margin expansion and strong demand.
▪ Sales Acceleration: When revenue growth rates increase over time (e.g., revenue growth of 5% in Q1, 8% in Q2, 12% in Q3). This reflects rising demand for products/services and operational efficiency.
▪ Relation to Earnings Reports: Acceleration is calculated by comparing sequential quarter-over-year growth rates in earnings and sales, often highlighted in earnings reports or analyst commentary. It’s a sign of fundamental strength when both metrics accelerate together.
How It’s Helpful to Traders
▪ Identify High-Potential Stocks: Stocks with accelerating earnings and sales often attract investor attention, as they signal a company is outperforming expectations and gaining market share. This can lead to sustained price appreciation.
Example: A tech company reporting 20% EPS growth and 15% sales growth quarter-over-quarter may see bullish price action as investors bet on continued momentum.
▪ Momentum Trading Opportunities: Acceleration often fuels stock price momentum, especially post-earnings. Traders can ride these trends using technical setups like breakouts or pullbacks.
Example: A stock breaking above a key resistance level after reporting accelerating growth may be a buy signal for swing traders.
▪ Early Indicator of Breakouts: Companies with accelerating fundamentals are more likely to experience price breakouts, as institutional investors (e.g., hedge funds, mutual funds) pile in. Traders can use this to position early.
Example: A retailer with accelerating sales due to strong holiday demand might gap up post-earnings, offering a breakout trade.
▪ Confirmation of Fundamental Strength: Acceleration validates a company’s growth story, reducing the risk of investing in stocks with inconsistent performance. Traders can align technical trades with strong fundamentals.
Example: A biotech with accelerating sales from a new drug launch may sustain a rally, giving traders confidence in long positions.
▪ Volatility for Short-Term Trades: Earnings reports showing acceleration often lead to significant price gaps or volatility, creating opportunities for day traders or options traders.
Example: A trader might buy call options on a stock expected to report accelerating earnings, anticipating a sharp post-earnings move.
🔹 Power Earnings Gaps - Examples
🔹 Screening Features - Setting Your Search Criteria
Power Earnings Gap
▪ Search Range
How many bars back to search for Power Earnings Gaps, anywhere between 1 and 90 bars.
▪ Last Bar Only
Look only at the last bar for Power Earnings Gaps. This is useful when looking for PEGs when screening at the end of a trading day. Choosing this option, the Search Range will be ignored.
▪ Minimum Price % Gap Up From Prior Close
This is the minimum gap up percent change to be considered a Power Earnings Gap.
▪ Minimum Volume % Change Over Average
This is the minimum volume percent change, over the 50-day average volume, to be considered a Power Earnings Gap.
▪ Require Positive Surprise
Require a positive earnings surprise and the minimum percent change.
▪ Require Closing Range
To ensure the price action closed strong on the day, specify a preferred closing range as a percentage of the bar's daily range.
▪ Gap Up Bar
The gap up bar can be configured to require one of the following:
- Open Above Prior High - Ensures there is visible gap up from the prior bar.
- Low Above Prior High - Allows for intraday price action to go below the prior bar high.
- No Requirement
Earnings And Sales Acceleration
▪ Quarters of Acceleration
You can specify between 1 and 4 quarters of earnings and/or sales acceleration.
🔹 Installation And Usage
▪ Mark this indicator as a Favorite.
▪ Use the Pine Screener to search for stocks.
▪ Save the search results to a watchlist.
▪ View the watchlist in TradingView.
🔹 Note
▪ Risk of Reversals: Not all gaps sustain their direction. Over reactions can lead to gap fills.
▪ High Volatility: Earnings gaps can be unpredictable, requiring quick decision-making & discipline.
1 Triple EMA Crossover Strategy (x, 3x, 9x)An excellent EMA strategy.
x, 3x, and 9x: These represent the periods of the EMAs. For example, if 'x' is 10, then you would have a 10-day EMA, a 30-day EMA, and a 90-day EMA.
Crossover: The strategy relies on identifying when the price or the shorter-term EMAs cross above or below the longer-term EMAs, signaling potential buy or sell opportunities.
How the Strategy Works:
1. Trend Identification:
The relationship between the three EMAs indicates the overall trend. If the 3x EMA is above the 9x EMA, and the x EMA is above both, it suggests an uptrend. Conversely, if the 3x EMA is below the 9x EMA, and the x EMA is below both, it indicates a downtrend.
2. Buy Signals:
A buy signal might be generated when the shortest EMA (x) crosses above the medium EMA (3x) and then both cross above the longest EMA (9x), suggesting a potential breakout.
3. Sell Signals:
A sell signal might be generated when the shortest EMA (x) crosses below the medium EMA (3x) and then both cross below the longest EMA (9x), suggesting a potential breakdown.
---------------------------------------------------------------------------------------------------------
Unlocking Trends with the Triple EMA Crossover Strategy (x, 3x, 9x)
Welcome to an intuitive yet powerful trend-following strategy designed for clarity and actionable signals: the Triple EMA Crossover. This Pine Script® indicator leverages the Exponential Moving Average (EMA) to help traders identify prevailing trends, potential breakouts, and breakdowns with enhanced precision. Built on a simple, scalable 'x, 3x, 9x' methodology, it provides a dynamic framework for navigating market movements.
Understanding the x, 3x, 9x EMA Foundation
At its core, this strategy utilizes three Exponential Moving Averages, each acting as a distinct lens on price action. Unlike Simple Moving Averages (SMAs) which give equal weight to all data points, EMAs place a greater emphasis on recent prices, making them more responsive to current market conditions—a crucial advantage in fast-paced environments like intraday trading.
The "x, 3x, 9x" nomenclature is elegantly simple:
x EMA (Fast EMA): This is your shortest-period EMA, highly sensitive to immediate price changes. It acts as the leading indicator, quickly reacting to shifts in momentum.
3x EMA (Medium EMA): Calculated with three times the 'x' period, this EMA provides a smoother, yet still responsive, view of the short-to-medium term trend. It often acts as dynamic support or resistance.
9x EMA (Slow EMA): Representing nine times the 'x' period, this is your longest EMA. It filters out much of the market noise, giving you a clear picture of the underlying dominant trend.
The beauty of this setup lies in its adaptability. By simply adjusting the Base EMA Period (x) input in the script settings, you can automatically calibrate all three EMAs to suit different instruments, volatility levels, or even your preferred trading style. A common starting point for 'x' in intraday trading on a 5-minute chart is 10, which translates to 10, 30, and 90-period EMAs.
How the Strategy Works: Signals and Trend Identification
The power of the Triple EMA Crossover lies in the interplay and alignment of these three moving averages.
1. Trend Identification
The relative positioning of the EMAs paints a clear picture of the market's trend:
Uptrend (Bullish): When the emaX (fast) is above the ema3X (medium), and the ema3X is, in turn, above the ema9X (slow), it indicates a strong bullish trend. This "stacked" alignment suggests robust upward momentum.
Downtrend (Bearish): Conversely, if the emaX (fast) is below the ema3X (medium), and the ema3X is below the ema9X (slow), it signals a clear bearish trend.
2. Buy Signals 🟢
A buy signal is generated when the swift emaX crosses above the ema3X, AND simultaneously, the ema3X is already above the ema9X. This combined condition ensures that the shorter-term momentum is shifting upward while the underlying medium-term trend remains strong and aligned with the longer-term direction. This reduces false signals often seen with simple two-EMA crossovers, aiming to capture high-probability upward moves. The script will plot a green upward-pointing triangle below the candle to visually alert you to this entry.
3. Sell Signals 🔴
A sell signal occurs when the quick emaX crosses below the ema3X, AND the ema3X is already below the ema9X. This indicates that the short-term momentum is shifting downwards, confirming a bearish bias within the broader downtrend. This comprehensive confirmation helps identify potential breakdowns and exit points for long positions or entry points for short trades. A red downward-pointing triangle will appear above the candle to mark this signal.
The strategy also includes an intuitive exit mechanism: if a buy signal is active and a sell condition is met, the long position will be closed, and vice-versa for short positions. This ensures you're always aligned with the most recent confirmed trend direction.
Key Advantages for Traders
Clarity: Provides visually clear trend direction and momentum shifts.
Responsiveness: EMAs react faster to price changes compared to SMAs, making them ideal for dynamic markets.
Confirmation: The three-EMA alignment significantly reduces false signals, leading to higher-conviction trades.
Adaptability: The x input allows you to fine-tune the strategy for various assets and market conditions.
Simplicity: Despite its effectiveness, the logic remains straightforward and easy to understand.
Important Considerations for Day Trading
For optimal performance in intraday trading, it's highly recommended to apply this strategy on a 5-minute chart. This timeframe strikes the perfect balance between capturing rapid price action and filtering out excessive market noise, allowing the EMA crossovers to provide meaningful signals. Always combine this technical analysis with sound risk management, including stop-loss orders, and consider other indicators or fundamental analysis for further confirmation.
Customization and Disclaimer
Feel free to experiment with the Base EMA Period (x) input to find the optimal settings that resonate with your trading style and the specific instruments you trade. Remember, no single strategy guarantees profits, and past performance is not indicative of future results. This script is provided for educational and illustrative purposes. Always conduct your own research and risk assessment before trading with real capital. Happy Trading!
Market Sessions — FOREXSOM Editionding for chart screenshots and videos.
Cleaner Interface: Organized settings into clear groups for a smoother user experience.
Bug Fixes: Improved “Only Last…” logic for more stable plotting.
Why I Use and Recommend It:
Easily spot active trading sessions with visual clarity.
Identify key institutional price levels in real time.
Ideal for day traders, swing traders, and anyone applying Smart Money Concepts.
Fully customizable colors and styles to fit any personal workflow.
Quant Signals: Econophysics-based MomentumPhysical Momentum Switcher (p0 / p1 / p2 / p3)
This indicator implements a “physical momentum” concept from quantitative finance research, where momentum is defined similarly to physics:
Momentum (p) = Mass × Velocity
Instead of using only the standard cumulative return (classic momentum), it lets you switch between multiple definitions:
p0: Cumulative return over the lookback period (no mass, just price change).
p1: Sum of (mass × velocity) over the lookback period.
p2: Weighted average velocity = (Σ mass×velocity) ÷ (Σ mass).
p3: Sharpe-like momentum = average velocity ÷ volatility (massless).
Velocity can be measured as:
Log return: ln(Pt / Pt-1)
Normal return: (Pt / Pt-1 – 1)
Mass (for p1/p2) can be defined as:
Unit mass (1) — equal weighting, equivalent to traditional momentum.
Turnover proxy — Volume ÷ average volume over k bars.
Value turnover proxy — Dollar volume ÷ average dollar volume.
Inverse volatility — 1 ÷ return volatility over a specified period.
Features:
Switchable momentum definition, velocity type, and mass type.
Adjustable lookback (k) and smoothing period for the signal line.
Optional ±1σ display bands for quick overbought/oversold visual cues.
Alerts for crosses above/below zero or the signal line.
Table display summarizing current settings and values.
Typical uses:
Momentum trading: Buy when PM > 0 (or crosses above the signal), sell/short when PM < 0 (or crosses below).
Contrarian strategies: Reverse the logic when testing mean-reversion effects.
Cross-asset testing: Apply to different instruments to see which PM definition works best.
Smart Fair Value Gaps (FVG) + MTF [Intelligent]This indicator elevates the standard Fair Value Gap (FVG) concept by introducing an intelligent classification system, advanced filtering, and integrated Multi-Timeframe (MTF) analysis. It is designed to move beyond simple FVG detection, providing traders with a deeper, more contextual understanding of market imbalances. By analyzing the characteristics of each FVG relative to recent historical data, the script helps to distinguish between high-momentum gaps and potential exhaustion points.
What is a Fair Value Gap (FVG)?
A Fair Value Gap, or price imbalance, is a three-candle pattern where the wick of the first candle does not overlap with the wick of the third candle. This creates an inefficient price delivery area that the market often seeks to revisit or "mitigate" in the future.
Bullish FVG: The space between the high of the first candle and the low of the third candle in a strong upward move.
Bearish FVG: The space between the low of the first candle and the high of the third candle in a strong downward move.
Key Features
Intelligent FVG Classification: This is the core of the indicator. Instead of treating all FVGs equally, it classifies them into four distinct types based on their size and the volume on which they formed, relative to a dynamic historical baseline.
🟡 Power FVG: High Size & High Volume Ratio. Indicates a gap formed with strong conviction and momentum, often a good continuation signal.
🟣 Exhaustion FVG: Low Size & High Volume Ratio. Suggests a high amount of effort (volume) for little price movement, which may indicate a trend is losing steam.
🟠 Absorption FVG: High Size & Low Volume Ratio. A significant price gap was created with relatively little volume, suggesting a lack of resistance and potential for price to move easily through that area.
🔵 Normal FVG: Any FVG that does not meet the criteria for the other classifications.
Multi-Timeframe (MTF) Analysis: Plot FVGs from a higher timeframe directly onto your current chart. These HTF zones often act as powerful areas of support or resistance and provide crucial context for lower-timeframe price action.
Advanced Filtering Suite: Gain complete control over which FVGs are displayed to reduce chart noise and focus on what matters.
Minimum Size Filter: Ignores insignificant micro-gaps by setting a minimum size requirement as a percentage of price.
EMA Trend Filter: Only display FVGs that align with the broader market trend (e.g., only show Bullish FVGs when price is above the 200 EMA).
Volume Filter: Qualify FVGs by requiring them to form on volume that is a specified multiple of its moving average, ensuring they are backed by significant market participation.
Comprehensive Customization: Tailor every aspect of the indicator to fit your personal trading style and chart aesthetic.
Mitigation Rules: Define precisely when an FVG is considered "mitigated" and no longer valid. Choose from a full fill, a 50% fill (Consequent Encroachment), or a simple wick touch.
Visuals & Data: Customize colors, borders, and box extensions. Toggle visuals for partial fills and the 50% CE line.
Data Labels: Display key information directly on the FVG boxes, including size in percentage and ticks, the volume of the FVG candle, and the volume ratio compared to the average.
Combined Futures Open Interest [Sam SDF-Solutions]The Combined Futures Open Interest indicator is designed to provide comprehensive analysis of market positioning by aggregating open interest data from the two nearest futures contracts. This dual-contract approach captures the complete picture of market participation, including rollover dynamics between front and back month contracts, offering traders crucial insights into institutional positioning and market sentiment.
Key Features:
Dual-Contract Aggregation: Automatically identifies and combines open interest from the first and second nearest futures contracts (e.g., ES1! + ES2!), providing a complete view of market positioning that single-contract analysis might miss.
Multi-Period Analysis: Tracks open interest changes across multiple timeframes:
1 Day: Immediate market sentiment shifts
1 Week: Short-term positioning trends
1 Month: Medium-term institutional flows
3 Months: Quarterly positioning aligned with contract expiration cycles
Smart Data Handling: Utilizes last known values when data is temporarily unavailable, preventing false signals from data gaps while clearly indicating when stale data is being used.
EMA Smoothing: Incorporates a customizable Exponential Moving Average (default 65 periods) to identify the underlying trend in open interest, filtering out daily noise and highlighting significant deviations.
Dynamic Visualization:
Color-coded main line showing directional changes (green for increases, red for decreases)
Optional fill areas between OI and EMA to visualize momentum
Separate contract lines for detailed rollover analysis
Customizable labels for significant percentage changes
Comprehensive Information Table: Displays real-time statistics including:
Current total open interest across both contracts
Period-over-period changes in absolute and percentage terms
EMA deviation metrics
Visual status indicators for quick assessment
Contract symbols and data quality warnings
Alert System: Configurable alerts for:
Significant daily changes (customizable threshold)
EMA crossovers indicating trend changes
Large percentage movements suggesting institutional activity
How It Works:
Contract Detection: The indicator automatically identifies the base futures symbol and constructs the appropriate contract codes for the two nearest expirations, or accepts manual symbol input for non-standard contracts.
Data Aggregation: Open interest data from both contracts is retrieved and summed, providing a complete picture that accounts for positions rolling between contracts.
Historical Comparison: The indicator calculates changes from multiple lookback periods (1/5/22/66 days) to show how positioning has evolved across different time horizons.
Trend Analysis: The EMA overlay helps identify whether current open interest is above or below its smoothed average, indicating momentum in position building or reduction.
Visual Feedback: The main line changes color based on daily changes, while the optional table provides detailed numerical analysis for traders requiring precise data.
___________________
This indicator is essential for futures traders, particularly those focused on index futures, commodities, or currency futures where understanding the aggregate positioning across nearby contracts is crucial. It's especially valuable during rollover periods when positions shift between contracts, and for identifying institutional accumulation or distribution patterns that single-contract analysis might miss. By combining multiple timeframe analysis with intelligent data handling and clear visualization, it simplifies the complex task of monitoring open interest dynamics across the futures curve.
KaloSTFEnglish Description for KaloSTF Indicator
KaloSTF is a powerful multi-timeframe (MTF) indicator designed to enhance your trading decisions by providing clear trend direction and momentum analysis across different timeframes. It helps traders identify the optimal entry and exit points by combining price action insights with robust technical filters. Whether you are a day trader or a swing trader, KaloSTF streamlines your workflow by displaying synchronized signals from higher and lower timeframes directly on your chart.
Key Features:
Multi-Timeframe trend detection
Clear visual signals for trend strength and reversals
Lightweight and efficient for real-time trading
Customizable parameters to fit any trading style
Perfect for use with Forex, commodities, and indices
Unlock higher precision in your trading strategies with KaloSTF — where clarity meets efficiency.
Trend Detection with Alerts and ConsolidationHere’s a simple script in English that detects a trend based on two moving averages (MAs) and shows the trend direction on the chart. I’ll write it in Pine Script (TradingView), since it’s a common language for trading indicators:
How does it work?
Green background — uptrend
Red background — downtrend
Gray background — consolidation (MAs are close to each other)
Label with trend/consolidation description on the latest candle
Alerts triggered when the fast MA crosses the slow MA (trend change) — you can set these alerts as notifications in TradingView.
RSI BY Josh — Signals )RSI BY Josh – อินดิเคเตอร์ RSI อัจฉริยะ พร้อมสัญญาณ BUY / SELL ทันใจ
คุณเบื่อมั้ยกับการใช้ RSI แบบเดิม ๆ ที่สัญญาณมาช้า หรือไม่แม่นพอ?
RSI BY Josh ถูกออกแบบมาเพื่อแก้ปัญหานั้น!
นี่ไม่ใช่ RSI ธรรมดา แต่มันคือ RSI อัปเกรด ที่เพิ่มระบบแจ้งสัญญาณ BUY / SELL บนกราฟโดยตรง และให้คุณปรับความถี่การแจ้งเตือนได้ตามต้องการ
🔥 จุดเด่น
RSI พร้อมเส้นกราฟ เหมือนใน MT5 ดูง่าย สวยงาม
แจ้งสัญญาณ BUY / SELL ด้วยลูกศรและข้อความชัดเจน
ปรับโหมดได้ 3 แบบ:
Strict – เข้มงวดตามหลัก RSI ดั้งเดิม (30/70)
Loose – ยืดหยุ่น ใช้การดูแรงโมเมนตัม
Aggressive – เร็ว จับทุกการเปลี่ยนเทรนด์
ปรับคูลดาวน์ระหว่างสัญญาณได้ (ลดการแจ้งเตือนถี่เกิน)
ตั้งค่าให้แสดงหรือไม่แสดงข้อความ BUY/SELL ได้
รองรับการแจ้งเตือน (Alert) ทันทีเมื่อเกิดสัญญาณ
✅ เหมาะสำหรับใคร
เทรดเดอร์ที่ใช้ RSI ในการจับจังหวะเข้าออก
คนที่ต้องการสัญญาณชัดเจน ไม่ต้องเฝ้ากราฟตลอด
เหมาะกับทุกสินทรัพย์: Forex, ทองคำ, Crypto, หุ้น
💡 เพียงติดตั้ง RSI BY Josh คุณจะรู้จังหวะซื้อ-ขายได้ง่ายขึ้น เหมือนมีผู้ช่วยบอกสัญญาณให้ตลอดเวลา!
RSI BY Josh – Smart RSI Indicator with Instant BUY/SELL Signals
Tired of using the same old RSI that gives signals too late or lacks accuracy?
RSI BY Josh is designed to solve that problem!
This is not your ordinary RSI – it’s an upgraded RSI with built-in BUY/SELL signals directly on the chart, and you can adjust the signal frequency to your preference.
🔥 Features
RSI Line similar to MT5 – clean and easy to read
Clear BUY / SELL signals with arrows and labels
3 Signal Modes:
Strict – Classic RSI rules (30/70)
Loose – Momentum-based with recent high/low checks
Aggressive – Fast trend change detection
Adjustable cooldown between signals (avoid over-alerting)
Option to show/hide BUY/SELL text
Built-in alert conditions for instant notifications
✅ Perfect For
Traders who use RSI for entry/exit timing
Anyone who wants clear, visual trade signals without watching charts all day
Works with any market: Forex, Gold, Crypto, Stocks
💡 Install RSI BY Josh and never miss a trading opportunity again – like having a personal signal assistant by your side!
Monthly Return Statistics 涨跌幅统计-老僧论金 Function Overview:
This indicator calculates the price change percentage for any custom monthly period and plots the corresponding long-term moving average, helping traders quickly assess market performance and trend direction over different timeframes.
It is suitable for gold, stocks, commodities, indices, and any asset with historical price data.
功能概述:
本指标用于统计任意月度周期的涨跌幅,并绘制对应的长期均线,帮助交易者快速判断市场在不同时间周期内的表现和趋势方向。
适合用于黄金、股票、大宗商品、指数等任何有价格历史的数据。
主要功能:
可自定义统计周期
用户可设置 涨跌幅计算周期(月),如 1M(单月)、3M(季度)、6M(半年)等。
可叠加长期均线
用户可设置 SMA周期(月),对涨跌幅进行平滑处理,观察长期趋势。
颜色直观
涨幅为绿色,跌幅为红色,SMA为蓝色,零轴为灰色。
使用建议:
短期交易者:用 1M 或 3M 周期观察市场情绪变化。
中长期投资者:结合 12M / 36M 周期的 SMA 判断大趋势。
历史回测:快速发现历史上的强势周期和弱势周期。
注意事项:
数据基于月度收盘与开盘,日内价差不在统计范围内。
SMA 越长,趋势越平滑,但响应越慢;SMA 越短,反应越快但波动更大。
适合和其它趋势判断工具(如均线系统、RSI、MACD)结合使用。
ADVANCED EMA RIBBON SUITE PRO [Multi-Timeframe + Alerts + Dash]🎯 ADVANCED EMA RIBBON SUITE PRO
📊 DESCRIPTION:
The most comprehensive EMA Ribbon indicator on TradingView, featuring 14 customizable
EMAs (5-200), multi-timeframe analysis, gradient ribbon visualization, smart alerts,
and a real-time dashboard. Perfect for trend following, scalping, and swing trading.
🔥 KEY FEATURES:
• 14 EMAs with Fibonacci sequence option (5, 8, 13, 21, 34, 55, 89, 144, 200)
• Multi-Timeframe (MTF) analysis - see higher timeframe trends
• Dynamic gradient ribbon with trend-based coloring
• Golden Cross & Death Cross detection with alerts
• Professional themes (Dark/Light) with 6 visual styles
• Real-time information dashboard
• Customizable transparency and colors
• Trend strength visualization
• Price position analysis
• Smart alert system for all major crossovers
📈 USE CASES:
• Trend Identification: Ribbon expansion/contraction shows trend strength
• Entry/Exit Signals: EMA crossovers provide clear trade signals
• Support/Resistance: EMAs act as dynamic S/R levels
• Multi-Timeframe Confluence: Combine timeframes for higher probability trades
• Scalping: Use faster EMAs (5-20) for quick trades
• Swing Trading: Focus on 50/200 EMAs for position trades
🎯 TRADING STRATEGIES:
1. Ribbon Squeeze: Trade breakouts when ribbon contracts
2. Golden/Death Cross: Major trend reversals at 50/200 crosses
3. Price Above/Below: Long when price above most EMAs, short when below
4. MTF Confluence: Trade when multiple timeframes align
5. Dynamic S/R: Use EMAs as trailing stop levels
⚡ OPTIMAL SETTINGS:
• Scalping: 5, 8, 13, 21 EMAs on 1-5 min charts
• Day Trading: Full ribbon on 15-60 min charts
• Swing Trading: Focus on 50, 100, 200 EMAs on daily charts
• Position Trading: Use weekly timeframe with monthly MTF
📌 KEYWORDS:
EMA, Exponential Moving Average, Ribbon, Multi-Timeframe, MTF, Golden Cross,
Death Cross, Trend Following, Scalping, Swing Trading, Dashboard, Alerts,
Support Resistance, Fibonacci, Professional, Advanced, Suite, Indicator
*Created using PineCraft AI (Link in Bio)