Wskaźniki i strategie
ARB 18:00–19:00 IST — Lines Only (v6)Draws a simple Opening Range for 24/7 markets using a custom time window. By default it captures the high and low formed between 18:00 and 19:00 IST each day, then locks those levels at 19:00 and extends two horizontal lines to the right. No alerts, no signals—pure levels so you can track breakouts or traps manually.
How it works
Uses a session in your chosen Timezone (default: Asia/Kolkata) to detect the 18:00–19:00 window.
Continuously updates the range during the window.
At 19:00 IST the range is “locked” and two lines (Range High/Range Low) are drawn and extended right.
Old lines are cleared so only the latest day’s ORB remains.
Inputs
Timezone (IANA): e.g., Asia/Kolkata, Asia/Dubai, UTC.
Start Hour / End Hour: default 18 → 19 (1-hour window). End must be after Start.
Line Width / Colors for High & Low.
Best used on
Intraday timeframes (1–60m).
24/7 symbols like BTCUSD, XAUUSD, major crypto pairs, spot gold.
Works regardless of your broker’s server timezone because the script uses the selected IANA timezone.
Notes
This is levels only: no alerts, no entries/exits, no statistics.
If you reload the chart after the window, lines persist and stay synced to the locked values.
Change the timezone if you want to anchor the window to a different locale.
Version: 1.0 (Pine v6).
EMA - RGB Wave RiderTakes your EMA (default set to the best ema12, but you can crank it to whatever you want) and gives it a radical 10-color gradient glow, like a heatmap for trend waves. When the EMA’s carving down hard, it blazes pink; when it’s ripping higher, it fades through fiery oranges and mellow yellows all the way into electric green. The slope gets scaled so no matter how gnarly or chill the market’s moving, you’ve got a smooth ride across the gradient. End result? A clean, skinny EMA line that vibes like a surfer’s waxed board—always showing you whether the wave you’re riding is pumping or fizzling out. 🌊🏄♂️
MasterClass — FU + AFU (Attempted FU) • with impulse filterThis indicator automatically detects and displays:
FU (Failure/False Breakout) — classic “bank candles”:
🟩 Green diamond below the bar — FU bullish (liquidity taken below, strong move upward).
🟥 Red diamond above the bar — FU bearish (liquidity taken above, reversal downward).
AFU (Attempted FU) — manipulation candles, when the market attempts to sweep liquidity but does not form a full FU:
🔵 Blue circle above the bar — AFU sell-side (attempted liquidity grab above).
🔵 Blue circle below the bar — AFU buy-side (attempted liquidity grab below).
🔹 This indicator helps traders:
Spot liquidity grabs and manipulations.
Identify key entry and reversal points.
Works on any timeframe and any instrument (Forex, Crypto, Stocks).
Higher Low : Price levelsClick twice on the chart to add S/R level then you can copy-paste the values.
Bands PRO++ Full//@version=5
indicator('Faytterro Bands PRO++ Full', overlay=true, max_lines_count=500, max_bars_back=500)
// ==== Inputlar ====
src = input(hlc3, title='Kaynak')
len = input.int(50, title='Bant Uzunluğu', minval=10, maxval=500)
mult = input.float(2.0, minval=0.1, maxval=50, title='StdDev Çarpanı')
atrLen = input.int(14, title='ATR Uzunluğu')
emaLen = input.int(200, title='Trend EMA Uzunluğu')
// Bant Renkleri
cu = input.color(color.rgb(255,50,50), 'Üst Bant Rengi')
cl = input.color(color.rgb(50,200,50), 'Alt Bant Rengi')
// ==== Orta Hat ve Bantlar ====
basis = ta.wma(src, len)
dev = mult * ta.stdev(src, len)
atr = ta.atr(atrLen)
upper = basis + dev + atr*0.2
lower = basis - dev - atr*0.2
plot(basis, color=color.yellow, linewidth=1)
p1 = plot(upper, color=cu, linewidth=2, title='Üst Bant')
p2 = plot(lower, color=cl, linewidth=2, title='Alt Bant')
fill(p1, p2, color=color.new(color.blue,85))
// ==== Trend filtresi (EMA200) ====
emaTrend = ta.ema(close, emaLen)
isUpTrend = close > emaTrend
isDownTrend = close < emaTrend
plot(emaTrend, color=color.new(color.orange,40), linewidth=1, title='EMA Trend Çizgisi')
// ==== Arka Plan ====
bgcolor(isUpTrend ? color.new(color.green,70) : na)
bgcolor(isDownTrend ? color.new(color.red,70) : na)
// ==== Hacim filtresi ====
volAvg = ta.sma(volume, 20)
volFilter = volume > volAvg
// ==== Sinyaller ====
longCond = ta.crossover(close, lower) and isUpTrend and volFilter
shortCond = ta.crossunder(close, upper) and isDownTrend and volFilter
plotshape(longCond, title='Long', location=location.belowbar, color=color.green, style=shape.triangleup, size=size.normal, text='LONG')
plotshape(shortCond, title='Short', location=location.abovebar, color=color.red, style=shape.triangledown, size=size.normal, text='SHORT')
// ==== Alt / Üst Band Dokunuşları ====
touchLower = ta.crossover(close, lower)
plotshape(touchLower, title='Alt Band Dokunuş', style=shape.circle, color=color.new(color.green,0), size=size.tiny, location=location.belowbar)
touchUpper = ta.crossunder(close, upper)
plotshape(touchUpper, title='Üst Band Dokunuş', style=shape.circle, color=color.new(color.red,0), size=size.tiny, location=location.abovebar)
// ==== Alarm Koşulları ====
alertcondition(longCond, title='Long Sinyali', message='Faytterro Bands PRO++ Full: Long sinyali!')
alertcondition(shortCond, title='Short Sinyali', message='Faytterro Bands PRO++ Full: Short sinyali!')
alertcondition(touchLower, title='Alt Band Dokunuş', message='Faytterro Bands PRO++ Full: Alt banda dokunuldu!')
alertcondition(touchUpper, title='Üst Band Dokunuş', message='Faytterro Bands PRO++ Full: Üst banda dokunuldu!')
HL Asie & Londres (NY)This indicator plots the High and Low of the Asian session (19:00–03:00 NY) and the London session (04:00–12:00 NY) without overlap.
Levels are updated live as soon as a new wick forms.
Only the current day’s lines are displayed (auto-reset at the start of each NY day).
Lines are extended to the right for easy reference.
Useful for intraday traders to quickly spot session ranges and key levels of interest.
Peak Traker by Futures.RobbyOverview
Peak Tracker is a specialized tool designed to assist traders in proprietary trading challenges. Its main purpose is to help you identify and track the maximum value (the "peak") within an active trade. This is crucial for keeping an eye on your trailing drawdown and avoiding rule violations. The indicator visualizes up to three separate trade windows and provides all necessary data in a clear table.
Key Features
Trailing Drawdown Tracking: The primary function of this indicator is to accurately track the peak value from your entry point to your exit. This helps you minimize the risk of violating drawdown rules in your funding challenge.
Visual Representation: It draws vertical lines for the entry (green) and exit (red) points directly on the chart. This clearly visualizes the exact time frames that are relevant for managing your drawdown.
Dynamic Real-Time Tracking: Within an active trade window, the indicator continuously tracks the highest price reached (Peak) while the entry price (Entry) remains fixed. This allows you to calculate your current drawdown at any moment.
Clear Data Table: A customizable table provides all relevant information at a glance: Trade ID, Entry/Peak prices, and exact timestamps for entry and exit. The numbers are formatted for easy reading using the German number style (e.g., 12.345,67).
Flexible Input: The indicator supports various date and time formats (17:47:00, 2025-08-30 17:14:00, 27.08.25 15:00). The time zone is automatically converted from your local time to the chart's time for precise line placement.
How to Use
Add the indicator to your chart.
Open the indicator's settings (⚙️).
Under "Datums- und Zeit-Eingaben," enter the desired time frames for your trades.
The indicator updates in real time, showing your trade's progress.
Conclusion
This indicator is an essential tool for any trader participating in prop firm challenges who needs a precise method to monitor their trailing drawdown. It provides clarity and visual support to help you avoid rule violations and maximize your chances of success.
Overlay Candles (Multi-TF, right side projection)This script overlays candles from a custom selectable timeframe (5m to 1M) on the right side of the chart as projections.
It helps visualize and compare the ongoing price action with the last higher-timeframe candles without switching chart intervals.
Features:
Choose timeframe for overlay candles (5m, 15m, 1H, 4H, 1D, 1W, 1M).
Adjustable number of candles to display (1–8).
Fixed candle width (in bars) and configurable gap between candles.
Custom colors for bullish and bearish candles.
Adjustable wick and border thickness (px).
Candle borders drawn with four lines to ensure visibility at all zoom levels.
Use cases:
Multi-timeframe price action analysis.
Visualizing higher-timeframe structure alongside lower-timeframe trading.
Educational / visual aid for understanding candlestick context.
Liquidity Pulse Revealer (LPR) — by Qabas_algoLiquidity Pulse Revealer (LPR) — by Qabas_algo
The Liquidity Pulse Revealer (LPR) is a technical framework designed to uncover hidden phases of institutional activity by combining volatility (ATR Z-Score) and liquidity (Volume Z-Score) into a dual-condition detection model. Instead of relying on price action alone, LPR measures how volatility and traded volume behave relative to their historical distributions, revealing when the market is either “compressed” or “expanding with force.”
⸻
🔹 Core Mechanics
1. ATR Z-Score (Volatility Normalization)
• LPR calculates the Average True Range (ATR) on a higher timeframe (HTF).
• It applies a Z-Score transformation across a configurable lookback period to determine if volatility is statistically compressed (below mean) or expanded (above mean).
2. Volume Z-Score (Liquidity Normalization)
• Simultaneously, traded volume is normalized using the same Z-Score method.
• Elevated Volume Z-Scores signal the presence of institutional activity (accumulation/distribution or aggressive breakout participation).
3. Dual Conditions → Regimes
• 🧊 Iceberg Volume = Low ATR Z-Score + High Volume Z-Score.
→ Indicates a “hidden liquidity build-up” phase where price compresses but big players are positioning.
• ⚡ Revealed Momentum = High ATR Z-Score + High Volume Z-Score.
→ Marks explosive volatility phases where institutional activity is fully expressed in directional moves.
⸻
🔹 Visualization
• Iceberg Zones (blue shaded boxes):
Drawn automatically around periods of statistical compression + elevated volume. These zones act as launchpads; once broken, they often precede strong directional expansions.
• Revealed Zones (green shaded boxes):
Highlight expansionary phases with both volatility and volume spiking. They often align with trend acceleration or terminal exhaustion zones.
• Midline Tracking:
Each zone maintains a dynamic average (mid-price), updated as the session evolves, providing reference for breakout confirmation and invalidation levels.
⸻
🔹 Practical Use Cases
• Accumulation/Distribution Detection:
Spot where “smart money” is quietly building or unloading positions before large moves.
• Breakout Confirmation:
A breakout occurring after an Iceberg zone carries higher conviction than random volatility.
• Profit Management:
If a Revealed Momentum zone appears after a strong uptrend, it often signals distribution or exhaustion — useful for partial profit taking.
• Multi-Timeframe Adaptability:
With Auto, Multiplier, and Manual higher-timeframe modes, LPR adapts seamlessly to intraday scalping or swing trading contexts.
⸻
🔹 Alerts
• Instant alerts for the start of new Iceberg or Revealed zones.
• Optional alerts for breakouts above/below the last Iceberg zone boundaries.
⸻
🔹 Example Trading Scenario
1. Detection: An 🧊 Iceberg Volume zone forms around support (low volatility + high volume).
2. Trigger: Price closes above the upper boundary of this Iceberg zone.
3. Entry: Go long on the breakout.
4. Stop Loss: Place stop just below the Iceberg zone’s low (where the liquidity build-up started).
5. Target: Hold until a ⚡ Revealed Momentum zone forms — then start scaling out as the expansion matures.
This simple framework transforms hidden institutional behavior into actionable trade setups with clear risk management.
⸻
⚠️ Disclaimer: The LPR is a research and educational tool. It does not provide financial advice. Always apply proper risk management and use in combination with your own trading framework.
SMC Suite – OB • Breaker • Liquidity Sweep • FVGSMC Suite — Order Blocks • Breaker • Liquidity Sweep • FVG
What it does:
Maps institutional SMC structure (OB → Breaker flips, Liquidity Sweeps, and 3-bar FVGs) and alerts when price retests those zones with optional r ejection-wick confirmation .
Why this isn’t “just a mashup”?
This tool implements a specific interaction between four classic SMC concepts instead of only plotting them side-by-side:
1. OB → Breaker Flip (automated): When price invalidates an Order Block (OB), the script converts that zone into a Breaker of opposite bias (bullish ⇄ bearish), extends it, and uses it for retest signals.
2. Liquidity-Gated FVGs : Fair Value Gaps (3-bar imbalances) are optionally gated—they’re only drawn/used if a recent liquidity sweep occurred within a user-defined lookback.
3. Retest Engine with Rejection Filter : Entries are not whenever a zone prints. Signals fire only if price retests the zone, and (optionally) the candle shows a rejection wick ≥ X% of its range.
4. Signal Cooldown : Prevents spam by enforcing a minimum bar gap between consecutive signals.
These behaviors work together to catch the sequence many traders look for: sweep → impulse → OB/FVG → retest + rejection.
Concepts & exact rules
1) Impulsive move and swing structure
• A bar is “ impulsive ” when its range ≥ ATR × Impulsive Mult and it closes in the direction of the move.
• Swings use Pivot Length (lenSwing) on both sides (HH/LL detection). These HH/LLs are also used for sweep checks.
2) Order Blocks (OB)
• Bullish OB : last bearish candle body before an i mpulsive up-move that breaks the prior swing high . Zone = min(open, close) to low of that candle.
• Bearish OB : last bullish candle body before an impulsive down-move that breaks the prior swing low . Zone = high to max(open, close).
• Zones extend right for OB Forward Extend bars.
3) Breaker Blocks (automatic flip)
If price invalidates an OB (closes below a bullish OB’s low or above a bearish OB’s high), that OB flips into a Breaker of opposite bias:
• Invalidated bullish OB → Bearish Breaker (resistance).
• Invalidated bearish OB → Bullish Breaker (support).
Breakers get their own style/opacity and are used for separate Breaker Retest signals.
4) Liquidity Sweeps (decluttered)
• Bullish sweep : price takes prior high but closes back below it.
• Bearish sweep : price takes prior low but closes back above it.
Display can be tiny arrows (default), short non-extending lines, or hidden. Old marks auto-expire to keep the chart clean.
5) Fair Value Gaps (FVG, 3-bar)
• Bearish FVG : high < low and current high < low .
• Bullish FVG : low > high and current low > high .
• Optional gating: only create/use FVGs if a sweep occurred within ‘Recent sweep’ lookback.
6) Retest signals (what actually alerts)
A signal is true when price re-enters a zone and (optionally) the candle shows a rejection wick:
• OB Retest LONG/SHORT — same-direction retest of OB.
• Breaker LONG/SHORT — opposite-direction retest of flipped breaker.
• FVG LONG/SHORT — touch/fill of FVG with rejection.
You can require a wick ratio (e.g., bottom wick ≥ 60% of range for longs; top wick for shorts). A cooldown prevents back-to-back alerts.
How to use
1. Pick timeframe/market : Works on any symbol/TF. Many use 15m–4h intraday and 1D swing.
2. *Tune Pivot Length & Impulsive Mult:
• Smaller = more zones and quicker flips; larger = fewer but stronger.
3. Decide whether to gate FVGs with sweeps : Turn on “Require prior Liquidity Sweep” to focus on post-liquidity setups.
4. Set wick filter : Start with 0.6 (60%) for cleaner signals; lower it if too strict.
5. Style : Use the Style / Zones & Style / Breakers groups to set colors & opacity for OB, Breakers, FVGs.
6. Alerts : Add alerts on any of:
• OB Retest LONG/SHORT
• Breaker LONG/SHORT
• FVG LONG/SHORT
Choose “Once per bar close” to avoid intrabar noise.
Inputs (key)
• Swing Pivot Length — swing sensitivity for HH/LL and sweeps.
• Impulsive Move (ATR ×) — defines the impulse that validates OBs.
• OB/FVG Forward Extend — how long zones project.
• Require prior Liquidity Sweep — gate FVG creation/usage.
• Rejection Wick ≥ % — confirmation filter for retests.
• Signal Cooldown (bars) — throttles repeated alerts.
• Display options for sweep marks — arrows vs short lines vs hidden.
• Full color/opacity controls — independent palettes for OB, Breakers, and FVGs (fills & borders).
What’s original here
• Automatic OB → Breaker conversion with separate retest logic.
• Liquidity-conditioned FVGs (FVGs can be required to follow a recent sweep).
• Unified retest engine with wick-ratio confirmation + cooldown.
• Decluttered liquidity visualization (caps, expiry, and non-extending lines).
• Complete styling controls for zone types (fills & borders), plus matching signal label colors.
🔹 Notes
• This script is invite-only.
• It is designed for educational and discretionary trading use, not as an autotrader.
• No performance guarantees are implied — always test on multiple markets and timeframes.
Trendline + Bull/Bear Flag + EMA 9/21 Buy-Sell Signalseasy scalping and buy sell signals on 9-21 ema cross and trendline breakout
💎 Quantum Big Move MTF Indicator 💎1. Purpose of the Indicator
The Quantum Big Move MTF Indicator is designed to identify significant market moves using multiple moving averages across different timeframes (multi-timeframe).
Its goal is to filter market noise and provide visual signals of major moves, helping traders to identify strong trends and potential turning points.
2. Key Components
a) Moving Averages (MAs)
The indicator uses two main moving averages:
Fast MA (short-term):
Captures short-term price behavior.
Can be SMA, EMA, WMA, Hull, VWMA, RMA, or TEMA.
Configurable by the user for length and type.
Slow MA (long-term):
Represents the longer-term trend.
Helps filter false signals and focus on significant moves.
Also configurable for type and length.
b) Multi-Timeframe
Both MAs are calculated in a selected timeframe (either the current chart timeframe or a custom one).
This allows detection of strong moves in a broader context, increasing signal reliability.
c) Color Logic
MAs change color based on the trend:
Green → uptrend.
Red → downtrend.
Gray → no clear trend or transition.
This helps visually interpret the strength and direction of the trend.
d) Cross Signals (Big Moves)
Upward Move Signal
Appears when the Fast MA crosses above the Slow MA while in an uptrend.
Downward Move Signal
Appears when the Fast MA crosses below the Slow MA while in a downtrend.
Note: These signals are indicative only and are not buy or sell orders. They are visual tools to aid decision-making.
3. How to Interpret the Indicator
Identify the Trend:
Observe the color of the Fast and Slow MAs.
Green = positive trend, Red = negative trend.
Wait for a Significant Cross:
Only consider signals if the Fast MA aligns with the trend direction.
Avoid acting on contradictory signals or crossovers in a sideways market.
Combine with Other Tools:
Use volume, support/resistance levels, or momentum indicators to confirm the strength of the move.
4. Recommended Settings
Fast MA: 20–30 periods (captures short-term moves).
Slow MA: 60–100 periods (filters noise and highlights major trends).
Smoothing factor: 2–4 to smooth color changes and reduce false signals.
Adjust based on the asset and timeframe being analyzed.
5. Disclaimer
Important:
This indicator does not guarantee profits and is not financial advice.
Signals are for educational and informational purposes only, and should be used together with your own risk analysis and capital management.
Users are responsible for any trading decisions made based on this indicator.
Equities OpenThe Equities Open indicator makes it easy to spot the highest and lowest prices during the equities open or a customizable time you choose. It draws lines to show the high and low points and extends them across the chart to a time you pick, such as 3:00 PM that same day. A shaded box highlights the price range during that session. You can customize things such as the session time, timezone, line thickness, colors, and choose if you want the shaded box to show up. It’s built to run smoothly and works best for charts with short timeframes (up to 59 minutes). Perfect for traders who want to focus on key price levels set during pre-market hours!
ICT KEY LEVELS (L3J)📊 Overview
The ICT KEY LEVELS (L3J) indicator is a tool designed to automatically identify and display key levels based on Inner Circle Trader (ICT) concepts.
This indicator combines session-based levels with multi-timeframe highs/lows analysis to provide traders with critical price zones for decision-making.
Developed by L3J - This indicator can be used in conjunction with other indicators I have developed for enhanced market analysis.
🎯 Key Features
Session-Based Levels
- Previous Day High/Low (PDH/PDL): Automatically identifies and displays the previous trading day's high and low levels
- Asian Session Levels: Tracks high and low during Asian trading hours (20:00-03:00 GMT+4)
- European Session Levels: Captures London session high and low levels (03:00-08:30 GMT+4)
Multi-Timeframe Analysis
- H1 Pivot Levels: Identifies 2-candle reversal patterns on 1-hour timeframe
- H4 Pivot Levels: Detects 4-hour pivot points using advanced pattern recognition
- Smart Visibility: Levels are only shown on appropriate timeframes (H1 levels on H1, H4 levels on H4)
Advanced Features
- Priority System: Automatically hides overlapping levels based on importance (Previous Day > Sessions > H4 > H1)
- Dynamic Labels: Real-time labels that update with price action
- Intelligent Cleanup: Removes crossed or outdated levels to maintain chart clarity
- Customizable Anchoring: Choose between precise timestamp anchoring or candle middle anchoring
- Performance Optimized: Built with efficient code structure for smooth chart performance
⚙️ Configuration Options
Note: Currently, the user interface settings are displayed in French. This will be updated to English in a future version.
General Settings
- Timezone: Configurable timezone for session calculations (default: GMT+4)
- Trading Days: Number of trading days to analyze (1-20 days)
- Extension: Right extension length for level lines
- Anchoring Mode: Precise timestamp or candle middle anchoring
Visual Customization
Each level type (Asia, Europe, Previous Day, H1, H4) includes:
- Color Selection: Separate colors for highs and lows
- Line Styles: Solid, Dotted, or Dashed lines
- Line Width: Adjustable thickness (1-4 pixels)
- Show/Hide Toggle: Individual control for each level type
🕒 Session Times
- Trading Day: 18:00-16:00 (CME session)
- Asian Session: 20:00-03:00 GMT+4
- European Session: 03:00-08:30 GMT+4
All times are configurable and timezone-aware
📈 How It Works
Level Detection
1. Session Levels: Continuously tracks price action during specific trading sessions
2. Pivot Detection: Uses 2-candle reversal patterns (bullish then bearish for highs, bearish then bullish for lows)
3. Multi-Timeframe Data: Requests higher timeframe data for H1 and H4 analysis
Smart Management
- Automatic Cleanup: Removes levels that have been crossed or are too old
- Priority Filtering: Hides duplicate levels based on importance hierarchy
- Dynamic Updates: Real-time adjustment of level positions and labels
🎨 Visual Elements
- Horizontal Lines: Extend from level creation point to the right
- Dynamic Labels: Show level type and session information
- Color Coding: Different colors for each session and timeframe
- Transparency: Automatically hides overlapping or less important levels
🔧 Technical Specifications
- Pine Script Version: v6
- Chart Overlay: True
- Max Lines: 500
- Max Labels: 50
- Performance: Optimized with intelligent memory management
📋 Usage Tips
1. Best Timeframe: Works on all timeframes, but H1 and lower provide optimal detail
2. Combine with Price Action: Use levels as confluence zones for entry/exit decisions
3. Risk Management: Levels can serve as stop-loss and take-profit targets
4. Market Structure: Helps identify key support/resistance in market structure analysis
🔄 Compatibility
This indicator is designed to work alongside other L3J indicators for comprehensive market analysis.
📞 Support & Updates
For questions, suggestions, or updates, please contact L3J through TradingView messaging.
---
Disclaimer : This indicator is for educational and analysis purposes. Always practice proper risk management and never risk more than you can afford to lose.
Version: 1.0
Author: L3J
Last Updated: 30/08/2025
Open High Low Close & Pivot Points [Prakash Kannan]Best Indicator to have previous day OHLC and Pivot Points
Dynamic Support & Resistance Zones v2 | Adaptive Channel System1. Overview of the Indicator
The Dynamic Support & Resistance Zones v2 indicator identifies key support and resistance levels based on the price action and volatility of the market. The indicator adapts to market conditions in real-time, dynamically adjusting the support and resistance zones as the price moves.
Support refers to the price level where a downward movement tends to stop, as buyers step in and push the price up.
Resistance refers to the price level where an upward movement tends to halt, as sellers come in and push the price back down.
The indicator combines two key elements:
Adaptive Channels: The support and resistance levels adjust based on market volatility (using the Average True Range - ATR).
Dynamic Zones: The support and resistance zones have gradients that change based on the proximity of price movements to these levels.
2. The Core Calculations:
a. ATR for Volatility:
ATR (Average True Range) is calculated to determine market volatility. This tells us how much the price has been moving over a certain period.
The indicator uses ATR to determine the width of the support and resistance channels. A higher ATR means wider channels (greater volatility), while a lower ATR leads to narrower channels (less volatility).
b. Dynamic Support & Resistance Levels:
Support Levels: The indicator calculates the lowest low over a specified lookback period (e.g., 20 bars). The support zone is then adjusted using a factor based on the ATR to create a dynamic channel.
Support Upper & Lower Levels: These form the outer boundaries of the support channel.
Smooth Support: The indicator uses a smoothing period to make these support levels less volatile and more accurate.
Resistance Levels: Similarly, the highest high over the lookback period is used to calculate the resistance levels. The ATR is again used to adjust the channel width.
Resistance Upper & Lower Levels: These form the outer boundaries of the resistance channel.
Smooth Resistance: The resistance levels are smoothed to create more consistent boundaries.
c. Midlines:
The indicator calculates "midlines" within the support and resistance zones. These help visualize the gradual transition between the upper and lower levels of the zones.
Midlines are plotted between the outer bands of the channels, giving a more nuanced view of the market's strength.
3. How It Visualizes the Zones:
a. Gradient Zones:
The indicator colors the space between the upper and lower boundaries of the support and resistance channels with gradient fills. These fills change color based on the price's proximity to the support or resistance zone, offering an immediate visual cue for traders.
Resistance Gradient: The closer the price is to the resistance zone, the more intense the red color becomes.
Support Gradient: Similarly, the closer the price is to the support zone, the greener the color becomes.
Extreme Zones: The outermost regions of the support and resistance zones (based on the highest and lowest levels) are also shaded differently to indicate extreme areas where the price might reverse with a higher probability.
b. Signals for Breakouts and Bounces:
Resistance Break: If the price crosses above the resistance upper boundary, a downward triangle symbol appears, signaling a potential breakout.
Support Break: If the price crosses below the support lower boundary, an upward triangle symbol appears, signaling a potential breakdown.
Bounce from Resistance/Support: If the price moves within the channel and bounces off the lower or upper boundary, it signals a rejection or bounce from support or resistance.
4. The Key Indicators:
Resistance Breakout: A signal that the price has broken above the resistance level, potentially indicating an upward trend.
Support Breakdown: A signal that the price has broken below the support level, potentially indicating a downward trend.
Resistance Rejection (Bounce): A price rejection at the resistance zone, signaling a potential reversal or continuation within the channel.
Support Bounce: A price rejection at the support zone, signaling a potential reversal or continuation within the channel.
5. Alerts and Notifications:
The indicator includes alert conditions for various events like:
Breakouts above resistance or below support.
Price bounces off support or resistance.
When these events occur, users can set alerts to notify them in real-time.
6. Customization:
Users can customize:
Lookback Period: How many bars the indicator should consider when calculating support and resistance levels.
Multipliers: Adjustments to the width of the channels (both for support and resistance).
Smoothing Period: The level of smoothing applied to the support and resistance zones to make the channels less volatile.
7. Summary of the Indicator's Key Features:
Dynamic, Adaptive Channels: The support and resistance zones adjust in real-time based on market volatility (ATR).
Smooth Transitions: Smooth, visual gradients help users understand the strength of the price action and potential reversal zones.
Real-Time Alerts: Users are notified when important price action events, such as breakouts or bounces, occur.
Customizable: Adjust the sensitivity of the support/resistance levels, channel width, and smoothing period based on personal preferences.
8. Use Case Example:
Imagine the price is near the upper resistance zone. If the price breaks above this level, it’s a Resistance Break signal, which could indicate the start of an upward trend. Conversely, if the price breaks below the lower support level, it’s a Support Breakdown signal, suggesting a potential downward trend.
Disclaimer:
The "Dynamic Support & Resistance Zones v2 | Adaptive Channel System" indicator is a tool designed to assist with technical analysis by identifying key support and resistance levels, as well as potential price action signals. While it is a powerful tool for trend analysis and trading decision-making, it is not a guaranteed predictor of market outcomes.
Risk Warning: Trading involves significant risk of loss, and the use of this indicator does not guarantee any specific results. It is recommended to combine the indicator with other forms of technical analysis, fundamental analysis, and risk management strategies.
Past Performance: The indicator's past performance is not indicative of future results. Market conditions are dynamic and constantly evolving, and past price action may not necessarily reflect future price behavior.
No Investment Advice: The indicator does not constitute financial or investment advice. Always perform your own research and consult with a professional financial advisor before making trading decisions.
Use at Your Own Risk: By using this indicator, you acknowledge that you are fully responsible for your trading decisions, and that you understand the potential risks involved.
AlgoFlex Buy Sell Signal (1h only)
**Overview**
AlgoFlex Scalper plots buy/sell signal markers using:
* a range filter (EMA of absolute bar changes) to define short-term bias,
* an Adaptive Moving Average (AMA) slope to confirm direction, and
* an ATR threshold to filter weak momentum.
Signals are evaluated on bar close to reduce intrabar noise. This is an indicator, not a strategy.
**How it works (concepts)**
* Range filter: smooths price with an EMA-based range measure and forms upper/lower bands.
* Trend state: counts consecutive movements of the filtered series (up/down counters) to avoid whipsaws.
* AMA + ATR gate: rising AMA with change > ATR \* atrMult can produce a long signal; falling AMA with change < -ATR \* atrMult can produce a short signal.
* TP/SL markers: projected using ATR multiples (tpMult, slMult). Visual guides only.
* Buy Signal, Sell Signal, plus optional TP/SL notifications. Designed to fire on bar close.
RVWAP % Distance Oscillator (30D vs 365D)RVWAP % Distance Oscillator (30D vs 365D)
Does what it says.
Goldbach Time IndicatorGoldbach Time Indicator (Minute Algebra + Core Levels)
A time-based discovery tool that maps minute arithmetic to a curated set of “Goldbach levels” (0–77) and highlights core reliable levels (29, 35, 71, 77) on any symbol/timeframe. It’s designed for session timing, event clustering, and pattern research—not price prediction.
What it shows
Three per-bar minute transforms:
Min = current minute (00–59)
Min+Hr = minute + hour (mapped, 60 → 00; valid up to 77)
Min−Hr = |minute − hour| (auto-chooses positive variant; 60 → 00)
Hit detection: marks a bar if any transform lands on an allowed Goldbach level.
Core emphasis: special tint/labels for 29, 35, 71, 77.
Optional background highlight (green for hits, blue tint when a core level is present).
Large corner readouts (optional): current Min / Min+Hr / Min−Hr with ✓ or ⭐ for core.
Detailed table: current time (your chosen timezone) + the three values and their status.
Histogram (optional): total hits and core hits under the chart.
Hover tooltips: per-bar time + which transforms hit (and whether they’re core).
Inputs & controls
Timezone Preset: UTC, New York, Tokyo, London, Sydney, or Custom UTC Offset.
Display toggles: Large number panels, Detailed table, Histogram, Horizontal reference lines.
Levels:
Standard set: 0,3,7,11,14,17,23,29,35,41,44,47,50,53,56,59,65,71,77
Core Only: show just 29, 35, 71, 77
Custom: paste your own comma-separated list (0–77)
Test Mode: assists with visual verification (e.g., consistent tooltips across all bars).
Core highlighting: stronger visual emphasis when a core level is hit.
How it helps
Session research: check if your strategy events cluster around certain minute signatures.
Timing filters: avoid entries during “no-hit” windows or focus on core hits.
Backtest guidance: the histogram and info panels make it easy to log/compare timing regimes.
Multi-market: independent of price scale—works for FX, indices, crypto, metals, single stocks.
Reading the visuals
Dots:
Yellow = Min, Lime = Min+Hr, Orange = Min−Hr, Blue = Core
Background:
Green = at least one hit, Blue tint = core level present
Tables/Panels: show current time (with timezone), raw values, and ✓/⭐ status.
Quick start
Choose your Timezone Preset (or set Custom UTC offset).
Start with Standard Levels; enable Core highlighting.
Turn on Detailed Table to confirm values match your venue/session.
(Optional) Show Histogram to see hit density; add Horizontal Lines for fixed references.
If needed, switch to Core Only or define Custom Levels to fit your hypothesis.
Notes & disclaimers
This is a time analytics overlay, not a buy/sell signal engine.
“Goldbach levels” here are a research framework (minute algebra 0–77) used for market-timing studies.
Always forward-test any timing rules with your strategy and risk plan.
Tags: timing, minute math, session research, clustering, core levels, UTC offset, macro timing, exploration