Anti-SMT + FVG SignalMade by Laila
Anti-SMT + FVG Strategy
A contrarian price-action strategy that combines SMT illusion with Fair Value Gap (FVG) confirmation and multiple filters.
Strategy Concept
This strategy challenges traditional SMT divergence logic. Instead of entering trades based on expected SMT divergence between correlated pairs (e.g., EURUSD and DXY), it assumes the divergence is false and will reverse. The concept is to take advantage of these false signals, also known as "SMT illusions."
To confirm the setup, the strategy integrates Fair Value Gaps (FVGs), which are price imbalances left unfilled between candle 1 and 3.
Anti-SMT Logic
Short Entry:
EURUSD makes a new high (Candle 1)
DXY does not make a new low
Long Entry:
EURUSD makes a new low (Candle 1)
DXY does not make a new high
This divergence is considered false, and the strategy expects a reversal.
Fair Value Gap (FVG) Confirmation
A trade is only triggered if the price touches a Fair Value Gap during:
Candle 1 (the candle that forms the SMT illusion), or
Candle 2 (entry confirmation)
This helps avoid low-quality setups and increases entry precision.
Additional Filters
To improve robustness and prevent overfitting, the strategy includes:
EMA Trend Filter:
Long entries are allowed only if price is above the 50 EMA
Short entries are allowed only if price is below the 50 EMA
Time Filter:
Trades are only permitted between 08:00 and 18:00 UTC
Cooldown Filter:
A minimum of 10 candles between trades is required to prevent overtrading
Strategy Parameters and Defaults
Optimized for EURUSD on the 4-hour (4H) timeframe
Includes realistic commission and slippage
Uses conservative position sizing (e.g., 1% per trade)
Backtesting over hundreds of trades shows approximately 57% win rate under default conditions
These results are historical and do not guarantee future performance
Purpose and Value
This strategy offers a structured and logical approach to contrarian trading by:
Introducing the concept of false SMT divergence
Using price inefficiencies (FVGs) as confirmation
Filtering trades with realistic and widely accepted conditions
Encouraging quality over quantity through strict entry rules
It is not a simple mashup but a well-defined trading system that blends institutional concepts in a usable framework.
Indicators and strategies
[ayogetit] Ultimate AVWAPsUltimate AVWAPs - Complete Multi-Timeframe AVWAP Suite
The Ultimate AVWAPs indicator combines eight essential Anchored Volume Weighted Average Price (AVWAP) levels in one clean tool, providing comprehensive support and resistance analysis across multiple timeframes.
Features:
Since Inception AVWAP
All-Time High/Low AVWAPs
16-Week High/Low AVWAPs
52-Week High/Low AVWAPs
Today's AVWAP
Best Performance:
Works exceptionally well on 1D charts for optimal multi-timeframe analysis. Also effective on shorter timeframes during regular trading hours.
Perfect for identifying key institutional levels, trend direction, and optimal entry/exit points without cluttering your chart with multiple individual AVWAP indicators.
EMA 65 and 200 Strategy (Updated)//@version=5
strategy("EMA 65 and 200 Strategy (Updated)", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10)
// Define EMAs
ema65 = ta.ema(close, 65)
ema200 = ta.ema(close, 200)
// Plot EMAs
plot(ema65, color=color.blue, linewidth=2, title="EMA 65")
plot(ema200, color=color.red, linewidth=2, title="EMA 200")
// Conditions for sell entry (Price touching EMA65 or EMA200 with a bearish trend)
sell_condition = (close < ema65 and close > ema65) or (close < ema200 and close > ema200)
sell_stop_loss = close + 20 // 20 points above the entry
sell_take_profit = close - 10 // 10 points below the entry
// Conditions for buy entry (Price touching EMA65 or EMA200 with a bullish trend)
buy_condition = (close > ema65 and close < ema65) or (close > ema200 and close < ema200)
buy_stop_loss = close - 20 // 20 points below the entry
buy_take_profit = close + 10 // 10 points above the entry
// Strategy execution: Buy and Sell orders
if (sell_condition)
strategy.entry("Sell", strategy.short, stop=sell_stop_loss, limit=sell_take_profit)
if (buy_condition)
strategy.entry("Buy", strategy.long, stop=buy_stop_loss, limit=buy_take_profit)
// Plot buy and sell signals
plotshape(series=sell_condition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL")
plotshape(series=buy_condition, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY")
// Draw stop loss and take profit levels for visualization
plot(sell_condition ? sell_stop_loss : na, color=color.red, style=plot.style_line, linewidth=1, title="Sell Stop Loss")
plot(sell_condition ? sell_take_profit : na, color=color.green, style=plot.style_line, linewidth=1, title="Sell Take Profit")
plot(buy_condition ? buy_stop_loss : na, color=color.red, style=plot.style_line, linewidth=1, title="Buy Stop Loss")
plot(buy_condition ? buy_take_profit : na, color=color.green, style=plot.style_line, linewidth=1, title="Buy Take Profit")
Turtle Trading System (Full Version)The turtle trader strategy by Richard Dennis, buys from breakouts and uses volatility for sizing. Accurate on most asset classes, best on Gold.
Market Structure [TFO]📊 Market Structure — Pine Script Indicator
Author: © tradeforopp
License: Mozilla Public License 2.0
Platform: TradingView
Type: Market structure analyzer (BOS/MSS, swings, bar color)
🧠 What It Does:
This indicator automatically identifies market structure shifts (MSS) and breaks of structure (BOS) based on pivot highs and lows. It detects when price violates previous swing points and visually marks the shift between bullish and bearish phases.
🔍 Key Features:
Swing Detection:
Uses pivot_strength to determine significant swing highs and lows.
Swings are tracked using a custom swing structure with index and value.
MSS & BOS Logic:
A Market Structure Shift (MSS) occurs when price changes direction (e.g., bullish to bearish).
A Break of Structure (BOS) happens when the price breaks the previous swing without changing trend direction.
Visual Markers:
Labels on chart showing MSS or BOS at break levels.
Optional pivot markers as small triangle shapes at swing points.
Dashed/solid/dotted lines between the break point and current candle.
Bar Coloring:
Turns candles green for bullish breaks, red for bearish breaks.
Controlled via the “Show Bar Colors” setting.
Alerts:
Alert conditions for all MSS/BOS events.
Can be used for automation or signals in TradingView.
⚙️ User Inputs:
Pivot Strength – How many candles left/right to confirm a high/low.
Show Pivots – Enables small triangle markers.
Show BOS/MSS – Toggles structure break visuals and labels.
Line Style – Customizes BOS/MSS line appearance.
Bar Colors – Enables green/red candle coloring on structure changes.
🧩 Use Cases:
Track structural shifts in real time on any asset.
Build smart money concept (SMC) strategies.
Filter entries/exits based on trend changes.
Combine with liquidity or volume-based tools for confirmation.
Perfect Overextension ReversalHow It Works
Bollinger Band Overextension- We calculate a standard 20‑period Bollinger Band (SMA +/– 2 SD). When price tears past the upper or lower band, we mark it as overbought or oversold—a classic sign that momentum may have gone too far.
Volume Confirmation- We track a 20‑period volume average. A reversal candle only counts if it’s sizable (body ≥ ATR), and its volume is at least 1.5× the average. Big move, big volume—more reliable reversal setup.
Reversal Candle Entry• Long after an oversold condition and a bullish candle that meets the size + volume tests.• Short after overbought and a bearish candle with the same criteria.
How to Trade the Signal
My advice is don’t rush in immediately. Take the signals to mean more that price is slowing down from the crazy action, when it is volatile at the beginning price can whipsaw. Wait for initial volatility to calm down and then look for a confirmation entry. For example, wait for a fast MA to cross a slower MA before entering. Manage risk well and place your stop just beyond the recent swing high/low. Target a 1.5×–2× reward: risk or trail your profit once the market gives you a second confirmation or cover your stop loss once price is clear of your entry and let the trade run.
Timeframes & Markets- This works on any chart however as the signals are a rare occurrence so you will get more entries on the lower timeframes.
happy trading :)
Oscilador de Sentimiento PROUser Manual: Indicator "Dinámicas de Mercado Pro" (DMP)
Author: @Profit_Quant
Created by: Gemini AI (2025)
User Manual (English):RSI Sentiment Oscillator PRO
1. General Concept
The "RSI Sentiment Oscillator PRO" is an advanced RSI-type indicator designed to measure the momentum and strength of market sentiment. Unlike a simple line oscillator, this indicator uses a dynamic-width band that visually expands and contracts with the intensity of the sentiment. Its most powerful feature is the automatic detection of four types of divergences, which are key signals for identifying potential trend reversals or continuations.
2. Main Components and Their Interpretation
a) The Oscillator Band (Dynamic Width)
What it is: The main representation of the indicator. It's not just a line, but a filled band.
Dynamic Width: This is its unique feature. The band widens as sentiment becomes more extreme (near overbought at 100 or oversold at 0) and narrows near the neutral zone (50). This gives you an immediate visual sense of the "pressure" or "strength" of the current sentiment.
Band Colors:
Green: The oscillator is in the oversold zone (below 30). Sentiment is extremely bearish, which could precede a bounce.
Red: The oscillator is in the overbought zone (above 70). Sentiment is extremely bullish, which could precede a correction.
Blue: The oscillator is in a neutral zone.
b) Divergence Detection (Key Signals)
Divergences occur when the price and the oscillator move in opposite directions. They are among the most powerful signals in technical analysis.
Regular Divergences (Trend Reversal Signals)
Regular Bullish Divergence (Green):
What to look for: The price makes a lower low, but the oscillator makes a higher low.
Meaning: The price is still falling, but the momentum of the fall is exhausting. It's a potential signal that the downtrend is ending and could reverse to the upside.
Label: Bull Div
Regular Bearish Divergence (Red):
What to look for: The price makes a higher high, but the oscillator makes a lower high.
Meaning: The price is still rising, but the momentum of the rise is weakening. It's a potential signal that the uptrend is losing steam and could reverse to the downside.
Label: Bear Div
Hidden Divergences (Trend Continuation Signals)
Hidden Bullish Divergence (Yellow):
What to look for: The price makes a higher low (a pullback in an uptrend), but the oscillator makes a lower low.
Meaning: The current pullback is a "buy the dip" opportunity to join the main uptrend. It indicates that the uptrend is likely to continue.
Label: Bull Hid
Hidden Bearish Divergence (Orange):
What to look for: The price makes a lower high (a rally in a downtrend), but the oscillator makes a higher high.
Meaning: The current rally is a "sell the rally" opportunity to join the main downtrend. It indicates that the downtrend is likely to continue.
Label: Bear Hid
3. Trading Strategies
Reversal Trading: Use Regular Divergences as your primary signal. A green Bull Div in the oversold zone is a powerful buy signal. A red Bear Div in the overbought zone is a powerful sell signal.
Continuation Trading: Use Hidden Divergences to enter in the direction of the trend. A yellow Bull Hid during a pullback in an uptrend confirms that it's a good time to buy.
Volume Filter: By default, the indicator requires the volume on the second pivot of a regular divergence to be lower. This increases the reliability of the signal, as it confirms the "loss of conviction" in the price move.
4. Final Disclaimer
Divergences are high-probability signals, not certainties. Always use this indicator in confluence with your own analysis of market structure, support, resistance, and strict risk management.
es.tradingview.com
Past ADR (3 & 5 Days)Average Daily Range for the past 3 and 5 days.
It takes the daily ranges and calculates the averages.
By hovering over the numbers on the left side of the screen, you will see the averages.
Market Matrix ViewThis technical indicator is designed to provide traders with a quick and integrated view of market dynamics by combining several popular indicators into a single tool. It's not a magic bullet, but a practical aid for analyzing buying/selling pressure, trends, volume, and divergences, saving you time in the decision-making process. Built for flexibility, the indicator adapts to various trading styles (scalping, swing, or long-term) and offers customizable settings to suit your needs.
🟡 Multi-Timeframe Trends
➤ This section displays the trend direction (bullish, bearish, or neutral) across 15-minute, 1-hour, 4-hour, and Daily timeframes, providing multi-timeframe market context. Timeframes lower than the one currently selected will show "N/A."
➤It utilizes fast and slow Exponential Moving Averages (EMAs) for each timeframe:
15m: Fast EMA 42, Slow EMA 170
1h: Fast EMA 40, Slow EMA 100
4h: Fast EMA 36, Slow EMA 107
Daily: Fast EMA 20, Slow EMA 60
🟡 Smart Flow & RVOL
➤ This section displays "Buying Pressure" or "Selling Pressure" signals based on indicator confluence, alongside volume activity ("High Activity," "Normal Activity," or "Low Activity").
➤ Smart Flow combines Chaikin Money Flow (CMF) and Money Flow Index (MFI) to detect buying/selling pressure. CMF measures money flow based on price position within the high-low range, while MFI analyzes money flow considering typical price and volume. A signal is generated only when both indicators simultaneously increase/decrease beyond an adjustable threshold ("Buy/Sell Sensitivity") and volume exceeds a Simple Moving Average (SMA) scaled by the "Volume Multiplier."
➤ RVOL (Relative Volume) calculates relative volume separately for bullish and bearish candles, comparing recent volume (fast SMA) with a reference volume (slow SMA). Thresholds are adjusted based on the selected mode.
🟡 ADX & RSI
This section displays trend strength ("Strong," "Moderate," or "Weak"), its direction ("Bullish" or "Bearish"), and the RSI momentum status ("Overbought," "Oversold," "Buy/Sell Momentum," or "Neutral").
➤ ADX (Average Directional Index) measures trend strength (above 40 = "Strong," 20–40 = "Moderate," below 20 = "Weak"). Direction is determined by comparing +DI (upward movement) with -DI (downward movement). Additionally, an arrow indicates whether the trend's strength is decreasing or increasing.
➤RSI (Relative Strength Index) evaluates price momentum. Extreme levels (above 80/85 = "Overbought," below 15/20 = "Oversold") and intermediate zones (47–53 = "Neutral," above 53 = "Buy Momentum," below 47 = "Sell Momentum") are adjusted based on the selected mode.
🟡 When these signals are active for a potential trade setup, the table's background lights up green or red, respectively.
🟡 Volume Spikes
➤This feature highlights bars with significantly higher volume than the recent average, coloring them yellow on the chart to draw attention to intense market activity.
➤It uses the Z-Score method to detect volume anomalies. Current volume is compared to a 10-bar Simple Moving Average (SMA) and the standard deviation of volume over the same period. If the Z-Score exceeds a certain threshold, the bar is marked as a volume spike.
🟡 Divergences (Volume Divergence Detection)
➤ This feature marks divergences between price and technical indicators on the chart, using diamond-shaped labels (green for bullish divergences, red for bearish divergences) to signal potential trend reversals.
➤ It compares price deviations from a Simple Moving Average (SMA) with deviations of three indicators: Chaikin Money Flow (CMF), Money Flow Index (MFI), and On-Balance Volume (OBV). A bullish divergence occurs when price falls below its average, but CMF, MFI, and OBV rise above their averages, indicating hidden accumulation. A bearish divergence occurs when price rises above its average, but CMF, MFI, and OBV fall, suggesting distribution. The length of the moving averages is adjustable (default 13/10/5 bars for Scalping/Balanced/Swing), and detection thresholds are scaled by "Divergence Sensitivity" (default 1.0).
🟡 Adaptive Stop-Loss (ATR)
➤Draws dynamic stop-loss lines (red, dashed) on the chart for buy or sell signals, helping traders manage risk.Uses the Average True Range (ATR) to calculate stop-loss levels, set at low/high ± ATR × multiplier
🟡 Alerts for trend direction changes in the Info Panel:
➤ Triggers notifications when the trend shifts to Bullish (when +DI crosses above -DI) or Bearish (when +DI crosses below -DI), helping you stay informed about key market shifts.
How to use: Set alerts in Trading View for “Trend Changed to Bullish” or “Trend Changed to Bearish” with “Once Per Bar Close” for reliable signals.
🟡 Settings (Inputs)
➤ The indicator offers customizable settings to fit your trading style, but it's already optimized for Scalping (1m–15m), Balanced (16m–3h59m), and Swing (4h–Daily) modes, which automatically adjust based on the selected timeframe. The visible inputs allow you to adjust the following parameters:
Show Info Panel: Enables/disables the information panel (default: enabled).
Show Volume Spikes: Turns on/off coloring for volume spike bars (default: enabled).
Spike Sensitivity: Controls the Z-Score threshold for detecting volume spikes (default: 2.0; lower values increase signal frequency).
Show Divergence: Enables/disables the display of divergence labels (default: enabled).
Divergence Sensitivity: Adjusts the thresholds for divergence detection (default: 1.0; higher values reduce sensitivity).
Divergence Lookback Length: Sets the length of the moving averages used for divergences (default: 5, automatically adjusted to 13/10/5 for Scalping/Balanced/Swing).
RVOL Reference Period: Defines the reference period for relative volume (default: 20, automatically adjusted to 7/15/20).
RSI Length: Sets the RSI length (default: 14, automatically adjusted to 5/10/14).
Buy Sensitivity: Controls the increase threshold for Buying Pressure signals (default: 0.007; higher values reduce frequency).
Sell Sensitivity: Controls the decrease threshold for Selling Pressure signals (default: 0.007; higher values reduce frequency).
Volume Multiplier (B/S Pressure): Adjusts the volume threshold for Smart Flow signals (default: 0.6; higher values require greater volume).
🟡 This indicator is created to simplify market analysis, but I am not a professional in Pine Script or technical indicators. This indicator is not a standalone solution. For optimal results, it must be integrated into a well-defined trading strategy that includes risk management and other confirmations.
[km] Pivot Points ColoredScript Overview: Your Compass in a Complex Market – Supporting Your Next Move with Daily & Weekly Pivots
This indicator is designed to be a powerful compass that answers those questions, guiding your trading decisions.
This script automatically displays Pivot Points (PP), along with Resistance (R) and Support (S) lines, for both Daily and Weekly timeframes. These lines represent key market turning points, price levels that many traders worldwide actively watch. With this single tool, you'll gain immediate clarity on crucial levels across all timeframes, from day trading to swing trading.
These Pivot Points will powerfully assist your trade judgment. Add it to your chart and experience its effectiveness for yourself!
Key Features: Deeper Analysis for Your Trading
Daily & Weekly Pivot Display: See both daily pivots, for tracking intraday movements, and weekly pivots, for understanding broader trends, simultaneously. This allows you to overlap and confirm key levels across different timeframes right on your chart.
Extensive Line Style Customization: Freely customize the color, thickness, and line style (solid, dashed, etc.) for the Pivot Point, and each Resistance and Support line. Adjust them to match your chart's theme and personal preferences for optimal visibility.
Flexible Pivot Period Specification: You can set the period used for pivot calculations. This allows you to adjust the sensitivity of the pivot lines according to your specific analytical objectives.
Traditional Pivot Calculation: By default, the indicator uses the Traditional Pivot calculation method, which is the most common and widely utilized by traders. Capture market movements precisely with this simple yet powerful approach.
Bollinger Bands Enhanced and Fibonacci TPThe "Bollinger Bands Enhanced with Anti-False Signal Filters and Fibonacci TP" is an advanced TradingView indicator designed to assist traders in identifying high-quality buy and sell signals in financial markets. This sophisticated tool integrates multiple analytical techniques to deliver precise and reliable trading signals.
Key Features
Signal Hierarchy:
Premium Signals (💎): These signals have the highest priority, based on a high score, volume confirmation, and double confirmation from indicators.
High-Quality Signals (🟢/🔴): These signals have high priority and are based on trend confirmation and significant volume.
SAR Signals (✓): These signals have medium priority and are used for trend confirmation and position adjustments.
Extreme Signals (⚡): These signals have low priority and are primarily used for scalping.
Technical Indicators:
Bollinger Bands: Used to identify support and resistance levels.
Parabolic SAR: Used to confirm trends and reversals.
Ichimoku Cloud: Provides an overview of the trend and support/resistance levels.
Linear Regression: Used to identify the trend and its strength.
Volume Analysis: Used to confirm signals and identify divergences.
Anti-False Signal Filters:
Volume Filter: Ensures signals are confirmed by sufficient volume.
Trend Filter: Uses EMA to confirm the trend.
RSI Filter: Avoids signals in overbought or oversold zones.
Risk Management:
Position Size: Recommends different position sizes based on the type of signal.
Risk/Reward Ratio: Recommends a minimum ratio of 1:2 for premium signals and 1:1.5 for others.
Maximum Simultaneous Positions: Recommends a maximum of 2-3 simultaneous positions.
Alerts and Notifications:
Premium Alerts: Notifies traders of premium signals with comprehensive details.
High-Quality Alerts: Notifies traders of high-quality signals.
Extreme Alerts: Notifies traders of extreme signals.
SAR Confirmations: Notifies traders of SAR confirmations.
Benefits for Traders
This indicator is particularly beneficial for traders looking to enhance the accuracy of their trading signals and reduce false signals. It provides a comprehensive market overview by combining multiple analytical techniques and using a signal hierarchy to prioritize trading opportunities. Traders can use this indicator to identify high-quality trading opportunities, confirm trends, and manage risk effectively.
Conclusion
The "Bollinger Bands Enhanced with Anti-False Signal Filters and Fibonacci TP" indicator is a powerful tool for traders seeking to improve their trading performance. It combines multiple analytical techniques to provide accurate and reliable signals and uses a signal hierarchy to prioritize trading opportunities. Traders can leverage this indicator to identify high-quality trading opportunities, confirm trends, and manage risk effectively.
Gap + Open & Close Price Marker (HK)Designed for HK Market :
- Show Previous Day Session Open + Close
- Show Gap Up / Gap Down
- Show Gap in points
- Customizable Gap Threshold
Default Color Setting :
Small Gap Up -> Cyan
Middle Gap Up -> Green
Small Gap Down -> Purple
Middle Gap Down -> Pale Red
Big Gap Up/Down => Yellow
Bot Superindicador v1.1This indicator was developed to complement automated trading systems, providing clear buy and sell signals based on technical criteria and trend analysis. It is useful for traders who want to visualize strategies directly on the chart.
Features:
Entry and exit signals based on momentum logic and moving averages.
Optimized for the BTC/USDT pair, but adaptable to other pairs.
Can be used as a base for webhook alert systems.
Candle StrengthCandle Strength Indicator
Candle Strength Indicator helps traders identify strong bullish or bearish candles based on their body-to-range ratio and volume conditions. The indicator calculates the strength of each candle using the formula:
Candle Strength = (Close – Open) / (High – Low)
A value close to +1 indicates strong buying pressure.
A value close to –1 indicates strong selling pressure.
A value near 0 suggests indecision or weak movement.
To improve signal quality, the indicator filters candles by volume — only highlighting those with volume greater than the moving average.
When a strong candle is detected:
Upward green arrows appear for strong bullish candles.
Downward red arrows appear for strong bearish candles.
You can customize:
Timeframe of candle data.
Volume lookback period.
Strength threshold for signal display.
Dual HalfTrendThis is a trend indicator.
There are two trends in this. One is a major trend, and the other is a minor trend. We take trades in the minor trend that aligns with the major trend.
The trading strategy involved here is a crossover.
We take this trade when the major trend breaks the minor trend. You can backtest this and only take the trade if necessary. This works on high-volume pairs like Gold and US30.
RSI RegressionThe QuantFarming FREE RSI Regression.
Utilizes Linear Regression to find overbought and oversold levels.
MergedCandles_Ver1[VNFlow]📌 Indicator Name: "Merged Candles "
🔍 Overview:
This indicator displays merged higher-timeframe candles (HTF) directly on lower-timeframe charts. It helps visualize broader market structure and potential support/resistance zones.
🧠 Key Features:
• Auto Timeframe Detection: Automatically selects suitable HTF based on current chart (e.g., 1D → 1W, 1W → 1M).
• Custom Range Modes: Choose between:
o High/Low range
o Accurate range using previous close
o Heikin Ashi range
• Dynamic Box Visualization: Candles are drawn as colored boxes for easy interpretation:
o Green for bullish, red for bearish
o Real-time updating for the current candle
• Customizable Colors & Borders
• Supports All Markets (Stocks, Futures, Crypto, etc.)
🎯 Ideal for:
Smart Money Concepts (SMC), Wyckoff, swing trading, and multi-timeframe analysis.
=====
Email: hasobin@outlook.com
Last 2 Days Key LevelsLast 2 Days Key Levels
Overview
This indicator is designed for intraday traders who leverage key historical price levels to identify potential support and resistance zones. It cleanly plots the most important levels from the previous two trading days, giving you a clear map of the price action and helping you anticipate potential turning points in the market.
The core principle is that the market has memory. The highs, lows, and calculated pivot points from previous sessions often remain significant and can act as powerful magnets or barriers for price in the current session. This script gives you a configurable and visually clean way to track these critical zones.
Key Features
Multi-Day Level Plotting: Display key levels not just from the prior day (PD), but also from two days ago (PD2), allowing you to track a deeper level of market structure.
Comprehensive Key Levels: For each historical day, the indicator plots:
High
Low
Mid-Point (the direct halfway point of the day's range)
Central Pivot Point (the average of the high, low, and close)
Premarket High/Low: Includes the high and low from the current day's premarket session, which are critical levels for morning trading.
Full Customization: Every level is fully configurable. Through a cleanly organized input menu, you can:
Toggle the visibility of each individual line (e.g., show only the highs and lows).
Customize the color, line style (solid, dotted, dashed), and thickness for each group of levels (Prior Day, 2-Day Prior, Premarket).
The Strategic Advantage: Why Track 2-Day Prior Levels?
While many traders focus exclusively on the previous day's levels, tracking the levels from two days ago provides a distinct strategic edge, especially in the early morning session.
In the opening minutes of trading, or even in the premarket, price action is often volatile and searching for direction. The market will frequently test not just yesterday's levels, but also the key zones from the day before. These "older" levels are often overlooked by other market participants, making them powerful hidden support and resistance zones.
By having the 2-day prior levels on your chart, you can:
Anticipate early session turning points that others might not see.
Identify stronger confirmation when a 2-day level aligns with a prior-day or premarket level.
Avoid being caught off guard by reactions to seemingly "random" price points that are, in fact, significant historical levels.
How to Use
Support & Resistance: Use the plotted lines as potential areas where price may bounce or reverse. Look for price to respect these levels for potential entry or exit signals.
Breakout & Breakdown Zones: A clean break and hold above a resistance level (or below a support level) can signal the start of a new directional move.
Targeting: The levels can serve as logical price targets for your trades.
All settings are organized into clear groups in the "Inputs" tab, allowing you to easily configure the indicator to your exact preferences.
This script is based on the foundational concepts of the 'Daily Levels Suite' by FourC. It was generated and optimized with Gemini, by Mercadero.AI.
G-AreaKujyo original ver 2025
2025年最新版のインジケーター
各時間足の上昇下降トレンドをより可視性の高いものにしています
■緑のエリアは上昇傾向
■赤のエリアは下降傾向
・緑→赤
・赤→緑
に切り割るエリアは、非常に強い反発点
2025 Latest Version Indicator
This indicator provides enhanced visibility of uptrends and downtrends across multiple timeframes.
■ Green areas indicate an upward trend
■ Red areas indicate a downward trend
Transitions between colors:
Green → Red
Red → Green
These transition zones often mark strong reversal points.
PRO Investing - LevelPRO Investing - Level
📊 Dynamic Support/Resistance
This indicator plots the PRO Investing Level, defined as the midpoint between the highest high and lowest low over the past 252 trading days (default lookback period, equivalent to ~1 year). It acts as a key mean-reversion reference level, useful for identifying potential support/resistance zones or market equilibrium levels.
Features:
🕰️ Option to display only today’s level or historical levels.
⚙️ Customizable lookback period for flexibility across timeframes and strategies.
📉 Teal line plotted directly on the chart, highlighting this institutional-grade level.
Ideal for traders looking to anchor price action to significant historical ranges—particularly useful in mean-reversion, breakout, or volatility compression strategies.
Crypto Swing Trading Strategy (1-5 Day)Crypto Swing Trading Strategy Overview
This Pine Script implements a comprehensive 1-5 day swing trading strategy designed specifically for cryptocurrencies like BITSTAMP:BTCUSD (BTC), COINBASE:ETHUSD (ETH), and COINBASE:XRPUSD (XRP).
Here's what makes this strategy effective:
Core Philosophy: "Trade With The Trend"
The strategy follows the fundamental principle of trend-following - only taking trades in the direction of the prevailing market trend to maximize probability of success.
Key Components:
🔍 Trend Identification
Uses 50-day and 200-day EMAs to determine market direction
Only goes long when 50 EMA > 200 EMA (uptrend)
Only goes short when 50 EMA < 200 EMA (downtrend)
⚡ Smart Entry Timing
Waits for pullbacks within the trend (price near 50 EMA)
Uses RSI to identify oversold conditions in uptrends (RSI < 45) or overbought conditions in downtrends (RSI > 70)
Enters when momentum confirms trend resumption (RSI crosses back)
🛡️ Advanced Risk Management
ATR-based stop losses that adapt to market volatility
Position sizing ensures consistent 1% risk per trade
Wider stops in volatile markets, tighter stops in calm markets
💰 Profit Optimization
Takes 50% profit at 2:1 reward-to-risk ratio
Trails remaining position with ATR-based stops
Lets winners run while protecting gains
Why It Works:
High Probability Setups: Only trades with the trend during pullbacks
Volatility Adaptive: ATR ensures stops aren't too tight or too wide
Emotion-Free: All rules are clearly defined for automated execution
Capital Preservation: Strong risk management prevents large losses
Best Used For:
4-hour timeframes on major cryptocurrencies - Such as BTC - ETH - XRP
Trending markets (avoid during sideways consolidation)
Traders who want systematic, rule-based approach
This strategy combines the reliability of trend-following with the precision of momentum indicators, creating a robust system for capturing crypto market swings while managing downside risk effectively.