Quarterly Divider [Coded]// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org
// © TheClairvoyant_Trader
//@version=6
indicator("Quarterly Divider", overlay=true)
// Input for customizing line color and thickness
lineColor = input.color(color.blue, title="Line Color")
lineThickness = input.int(2, title="Line Thickness", minval=1, maxval=5)
// Define the quarter start dates (1st of Jan, Apr, Jul, and Oct) from 2025 onward
startYear = 2015
quarters = array.new_int(4)
// Add timestamps for each quarter in 2025 and beyond
for year = startYear to year(timenow)
array.push(quarters, timestamp(year, 1, 1, 0, 0)) // Q1
array.push(quarters, timestamp(year, 4, 1, 0, 0)) // Q2
array.push(quarters, timestamp(year, 7, 1, 0, 0)) // Q3
array.push(quarters, timestamp(year, 10, 1, 0, 0)) // Q4
// Loop through the array and draw vertical lines at the start of each quarter
for i = 0 to array.size(quarters) - 1
quarterStartTime = array.get(quarters, i)
if (time >= quarterStartTime) and (time < quarterStartTime)
// Draw vertical lines
line.new(x1=bar_index, x2=bar_index, y1=low, y2=high, color=lineColor, width=lineThickness, extend=extend.both)
// Plot quarter labels below the vertical line (near the timestamp)
quarterLabel = i % 4 == 0 ? "Q1" : i % 4 == 1 ? "Q2" : i % 4 == 2 ? "Q3" : "Q4"
label.new(bar_index, low - (high - low) * 0.1, text=quarterLabel, color=color.blue, style=label.style_label_up, size=size.small)
Multitimeframe
Pegasus – SMT Divergence (Hybrid: Sync/Async NQ Optimized)This script automatically identifies Smart Money Technique (SMT) divergences between two selected symbols (e.g., NQ & ES) and marks them visually on the chart.
Key Features:
Hybrid detection: supports both synchronous and asynchronous divergences
Multi-market support: optimized for NASDAQ (NQ) and S&P500 (ES), but also applicable to Forex, Crypto, and other markets
Visual controls: optional display or hiding of divergence lines, labels, and primary pivot links
Precise signal logic: detection of equal highs and equal lows with subsequent confirmation through SMT divergence
Specifically designed for intraday futures trading
Use Case:
The tool supports traders in analyzing SMT divergences as confluence for their strategies.
Disclaimer:
This script is not an automated trading system but is intended solely for analysis and decision support.
© 2025 Project Pegasus
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.
ICT Advanced Entry Models ICT Advanced Entry Models & Market Analysis
A complete ICT-style execution suite that blends multi-timeframe structure, session logic, and 12 refined entry models into one confluence engine. Built for traders who want rule-based signals, transparent reasoning, and on-chart risk management.
What It Does
Detects market structure (BOS/CHoCH), swing failures, ranges, and premium/discount zones.
Tracks FVGs and Order Blocks with mitigation status and visual boxes.
Scores 12 ICT entry models and issues tiered alerts when confluence ≥ your threshold.
Adapts to market regime (trending vs ranging) and volatility to filter noise.
Shows risk:reward, dynamic stops/targets, and position size guidance per trade.
Logs rolling performance metrics (win rate, average R, max drawdown).
Adds a probability heatmap of high-interaction price zones.
Entry models included (toggle any on/off)
1- Optimal Trade Entry (OTE)
2- Silver Bullet (London/NY windows)
3- Unicorn Model (stop hunt → FVG/OB)
4- FVG Entry (mitigation & confluence aware)
5- Order Block Entry (mitigation-aware)
6- Breaker Block Entry
7- Stop Hunt Entry (volume/ATR-validated)
8- Liquidity Grab Entry (equal highs/lows)
9- Market Maker Model (accumulation/manipulation/distribution)
10- Power of 3 (session behavior + Asian range context)
11- Judas Swing
12- Asian Range Breakout
Confluence & filters
Weighted scoring per model (customizable weights).
MTF alignment: pick Higher TF for bias, Lower TF for trigger.
Regime & volatility gates (ADX/ATR derived).
Zone logic: premium/discount & extreme zones influence signals.
Session context: kill zones, macro times, Silver Bullet windows.
Visuals & overlays
BOS/CHoCH/SF labels.
OB/FVG boxes (solid when active, dashed when mitigated).
Daily/Weekly/Monthly key levels + Equilibrium line.
Asian High/Low and OTE 62–79% bands.
Market-regime background tint and probability heatmap lines.
Top-right Info Table shows bias, zone, regime, MTF alignment, active models, and performance stats.
Risk management (on-chart)
Dynamic structural/ATR stops and 3 staged targets (TP1/TP2/TP3).
Shows R:R, estimated position size from account size and risk %.
Alerts (tiered & specific)
High / Medium / Low Probability ICT Signal (based on confluence).
Model-specific: Unicorn, Silver Bullet, OTE.
Structure: Break of Structure, CHoCH, Swing Failure.
Regime and Volatility state changes.
(Create alerts via “Add Alert” → choose this indicator’s conditions.)
Inputs you’ll use most
Entry Models (enable all or cherry-pick).
Model Weights & Confluence Threshold.
MTF: Higher TF for bias, Lower TF for entries.
Risk: Account size, risk %, min R:R.
Sessions: Kill zones, macro times, DST adjust.
Structure: Lookback, show BOS/CHoCH/SF.
FVG: Minimum size, mitigation tracking, confluence zones.
Regime: Trend/volatility periods.
Performance: Tracking window.
How to use (quick start)
Select market & timeframe (commonly M5–H1 for execution; set HTF to H4/D for bias).
Enable your preferred models and set weights.
Keep Confluence Threshold modest (e.g., 3.0–4.5) and raise it in choppy periods.
Only act when MTF alignment agrees with market regime, and R:R meets your minimum.
Manage trades using the suggested structural/ATR stop and staged TPs.
Notes
Designed for liquid FX, indices, metals, and crypto.
Not a promise of future performance—use with prudent risk and forward test first.
Session times are exchange-agnostic; adjust DST toggle if your venue differs.
Tags: ICT, Smart Money Concepts, FVG, Order Block, BOS, CHoCH, Silver Bullet, OTE, Liquidity, MTF, Confluence, Risk Management, Algorithmic, Session Killzones, Market Regime.
FMF15
The Traders Trend Dashboard (FMF15) is a comprehensive trend analysis tool designed to assist traders in making informed trading decisions across various markets and timeframes. Unlike conventional trend-following scripts,FMF15 goes beyond simple trend detection by incorporating
VT – Dashboard05🚀 Overview
VT – Dashboard05 is a multi-timeframe market state dashboard for Forex and other liquid markets. It summarizes Trend, RSI state, RSM, and ICT structure (BOS/MSS) across H1 / M30 / M15 / M5 / M1 in one compact table—plus clean rejection markers (“S” at the top, “B” at the bottom) controlled entirely from the Style tab. All higher-timeframe values are computed without lookahead and only confirm on their candle close.
✨ Key Features
5-TF Dashboard (H1, M30, M15, M5, M1) — Columns for TREND / RSI / RSM / ICT, color-coded for quick reads.
EMA-Stack Trend — Fast/Mid/Slow EMA alignment for Up / Sideways / Down bias.
RSI & RSM States — OB/OS plus RSI vs RSM momentum (RYB / RLLT).
ICT Structure (BOS / MSS) — Choose Close Break or Body Break; signals confirm only on TF close.
Rejection Markers (Style-only) — “S” at top, “B” at bottom; change colors/visibility in Style (no Inputs clutter).
Alerts — State-change alerts for TREND, RSI, RSM, ICT on each TF, plus rejection alerts on the chart TF.
No repaint tricks — HTF data pulled with gaps filled, lookahead off, confirmation on close.
🛠 How to Use
Add to chart → set Dashboard Position (Inputs).
Pick ICT Break Method (Close Break or Body Break).
Tune Structure Swing Length for H1/M30/M15/M5/M1.
(Optional) Toggle EMA1–EMA4 overlays for context.
Style the markers in Settings → Style:
Rejection (Top) → “S” at top (color/visibility here).
Rejection (Bottom) → “B” at bottom (color/visibility here).
Create alerts using built-in conditions (e.g., ICT change H1, TREND change M15, Rejection Bullish (chart TF)).
⚙️ Settings
Dashboard: Dashboard Position, Compact Mode.
Trend: EMA Fast / Mid / Slow Lengths.
RSI: RSI Length, OB/OS Levels.
RSM: RSM RSI Length, RSM EMA Length.
ICT Structure: ICT Break Method (Close vs Body), Structure Swing Length per TF (H1/M30/M15/M5/M1).
EMAs on Chart: EMA1–EMA4 lengths & show/hide.
Style Tab: Rejection (Top) and Rejection (Bottom) series for color/visibility.
📈 Trading Concepts
TREND: EMA stacking—aligned = UP, mixed = SW, bearish stack = DOWN.
RSI: OB > overbought, OS < oversold, else SW.
RSM: RYB when Uptrend, RLLT when Downtrend.
ICT (BOS/MSS):
BOS↑/BOS↓ = break of last swing high/low.
MSS↑/MSS↓ = break against the prior BOS direction (structure shift).
Signals are evaluated with Close Break or Body Break and confirm only on TF close.
Rejection: Bar-based reversal patterns—“S” marks bearish rejection (top), “B” marks bullish rejection (bottom).
Note: This is a technical analysis tool. Always practice proper risk management and combine with other analysis techniques for best results.
Category: Multi-Timeframe / Dashboard / Structure
Version: 1.0
Developer: VT
D|W|M - AkashDaily Weekly Monthly Divider Indicator
- Day Name
- Daily Weekly Monthly Divider
- Hide Unhide Divider
- Can Change The Color and Style
Session Time Milestones Highlight & AlertSession Time Milestones Highlight & Alert
This script allows you to track and highlight specific trading session milestones on your chart with customizable times, all set in GMT+7. It provides visual cues and alerts for key market events like Tokyo Open, Shanghai Open, Asia Lunch Time, London Open, London Lunch Time, and New York Open.
Features:
Customizable Time Milestones: Adjust the times for each session directly from the settings.
Candle Highlights: The script highlights the candles at your chosen session times for quick visual identification.
Alerts: Set alerts to be notified when each session starts.
Labels: Optionally display simple labels on the chart above the candles for each milestone, with easy toggles to turn them on or off.
Note: All times are in GMT+7.
DZ/SZ 🔱BrahmastraDemand and Supply Zones:
Demand Zone:
A demand zone is a price area on a chart where buying interest is strong enough to prevent the price from falling further. It is typically formed when price drops to a level and then reverses upward with strong momentum. Traders consider it as an area where institutions or big players are likely to place buy orders.
👉 It represents support.
Supply Zone:
A supply zone is a price area where selling pressure exceeds buying pressure, causing the price to stop rising and reverse downward. It is created when price rallies to a level and then falls back sharply. This indicates the presence of sellers or institutional sell orders.
👉 It represents resistance.
🔑 Key Points:
Demand = potential buying area (support).
Supply = potential selling area (resistance).
These zones help traders identify entry and exit points.
The stronger and fresher the zone (untouched recently), the more reliable it tends to be.
RSI Divergence + MTF PanelRSI Divergence + MTF Panel
📊 Short Description
A powerful indicator for detecting RSI divergences with a multi-timeframe panel that helps traders find high-quality trading opportunities across different time intervals.
✨ Key Features
🎯 Automatic Divergence Detection
- **Bullish Divergence**: Price makes lower lows while RSI makes higher lows
- **Bearish Divergence**: Price makes higher highs while RSI makes lower highs
- Visual divergence marking with lines on the chart
- Customizable colors and line styles
📈 Multi-Timeframe Panel (MTF)
- Displays RSI from 4 fixed timeframes simultaneously (5m, 15m, 1H, 4H)
- Color-coded RSI levels:
- 🔴 Red: RSI > 70 (overbought)
- 🟢 Green: RSI < 30 (oversold)
- ⚪ White: RSI between 30-70 (neutral zone)
⚙️ Flexible Settings
- RSI period (default 14)
- Divergence detection threshold
- Data source selection (close, hl2, hlc3, ohlc4)
- Color and transparency customization
- Enable/disable indicator components
📋 How to Use
1. **Add the indicator to your chart** - it will automatically start scanning for divergences
2. **Adjust parameters** to match your trading style
3. **Monitor the MTF panel** for overall market condition overview
4. **Look for divergences** combined with other signals for confirmation
🎯 Perfect for:
- Swing trading
- Intraday trading
- Finding reversal points
- Confirming trading signals
- Multi-timeframe analysis
⚡ Advantages
- **Automation**: No need to manually search for divergences
- **Multi-functionality**: RSI analysis + MTF overview in one indicator
- **Visual clarity**: Clear signals and color coding
- **Performance**: Optimized code for fast operation
- **Flexibility**: Wide customization options
📊 Technical Details
- Uses standard RSI with customizable period
- Divergence detection algorithm based on peaks and valleys
- MTF panel updates in real-time
- Supports all asset types (stocks, forex, crypto, commodities)
🔧 Usage Recommendations
- Combine with other indicators for signal confirmation
- Consider overall market trend
- Use risk management rules
- Test settings on historical data
👥 Suitable for:
- Beginners (easy to use)
- Experienced traders (flexible settings)
- All trading styles and timeframes
---
*This indicator is designed to enhance trading efficiency and help make informed trading decisions. Always follow risk management rules and don't rely on just one indicator.*
[KINGS TREND STRATEGY] – Kings Trend + Heikin Ashi Dynamic Tool
Category: Trend-Following / Swing Trading
Timeframes: Works on all timeframes (Intraday to Swing)
Markets: Stocks, Futures, Crypto, Forex
What is this Indicator?
is a trend-following indicator that combines the Half Trend algorithm with optional Heikin Ashi smoothing.
It clearly shows the direction of the trend (Uptrend / Downtrend).
It highlights Buy and Sell signals at high-probability zones.
Optionally, you can color-code the candles based on trend direction.
Key Features
Half Trend Algorithm:
Removes price noise to clearly display the direction of the trend.
Amplitude (sensitivity) can be adjusted manually.
Heikin Ashi Mode (Optional):
Uses Heikin Ashi candles to smooth trend calculations.
Displays Trend Strength (%) to gauge how strong or weak the trend is.
Auto Buy / Sell Signals:
Up (▲) and Down (▼) arrows are plotted whenever a trend reversal occurs.
Signal colors:
#17DFAD (Aqua Green) → Uptrend Signal
#DD326B (Magenta Red) → Downtrend Signal
Dynamic Candle Coloring:
Candles can be colored automatically according to the trend.
In an uptrend, candles appear greenish; in a downtrend, reddish.
On-Chart Dashboard:
Ticker, Timeframe, and Trend Info are displayed live on the chart.
In Heikin Ashi mode, Trend Strength % is also shown.
How to Use
Add to Chart → Select Timeframe → Adjust “Amplitude”:
Low amplitude → more frequent signals (scalping).
High amplitude → fewer but more reliable signals (swing trading).
Watch Buy/Sell Arrows:
▲ Up Arrow: Indicates potential long entry (trend reversal up).
▼ Down Arrow: Indicates potential short entry (trend reversal down).
Optional Enhancements:
Enable trend candles for a cleaner chart view.
Enable Heikin Ashi mode for smoother signals.
Best Practices
Confirm signals using support/resistance levels, volume indicators, or momentum oscillators (RSI / MACD).
Higher timeframes (1H / 4H / 1D) tend to produce more reliable results.
Do not trade solely based on this indicator — risk management is essential.
Disclaimer
This indicator is for educational purposes only.
Past performance does not guarantee future results.
Always use stop-loss and proper risk control when trading.
LUCID LION TRINITY V1The LUCID LION TRINITY V1 is a precision trading tool designed to simplify decision-making and enhance trade execution through clear entry, stop-loss, and multi-target profit zones.
This indicator combines a dynamic EMA trend filter with ATR-based risk management, giving traders a structured approach to spotting setups and managing trades effectively.
Core Features
• Automatic Buy & Sell Signals
• Buy signals appear when price crosses above the EMA.
• Sell signals appear when price crosses below the EMA.
• Risk Management Built In
• ATR-based Stop Loss ensures volatility-adjusted protection.
• Fully configurable ATR length & multiplier.
• Multi-Level Take Profits (TP1, TP2, TP3)
• TP1 aligns with your chosen Risk:Reward ratio.
• TP2 & TP3 extend profits for trend continuation.
• Adjustable multipliers to fit your style.
• Visual Trade Levels
• EMA trend confirmation.
• Stop Loss and TP levels plotted on chart.
• Clear entry markers for easy reference.
• Alerts Ready
• Instant notifications for Buy and Sell setups.
How to Use
1. Watch for a BUY or SELL signal.
2. Manage the trade using the plotted Stop Loss and TP zones.
3. Scale out at TP1, TP2, and TP3 to secure profits.
4. Always combine with your own analysis for best results.
Important Note
The LUCID LION TRINITY V1 does not guarantee profitable trades. It highlights potential entry and exit areas, but proper risk management and additional analysis are required.
📩 To gain access, email: lucidlionllc@icloud.com
Disclaimer
The LUCID LION TRINITY V1 indicator is provided strictly for educational and informational purposes only. It is not financial advice and should not be considered a recommendation to buy or sell any financial instrument.
Trading financial markets involves significant risk. Past performance does not guarantee future results. Use this tool at your own risk and always apply proper risk management.
Terms of Use
By purchasing or gaining access to the LUCID LION TRINITY V1, you agree to the following:
1. Educational Use Only – This tool is for educational purposes and not investment advice.
2. No Profit Guarantee – Results are not guaranteed. Market conditions vary.
3. User Responsibility – You are solely responsible for your trading decisions. Lucid Lion LLC is not liable for outcomes.
4. Non-Transferable Access – Access is for personal use only; redistribution is prohibited.
5. Risk Disclosure – Trading carries risk. Trade only with money you can afford to lose.
6. Refund Policy – All purchases are final. No refunds will be issued.
ExoCloudGet a clearer market perspective with ExoCloud, a lightweight indicator that visualizes the interplay between two adaptive moving averages as a color‑shaded cloud. **Green clouds** signal bullish momentum when the faster average is above the slower one, while **red clouds** highlight bearish pressure when the faster average drops below. Built for traders who prefer simplicity without sacrificing precision.
---
🔑 Key Features
Immediate Trend Visualization – The cloud instantly reveals market bias.
Multi‑Timeframe Mode– Overlay higher‑TF clouds on lower‑TF charts for confluence.
Adaptive Alerts– Real‑time notifications when bullish or bearish shifts occur.
Configurable Color Theme – Align cloud and baseline hues with your chart style.
---
🔔 Alerts
Cloud Bounce (Buy / Sell) – Price pulls back into the cloud and then rebounds in the prevailing trend, offering high‑probability continuation entries.
Cloud Flip (Bullish / Bearish) – The cloud color flips when momentum decisively changes sides, flagging early trend reversals once structure confirms.
Cloud Storm (Multi‑TF) – A lower‑time‑frame cloud crosses a higher one, creating cross‑time‑frame “storm” alerts that capture volatility expansions and breakout conditions.
---
🧩 Strategy Edge
1. Trend Filter – Execute longs only during green clouds and shorts during red clouds.
2. Pullback Entries – Wait for price to revisit the cloud, then trade in the prevailing direction.
3. Early Reversals – Watch for cloud color flips combined with volume expansion.
Hourly High/Low Sweep Lines – Fixed HorizontalMarks out the hourly high and lows for levels of liquidity for take profits
Separators + MTF Box with Sessions
Indicator Description
Professional Multi-Timeframe Analysis Tool with Session Visualization
This comprehensive trading indicator combines advanced multi-timeframe analysis with session visualization, providing traders with a complete market structure visualization toolkit.
🚀 Key Features
Multi-Timeframe Separators
· Smart vertical lines marking period beginnings across 7 timeframes (5min to Weekly)
· Customizable colors, styles, and visibility ranges for each timeframe
· 30-minute separator option for enhanced precision
· Automatic visibility based on your current chart timeframe
Dynamic MTF Box
· Displays higher timeframe support/resistance levels as clear visual lines
· Two operating modes: Automatic (smart selection) or Manual (user-defined)
· Customizable colors for High/Low lines and Open/Close lines
· Optional Open/Close level display
Session Visualization
· Visualizes key market sessions with customizable time ranges
· Customizable session colors and labels
· Automatic high/low detection within each session
· Professional box displays with session labels
🎯 How It Works
The indicator automatically:
1. Draws timeframe separators based on your chart's current timeframe
2. Displays higher-timeframe structure through the MTF box
3. Identifies and marks sessions with their respective ranges
4. Provides clean visual representation of multi-timeframe market structure
⚙ Customization Options
· Separators: Enable/disable individual timeframes, adjust colors, styles, and visibility
· MTF Box:
· Choose between Automatic or Manual mode
· Select timeframes
· Customize colors for High/Low and Open/Close lines
· Toggle Open/Close display
· Sessions: Customize session times, colors, and toggle individual phases
· General: Overall on/off controls for separators
📊 Ideal For
· Multi-Timeframe Analysis: Perfect for traders who analyze across different timeframes
· Session-Based Trading: Identify key market sessions and their ranges
· Market Structure Traders: Clear visualization of support/resistance levels
· Swing & Day Traders: Suitable for various trading styles and timeframes
💡 Pro Tips
1. Use the Automatic mode for smart timeframe selection
2. Adjust separator visibility to avoid clutter on your preferred chart timeframes
3. Combine the MTF box with session visualization for comprehensive market analysis
4. Use different colors for quick visual recognition of various timeframes
⚠ Note
This indicator uses multiple security calls for MTF functionality. Performance may vary on very low timeframes with many enabled features.
Elevate your trading analysis with this all-in-one market structure tool that combines the power of multi-timeframe analysis with session visualization!
---
How to Use
1. Apply the indicator to any chart
2. Configure separator settings in the "Separators" groups
3. Set MTF Box preferences (mode, timeframe, colors)
4. Customize session times and colors in the "Sessions" group
5. The indicator will automatically display relevant market structure information
Compatibility
· Works on all chart types (candlestick, bar, line, etc.)
· Compatible with all TradingView instruments (stocks, forex, crypto, indices)
· Responsive design works on all timeframes from 1 minute to monthly
Transform your chart analysis with this powerful combination of timeframe separators, MTF structure visualization, and session analysis!
cd_SMT_Sweep_CISD_CxGeneral
This indicator is designed to show trading opportunities after sweeps of higher timeframe (HTF) highs/lows and, if available, Smart Money Technique (SMT) divergence with a correlated asset, followed by confirmation from a lower timeframe change in state delivery (CISD).
Users can track SMT, Sweep, and CISD levels across nine different timeframes.
________________________________________
Usage and Details
Commonly correlated timeframes are available in the menu by default. Users can also enter other compatible timeframes manually if necessary.
The indicator output is presented as:
• A summary table
• Display on HTF candles
• CISD levels shown as lines
Users can disable any of these from the menu.
Presentations of selected timeframes are displayed only if they are greater than or equal to the active chart timeframe.
From the Show/Hide section, you can control the display of:
• SMT table
• Sweep table
• HTF candles
• CISD levels
• HTF boxes aligned with the active timeframe
________________________________________
SMT Analysis
To receive analysis, users must enter correlated assets in the menu (or adjust them as needed).
If asset X is paired with correlated asset Y, then a separate entry for Y correlated with X is not required.
Four correlation pairs are included by default. Users should check them according to their broker/exchange or define new ones.
Checkboxes at the beginning of each row allow activation/deactivation of pairs.
SMT analysis is performed on the last three candles of each selected HTF.
If one asset makes a new high while the correlated one does not (or one makes a new low while the other does not), this is considered SMT and will be displayed both in the table and on the chart.
Charts without defined correlated assets will not display an SMT table.
________________________________________
Sweep Analysis
For the selected timeframes, the current candle is compared with the previous one.
If price violates the previous level and then pulls back behind it, this is considered a sweep. It is displayed in both the table and on the chart.
Within correlated pairs, the analysis is done separately and shown only in the table.
Example with correlated and non-correlated pairs:
• In the table, X = false, ✓ = true.
• The Sweep Table has two columns for Bullish and Bearish results.
• For correlated pairs, both values appear side by side.
• For undefined pairs, only the active asset is shown.
Example 1: EURUSD and GBPUSD pair
• If both sweep → ✓ ✓
• If one sweeps, the other does not → ✓ X
• If neither sweeps → X X
Example 2: AUDUSD with no correlated pair defined
• If sweep → ✓
• If no sweep → X
________________________________________
HTF Candles
For every HTF enabled by the user, the last three candles (including the current one) are shown on the chart.
SMT and sweep signals are marked where applicable.
________________________________________
CISD Levels
For the selected timeframes, bullish and bearish CISD levels are plotted on the chart.
________________________________________
HTF Boxes
HTF boxes aligned with the active timeframe are displayed on the chart.
Box border colors change according to whether the active HTF candle is bullish or bearish.
________________________________________
How to Read the Chart?
Let’s break down the example below:
• Active asset: Nasdaq
• Correlated asset: US500 (defined in the menu, confirmed in the table bottom row)
• Active timeframe: H1 → therefore, the HTF box is shown for Daily
• Since a correlated pair is defined, the indicator runs both SMT and Sweep analysis for the selected timeframes. Without correlation, only Sweep analysis would be shown.
Table is prepared for H1 and higher timeframes (as per user selection and active TF).
Observations:
• SMT side → H1 timeframe shows a bearish warning
• Sweep side → Bearish column shows X and ✓
o X → no sweep on Nasdaq
o ✓ → sweep on US500
Meaning: US500 made a new high (+ sweep) while Nasdaq did not → SMT formed.
The last column of the table shows the compatible LTF for confirmation.
For H1, it suggests checking the 5m timeframe.
On the chart:
• CISD levels for selected timeframes are drawn
• SMT line is marked on H1 candles
• Next step: move to 5m chart for CISD confirmation before trading (with other confluences).
Similarly, the Daily row in the table shows a Bullish Sweep on US500.
________________________________________
Alerts
Two alert options are available:
1. Activate Alert (SMT + Sweep):
Triggers if both SMT and Sweep occur in the selected timeframes. (Classic option)
2. Activate Alert (Sweep + Sweep):
Triggers if sweeps occur in both assets of a correlated pair at the same timeframe.
Interpretation:
If SMT + Sweep are already present on higher timeframes, and simultaneous sweeps appear on lower timeframes, this may indicate a strong directional move.
Of course, this must be validated with CISD and other confluences.
________________________________________
HTF CISD Levels
Although CISD levels act as confirmation levels in their own timeframe, observing how price reacts to HTF CISD levels can provide valuable insights for intraday analysis.
POIs overlapping with these levels may be higher priority.
________________________________________
What’s Next in Future Versions?
• Completed CISD confirmations
• Additional alert options
• Plus your feedback and suggestions
________________________________________
Final Note
I’ll be happy to hear your opinions and feedback.
Happy trading!
Super Candle Indicator (Mark Alex Tucker)Going to be free for a limited time. I would like to know what everyone thinks of this. A candle indicator where the settings can be changed to find the right fit for the timeframe or the symbol you are trading. Please post any success you found with this.
Multi-Timeframe RSI Heat Map with NW EnvelopeMulti-Timeframe RSI Stochastic Heat Map with Nadaraya-Watson Envelope
This indicator combines multi-timeframe RSI and Stochastic RSI analysis with adaptive envelope calculations to provide comprehensive momentum assessment across multiple time horizons.
Core Features
Multi-Timeframe Analysis: Displays RSI and Stochastic RSI values across up to 17 configurable timeframes in a color-coded table format. Users can select from preset timeframe collections or create custom configurations with individual enable/disable controls.
Visual Heat Map System: Values are displayed using a temperature-based color coding system ranging from cold (oversold) to hot (overbought) conditions, enabling quick visual assessment of momentum extremes across timeframes.
Nadaraya-Watson Integration: Includes adaptive envelope functionality with both repainting and non-repainting modes. The envelope system uses kernel regression to identify dynamic support and resistance zones.
Configuration Options
The indicator offers extensive customization including timeframe selection, table positioning (9 locations), layout orientation (vertical/horizontal), color scheme modification, and envelope parameter adjustment. Users can fine-tune RSI periods, Stochastic smoothing, and bandwidth settings to match their analytical preferences.
Technical Implementation
Built using Pine Script v6 with optimized multi-timeframe data handling and efficient table management. The system balances comprehensive analysis capabilities with chart performance considerations.
Practical Applications
Suitable for momentum analysis, trend confirmation, extreme condition identification, and multi-timeframe alignment assessment. The combination of heat map visualization and envelope boundaries provides traders with both momentum context and dynamic price level references.
Usage Considerations
Multi-timeframe analysis may experience data delays during low-liquidity periods. Performance optimization features allow users to balance detail level with system responsiveness. The indicator works across all timeframes and instruments with adequate historical data.
Disclaimer: This indicator is for educational and analytical purposes only. Multi-timeframe momentum analysis does not guarantee future price movements. Users should conduct thorough testing and validation before incorporating this tool into their trading approach. Past performance of momentum patterns does not predict future results.
Time-Based Manipulation ProjectionsThis indicator automatically plots custom projection levels based on session and timeframe opening prices, utilizing the AMD/PO3 concept (Accumulation, Manipulation, Distribution / Power of Three). The theory suggests that price typically opens, creates an initial manipulation move to hunt liquidity, then reverses for distribution.
By measuring the distance from the open to the initial high/low manipulation, the indicator projects potential targets and reversal zones at customizable ratios, with the 2-2.5x and 4-4.5x extensions often serving as key areas.
Features:
Session-Based Projections: 4 custom session-based projections with full control over the opening time and the time when the projections stop updating with new manipulation highs/lows (Midnight, Daily, NY Open, etc)
Timeframe-Based Projections: 4 custom timeframe-based projections (H1, H4, Daily, Weekly, etc.)
Dynamic Anchoring: In line with AMD/PO3 logic, the indicator automatically locks to the correct manipulation leg (high or low) based on price position relative to the open
Custom Projections: Define your own projection levels
Custom Labels: Assign your own names to each projection, making it easy to identify and organize levels on the chart
Historical Levels: Option to display past projections
Styling Options: Choose line style, thickness, colors, label size, font, and positioning
Extend Lines: Option to extend projections forward to current price
Delayed Plotting: Set a delay (in minutes) after open before projections appear, useful to avoid false early swings
Note: These projections are most effective when the manipulation leg is clean and well-defined. If the manipulation is shallow, standard projections like 2–2.5x or 4–4.5x may not provide useful levels. In such cases, try experimenting with larger custom projections.
Multi-Symbol Options Trading IndicatorSymbol Configuration: User can input three different symbols (INDEX, CE, PE) with individual timeframes
Customizable Settings: Fully editable MACD and Stochastic parameters
Signal Generation:
BUY CE: When INDEX shows bullish signals AND CE option shows bullish signals
BUY PE: When INDEX shows bearish signals AND PE option shows bullish signals
Signal Conditions:
BUY CE Signal (all must be true):
INDEX: Stochastic %K > %D
INDEX: MACD line > Signal line
INDEX: Histogram shows bullish trend over specified bars
CE: Stochastic %K > %D
CE: MACD line > Signal line
CE: Histogram shows bullish trend over specified bars
BUY PE Signal (all must be true):
INDEX: Stochastic %K < %D
INDEX: MACD line < Signal line
INDEX: Histogram shows bearish trend over specified bars
PE: Stochastic %K > %D
PE: MACD line > Signal line
PE: Histogram shows bullish trend over specified bars
Visual Elements:
Green triangle up with "BUY CE" text when CE signal triggers
Red triangle down with "BUY PE" text when PE signal triggers
Background coloring on signal candles
Conditions table showing real-time status of all conditions
Alerts for both signal types
Usage Instructions:
Add the indicator to your chart
Configure your three symbols (INDEX, CE option, PE option)
Set timeframes for each symbol
Adjust MACD and Stochastic parameters as needed
Set the number of histogram bars for trend analysis
Enable/disable the conditions table and choose its position
The table will show you exactly which conditions are met (✓) or not met (✗) for both signal types, making it easy to monitor the setup in real-time.
Bias & Rules ChecklistThis script provides a clean trading checklist panel:
Bias calculation on a selectable timeframe (e.g., 1H, 4H, Daily)
Up to 5 fully customizable rules with individual scores
Automatic total score and percentage calculation
Designed and developed by ValieTrades