Outside Candle Session Breakout [CHE]Outside Candle Session Breakout
Session - anchored HTF levels for clear market-structure and precise breakout context
Summary
This indicator is a relevant market-structure tool. It anchors the session to the first higher-timeframe bar, then activates only when the second bar forms an outside condition. Price frequently reacts around these anchors, which provides precise breakout context and a clear overview on both lower and higher timeframes. Robustness comes from close-based validation, an adaptive volatility and tick buffer, first-touch enforcement, optional retest, one-signal-per-session, cooldown, and an optional trend filter.
Pine version: v6. Overlay: true.
Motivation: Why this design?
Short-term breakout tools often trigger during noise, duplicate within the same session, or drift when volatility shifts. The core idea is to gate signals behind a meaningful structure event: a first-bar anchor and a subsequent outside bar on the session timeframe. This narrows attention to structurally important breaks while adaptive buffering and debouncing reduce false or mid-run triggers.
What’s different vs. standard approaches?
Baseline: Simple high-low breaks or fixed buffers without session context.
Architecture: Session-anchored first-bar high/low; outside-bar gate; close-based confirmation with an adaptive ATR and tick buffer; first-touch enforcement; optional retest window; one-signal-per-session and cooldown; optional EMA trend and slope filter; higher-timeframe aggregation with lookahead disabled; themeable visuals and a range fill between levels.
Practical effect: Cleaner timing at structurally relevant levels, fewer redundant or late triggers, and better multi-timeframe situational awareness.
How it works (technical)
The chart timeframe is mapped to an analysis timeframe and a session timeframe.
The first session bar defines the anchor high and low. The setup becomes active only after the next bar forms an outside range relative to that first bar.
While active, the script tracks these anchors and checks for a breakout beyond a buffered threshold, using closing prices or wicks by preference.
The buffer scales with volatility and is limited by a minimum tick floor. First-touch enforcement avoids mid-run confirmations.
Optional retest requires a pullback to the raw anchor followed by a new close beyond the buffered level within a user window.
Optional trend gating uses an EMA on the analysis timeframe, including an optional slope requirement and price-location check.
Higher-timeframe data is requested with lookahead disabled. Values can update during a forming higher-timeframe bar; waiting and confirmation mitigate timing shifts.
Parameter Guide
Enable Long / Enable Short — Direction toggles. Default: true / true. Reduces unwanted side.
Wait Candles — Minimum bars after outside confirmation before entries. Default: five. More waiting increases stability.
Close-based Breakout — Confirm on candle close beyond buffer. Default: true. For wick sensitivity, disable.
ATR Buffer — Enables adaptive volatility buffer. Default: true.
ATR Multiplier — Buffer scaling. Default: zero point two. Increase to reduce noise.
Ticks Buffer — Minimum buffer in ticks. Default: two. Protects in quiet markets.
Cooldown Bars — Blocks new signals after a trigger. Default: three.
One Signal per Session — Prevents duplicates within a session. Default: true.
Require Retest — Pullback to raw anchor before confirming. Default: false.
Retest Window — Bars allowed for retest completion. Default: five.
HTF Trend Filter — EMA-based gating. Default: false.
EMA Length — EMA period. Default: two hundred.
Slope — Require EMA slope direction. Default: true.
Price Above/Below EMA — Require price location relative to EMA. Default: true.
Show Levels / Highlight Session / Show Signals — Visual controls. Default: true.
Color Theme — “Blue-Green” (default), “Monochrome”, “Earth Tones”, “Classic”, “Dark”.
Time Period Box — Visibility, size, position, and colors for the info box. (Optional)
Reading & Interpretation
The two level lines represent the session’s first-bar high and low. The filled band illustrates the active session range.
“OUT” marks that the outside condition is confirmed and the setup is live.
“LONG” or “SHORT” appears only when the breakout clears buffer, debounce, and optional gates.
Background tint indicates sessions where the setup is valid.
Alerts fire on confirmed long or short breakout events.
Practical Workflows & Combinations
Trend-following: Keep close-based validation, ATR buffer near the default, one-signal-per-session enabled; add EMA trend and slope for directional bias.
Retest confirmation: Enable retest with a short window to prioritize cleaner continuation after a pullback.
Lower-timeframe scalping: Reduce waiting and cooldown slightly; keep a small tick buffer to filter micro-whips.
Swing and position context: Increase ATR multiplier and waiting; maintain once-per-session to limit duplicates.
Timeframe Tiers and Trader Profiles
The script adapts its internal mapping based on the chart timeframe:
Under fifteen minutes → Analysis: one minute; Session: sixty minutes. Useful for scalpers and high-frequency intraday reads.
Between fifteen and under sixty minutes → Analysis: fifteen minutes; Session: one day. Suits day traders who need intraday alignment to the daily session.
Between sixty minutes and under one day → Analysis: sixty minutes; Session: one week. Serves intraday-to-swing transitions and end-of-day planning.
Between one day and under one week → Analysis: two hundred forty minutes; Session: two weeks. Fits swing traders who monitor multi-day structure.
Between one week and under thirty days → Analysis: one day; Session: three months. Supports position traders seeking quarterly context.
Thirty days and above → Analysis: one day; Session: twelve months. Provides a broad annual anchor for macro context.
These tiers are designed to keep anchors meaningful across regimes while preserving responsiveness appropriate to the trader profile.
Behavior, Constraints & Performance
Signals can be validated on closed bars through close-based logic; enabling this reduces intrabar flicker.
Higher-timeframe values may evolve during a forming bar; waiting parameters and the outside-bar gate reduce, but do not remove, this effect.
Resource footprint is light; the script uses standard indicators and a single higher-timeframe request per stream.
Known limits: rare setups during very quiet periods, sensitivity to gaps, and reduced reliability on illiquid symbols.
Sensible Defaults & Quick Tuning
Start with close-based validation on, ATR buffer on with a multiplier near zero point two, tick buffer two, cooldown three, once-per-session on.
Too many flips: increase the ATR multiplier and cooldown; consider enabling the EMA filter and slope.
Too sluggish: reduce the ATR multiplier and waiting; disable retest.
Choppy conditions: keep close-based validation, increase tick buffer, shorten the retest window.
What this indicator is—and isn’t
This is a visualization and signal layer for session-anchored breakouts with stability gates. It is not a complete trading system, risk framework, or predictive engine. Combine it with structured analysis, position sizing, and disciplined risk controls.
Disclaimer
The content provided, including all code and materials, is strictly for educational and informational purposes only. It is not intended as, and should not be interpreted as, financial advice, a recommendation to buy or sell any financial instrument, or an offer of any financial product or service. All strategies, tools, and examples discussed are provided for illustrative purposes to demonstrate coding techniques and the functionality of Pine Script within a trading context.
Any results from strategies or tools provided are hypothetical, and past performance is not indicative of future results. Trading and investing involve high risk, including the potential loss of principal, and may not be suitable for all individuals. Before making any trading decisions, please consult with a qualified financial professional to understand the risks involved.
By using this script, you acknowledge and agree that any trading decisions are made solely at your discretion and risk.
Do not use this indicator on Heikin-Ashi, Renko, Kagi, Point-and-Figure, or Range charts, as these chart types can produce unrealistic results for signal markers and alerts.
Best regards and happy trading
Chervolino
מחזורים
Swing Breakout Strategy — Candles + Divergences + Patterns (rev)Overview
A multi-confirmation swing strategy that seeks trend breakouts and adds three optional confluence modules: candlestick patterns, RSI/MACD regular divergences, and simple chart patterns (double top/bottom). Built for clarity, fast testing, and togglable debug markers.
Core Logic
Trend filter: SMA(50) vs SMA(200) + price vs SMA(21).
Breakout engine: Close breaks prior N-bar high/low (lookback configurable).
Momentum: Stochastic cross (optional view), MACD cross/zone, RSI regime (>50 or <50).
Volume: Above SMA(volume) filter.
Optional Confluence Modules
Candlestick analysis (enable/disable):
Bull/Bear Engulfing, Hammer, Shooting Star, Inside Bar (bull/bear flavors).
Divergence (enable/disable):
Regular divergences on RSI and MACD histogram using confirmed pivots (HH/LH or LL/HL).
Chart patterns (enable/disable):
Double Bottom (two similar lows + neckline break).
Double Top (two similar highs + neckline break).
Tolerance and pivot width are configurable.
Entries & Exits
Entry Long: Any of (Base Breakout + Trend + Momentum + Volume) OR enabled confluences (candles / divergence / pattern).
Entry Short: Symmetric logic for downside.
Risk management: Optional ATR-based stop loss and take profit (configurable length & multipliers).
Note: If you prefer confluences to be filters (AND), change the final buySignal/sellSignal lines accordingly.
Inputs (key)
SMA lengths (21/50/200), RSI length, Stochastic lengths & smoothing, MACD (12/26/9).
Breakout lookback, Volume SMA.
ATR exits (on/off, ATR length, SL/TP multipliers).
Toggles for Candlesticks, Divergences, Patterns, plus per-module debug markers.
Plots & Markers
Plots SMA 21/50/200.
Buy/Sell arrows on chart.
Optional debug markers for each condition (global-scope safe).
Divergence/pattern markers offset to the actual pivot/neckline bars.
Good Practices
Test on multiple timeframes and instruments; tune lookbacks and ATR multipliers.
Consider using the modules as filters in trending markets to reduce whipsaws.
Always forward-test and combine with position sizing.
Disclaimer
For educational purposes only. This is not financial advice. Trading involves risk.
Version & Credits
Pine Script® v6 — Strategy.
Developed by: Mohammed Bedaiwi.
NF_PLASMA_SURGE 🧩 NF_PLASMA_SURGE (NightFury Systems)
Author: Lachin M. Akhmedov (aka NightFury)
⚙️ A volumetric impulse oscillator detecting real candle energy through body density, directional momentum, and normalized volatility thrust.
🧠 Core Concept:
Not another RSI. Not another MACD.
NF_PLASMA_SURGE isolates true directional impulse by measuring the physics of price:
Body Energy → how much of each candle’s range is real movement.
Volume Thrust → amplifies strong participation only.
Volatility Normalization → filters emotional spikes and fake momentum.
⚡ Outputs:
Toxic Green = Real buy impulse (surge ignition)
Red Inferno = Real sell impulse (energy drain)
⚡ marks = Charged bursts detected (|z| > threshold)
💫 Synergy:
Designed to integrate with NF_CYBER_FURY as its ignition companion —
Cyber powers the reactor; Plasma lights the core.
🧩 Recommended Stack:
NF_CYBER_FURY + NF_PLASMA_SURGE = The NightFury Reactor System
VIX SPY FOREX Commodities BitcoinCompilation of market data as of 10/18 showing correlations between corresponding sectors.
Turtle Soup Multi Timeframe (D + 30m)
This indicator indicates when there is a turtle soup with a 30-minute timeframe aligned with a one-day timeframe.
OPEX VIXEX datesUpdated ohlocracy's OPEX script till 2030
These dates are for standard equity, index, and ETF options expiration managed by OCC, with monthly expirations usually on the third Friday and weekly expirations on other Fridays, except holidays which cause adjustments to Thursdays or nearby trading days.
Quarterly options expiration dates in the US stock market are on the last trading day of the quarter, usually the last business day of March, June, September, and December.
These dates are the last trading day of each quarter, accounting for weekends and holidays when the market is closed. When the last calendar day falls on a weekend, the expiration is set to the last prior trading day.
The VIX monthly expiration is on the Wednesday prior to the stock market monthly opex (third Friday). When holidays affect these days, the expiration shifts to the business day before.
Crypto Cycle Radar (TOTAL / TOTAL2 / TOTAL3 / BTC.D / USDT.D)Crypto Cycle Radar (TOTAL / TOTAL2 / TOTAL3 / BTC.D / USDT.D)
Power of 369 [SmartFoxy]The Power of 369 Indicator detects market swing structures and overlays dynamic time-based color labeling using the 3-6-9 numeric pattern.
It highlights price turning points with summed time signatures, aligning intraday structure with temporal symmetry.
Includes OTT session filtering, automatic box plotting, ATR-based validation, and custom color control for 3, 6, 9 digit resonance.
---
## 📘 How to Use
Activate the Indicator
1. Add Magic 369 to your chart.
It works on any timeframe and market — Forex, Crypto, Indices, or Stocks.
2. Adjust the Session Duration to divide the chart into visual time blocks.
3. Use the OTT filter to show activity only during your preferred trading session.
4. Enable “Show sum of times” to display the digit sum of each candle’s time (e.g., m+m or h+h+m+m).
Combine this with “Show Swing Labels” or Market Structures to visualize both time and structure interaction.
5. Turn on “Set new colors 369” in the settings.
Each label changes its color based on the time-sum value:
3 → Orange — Accumulation;
6 → Blue — Manipulation;
9 → Purple — Distribution;
Other digits → Neutral gray.
6. Market Structure Tools:
Detects Swing Highs/Lows automatically;
Marks BoS (Break of Structure) and CHoCH (Change of Character);
Optionally validates swings using ATR deviation for confirmation.
7. Customize Visuals – Adjust label size, line style, colors, and opacity to match your chart theme.
8. Interpretation – Use the 3-6-9 patterns to identify time-based energy shifts in market flow —
3 initiates accumulation, 6 signals manipulation, and 9 completes distribution. Together, they reveal the rhythm behind structural price movements.
---
## ⚙️ Settings Overview
🕓 Session Settings:
Show Boxes Session – enables time-block boxes on chart.
Session Duration – defines how many bars each session lasts.
Show only at OTT – displays sessions only during your chosen trading hours (e.g., 16:30–22:00).
Boxes Drawing Limit – limits the maximum number of boxes drawn on the chart.
🔢 3-6-9 Color Logic
Set new colors 369 – activates unique colors based on the time-sum digit.
/3, /6, /9, /others – customize colors for each digit group:
3 → Accumulation;
6 → Manipulation;
9 → Distribution;
others → Neutral.
🧭 Labels
Show Swings Labels – toggles display of H/L, HH/HL/LL/LH, or symbol ◆.
Show sum of times – displays digit-sum values next to swing labels.
Type of Sum – choose between:
m+m → uses minute sum only
h+h+m+m → uses hour + minute sum combined
Label Size – adjusts label text size.
📈 Market Structure (𝓜𝓢)
Show Market Structures – enables structure detection and visualization.
Show 𝓜𝓢 Validation (ATR) – confirms structure strength using ATR-based deviation logic.
Show 𝓜𝓢 Labels – shows BoS and CHoCH labels directly on the chart.
Show Levels – draws support/resistance levels from recent structures.
Colors – separate settings for bullish and bearish structures.
CHAN CRYPTO RS🩷 ATR RS (Crypto / High-based 2.1x, Decimal Safe v2)
This indicator is designed for crypto position sizing and stop calculation using ATR-based risk management. It helps traders automatically determine the stop price, per-unit risk, and optimal position size based on a fixed risk amount in USDT.
🔧 Core Logic
ATR Length (Daily RMA) — calculates the daily Average True Range (ATR) using RMA smoothing.
ATR Multiplier (2.1× default) — defines how far the stop is placed from the daily high.
Stop Price (for Longs) = Daily High − ATR × Multiplier
Per-Unit Risk = (Entry − Stop) × Point Value
Position Size = Risk Amount ÷ Per-Unit Risk
Automatically handles decimal precision for micro-priced crypto assets (e.g., PEPE, SHIB).
Includes safeguards for minimum size and maximum position caps.
💡 Features
Uses Daily ATR without lookahead (no repainting).
Dynamically switches between current and previous ATR for stable results when the daily bar isn’t yet confirmed.
“Snap to tick” ensures stop prices align with the symbol’s tick size.
Table display summarizes ATR, stop price, per-unit risk, total risk, size, and bet amount.
Optional stop label on the chart for visual clarity.
🧮 Output Table
Metric Description
ATR(10) Daily RMA-based ATR
ATR used Chosen ATR (current or previous)
Stop Calculated stop price
Per-unit Risk per coin/unit
Risk Total risk in USDT
Size Optimal position size
Bet Total position value (Entry × Size)
🧠 Ideal For
Crypto traders who use fixed-risk ATR strategies and need precise, decimal-safe position sizing even for ultra-low-priced tokens.
tulsinanda Ribbonsbest above any band buy n cross down sell .bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbest indicator here line above is buy n lines down is sell .here analysis wave n price up n down we want tobest indicator here line above is buy n lines down is sell .here analysis wave n price up n down we want tobest indicator here line above is buy n lines down is sell .here analysis wave n price up n down we want tobest indicator here line above is buy n lines down is sell .here analysis wave n price up n down we want tobest indicator here line above is buy n lines down is sell .here analysis wave n price up n down we want tobest indicator here line above is buy n lines down is sell .here analysis wave n price up n down we want to
Entries + FVG SignalsE+FVG: A Masterclass in Institutional Trading Concepts
Chapter 1: The Modern Trader's Dilemma—Decoding the Institutional Footprint
In the vast, often chaotic ocean of the financial markets, retail traders navigate with the tools they are given: conventional indicators like moving averages, RSI, and MACD. While useful for gauging momentum and general trends, these tools often fall short because they were not designed to interpret the primary force that moves markets: institutional order flow. The modern trader faces a critical challenge: the tools and concepts taught in mainstream trading education are often decades behind the sophisticated, algorithm-driven strategies employed by banks, hedge funds, and large financial institutions.
This leads to a frustrating cycle of seemingly inexplicable price movements. A trader might see a perfect breakout from a classic pattern, only for it to reverse viciously, stopping them out. They might identify a strong trend, yet struggle to find a logical entry point, consistently feeling "late to the party." These experiences are not random; they are often the result of institutional market manipulation designed to engineer liquidity.
The fundamental problem that E+FVG (Entries + FVG Signals) addresses is this informational asymmetry. It is a sophisticated, institutional-grade framework designed to move a trader's perspective from a retail mindset to a professional one. It does not rely on lagging, derivative indicators. Instead, it focuses on the two core elements of price action that reveal the true intentions of "Smart Money": liquidity and imbalances.
This is not merely another indicator to add to a chart; it is a complete analytical engine designed to help you see the market through a new lens. It deconstructs price action to pinpoint two critical things:
Where institutions are likely to hunt for liquidity (running stop-loss orders).
The specific price inefficiencies (Fair Value Gaps) they are likely to target.
By focusing on these core principles, E+FVG provides a logical, rules-based solution to identifying high-probability trade setups. It is built for the discerning trader who is ready to evolve beyond conventional technical analysis and learn a methodology that is aligned with how the market truly operates at an institutional level. It is, in essence, an operating system for "Smart Money" trading.
Chapter 2: The Core Philosophy—Liquidity is the Fuel, Imbalances are the Destination
To fully grasp the power of this tool, one must first understand its foundational philosophy, which is rooted in the core tenets of institutional trading, often referred to as Smart Money Concepts (SMC). This philosophy can be distilled into two simple, powerful ideas:
1. Liquidity is the Fuel that Moves the Market:
The market does not move simply because there are more buyers than sellers, or vice-versa. It moves to seek liquidity. Large institutions cannot simply click "buy" or "sell" to enter or exit their multi-million or billion-dollar positions. Doing so would cause massive slippage and alert the entire market to their intentions. Instead, they must strategically accumulate and distribute their positions in areas where there is a high concentration of orders.
Where are these orders located? They are clustered in predictable places: above recent swing highs (buy-stop orders from shorts, and breakout buy orders) and below recent swing lows (sell-stop orders from longs, and breakout sell orders). This collective pool of orders is called liquidity. Institutions will often drive price towards these liquidity pools in a "stop hunt" or "liquidity grab" to trigger those orders, creating the necessary volume for them to fill their own large positions, often in the opposite direction of the liquidity grab itself. Understanding this concept is the key to avoiding being the "fuel" and instead learning to trade alongside the institutions.
2. Imbalances (Fair Value Gaps) are the Magnets for Price:
When institutions enter the market with overwhelming force, they create an imbalance in the order book. This energetic, one-sided price movement often leaves behind a gap in the market's pricing mechanism. On a candlestick chart, this appears as a Fair Value Gap (FVG)—a three-candle formation where the wicks of the first and third candles do not fully overlap the range of the middle candle.
These are not random gaps; they represent an inefficiency in the market's price delivery. The market, in its constant quest for equilibrium, has a natural tendency to revisit these inefficiently priced areas to "rebalance" the order book. Therefore, FVGs act as powerful magnets for price. They serve as high-probability targets for a price move and, critically, as logical points of interest where price may reverse after filling the imbalance. A fresh, unfilled FVG is one of the most significant clues an institution leaves behind.
E+FVG is built entirely on this philosophy. The "Entries Simplified" engine is designed to identify the liquidity grabs, and the "FVG Signals" engine is designed to identify the imbalances. Together, they provide a complete, synergistic framework for institutional-grade analysis.
Chapter 3: The Engine, Part I—"Entries Simplified": A Framework for Precision Entry
This is the primary trade-spotting engine of the E+FVG tool. It is a multi-layered system designed to identify a very specific, high-probability entry model based on institutional behavior. It filters out market noise by focusing solely on the sequence of a liquidity sweep followed by a clear and energetic displacement.
Feature 1: The Multi-Timeframe Liquidity Engine
The first and most crucial step in the engine's logic is to identify a valid liquidity grab. The script understands that the most significant reversals are often initiated after price has swept a key high or low from a higher timeframe. A sweep of yesterday's high holds far more weight than a sweep of the last 5-minute high.
Automatic Timeframe Adaptation: The engine intelligently analyzes your current chart's timeframe and automatically selects an appropriate higher timeframe (HTF) for its core analysis. For instance, if you are on a 15-minute chart, it might reference the 4-hour or Daily chart to identify key structural points. This is done seamlessly in the background, ensuring the analysis is always anchored to a significant structural context without requiring manual input.
The "Sweep" Condition: The script is not looking for a simple touch of a high or low. It is looking for a definitive sweep (also known as a "stop hunt" or "Judas swing"). This is defined as price pushing just beyond a key prior candle's high or low and then closing back within its range. This specific price action pattern is a classic signature of a liquidity grab, indicating that the move's purpose was to trigger stops, not to start a new, sustained trend. The "Entries Simplified" engine is constantly scanning the HTF price action for these sweep events, as they are the necessary precondition for any potential setup.
Feature 2: The Upshift/Downshift Signal—Confirming the Reversal
Once a valid HTF liquidity sweep has occurred, the engine moves to its next phase: identifying the confirmation. A sweep alone is not enough; institutions must show their hand and reveal their intention to reverse the market. This confirmation comes in the form of a powerful structural breakout (for bullish reversals) or breakdown (for bearish reversals). We call these events Upshifts and Downshifts.
Defining the Upshift & Downshift: This is the critical moment of confirmation, the market "tipping its hand."
An Upshift occurs after a liquidity sweep below a key low. Following the sweep, price reverses with energy and produces a decisive breakout to the upside, closing above a recent, valid swing high. This action confirms that the prior downtrend's momentum is broken, the downward move was a trap to engineer liquidity, and institutional buyers are now in aggressive control.
A Downshift occurs after a liquidity sweep above a key high. Following the sweep, price reverses aggressively and produces a sharp breakdown to the downside, closing below a recent, valid swing low. This confirms that the prior uptrend's momentum has failed, the upward move was a liquidity grab, and institutional sellers have now taken control of the market.
Algorithmic Identification: The E+FVG engine uses a proprietary algorithm to identify these moments. It analyzes the candle sequence immediately following a sweep, looking for a specific type of market structure break characterized by high energy and displacement—often leaving imbalances (Fair Value Gaps) in its wake. This is not a simple "pivot break"; the algorithm is designed to distinguish between a weak, indecisive wiggle and a true, institutionally-backed Upshift or Downshift.
The Signal: When this precise sequence—a HTF liquidity sweep followed by a valid Upshift or Downshift on the trading timeframe—is confirmed, the indicator plots a clear arrow on the chart. A green arrow below a low signifies a Bullish setup (confirmed by an Upshift), while a red arrow above a high signifies a Bearish setup (confirmed by a Downshift). This is the core entry signal of the "Entries Simplified" engine.
Feature 3: Automated Price Projections—A Built-In Trade Management Framework
A valid entry signal is only one part of a successful trade. A trader also needs a logical framework for taking profits. The E+FVG engine completes its trade-spotting process by providing automated, mathematically-derived price projections.
Fibonacci-Based Logic: After a valid Upshift or Downshift signal is generated, the script analyzes the price leg that created the setup (i.e., the range from the liquidity sweep to the confirmation breakout/breakdown). It then uses a methodology based on standard Fibonacci extension principles to project several potential take-profit (TP) levels.
Multiple TP Levels: The indicator projects four distinct TP levels (TP1, TP2, TP3, TP4). This provides a comprehensive trade management framework. A conservative trader might aim for TP1 or TP2, while a more aggressive trader might hold a partial position for the higher targets. These levels are plotted on the chart as clear, labeled lines, removing the guesswork from profit-taking.
Dynamic and Adaptive: These projections are not static. They are calculated uniquely for each individual setup, based on the specific volatility and range of the price action that generated the signal. This ensures that the take-profit targets are always relevant to the current market conditions.
The "Entries Simplified" engine, therefore, provides a complete, end-to-end framework: it waits for a high-probability condition (HTF sweep), confirms it with a specific entry model (Upshift/Downshift), and provides a logical road map for managing the trade (automated projections).
Chapter 4: The Engine, Part II—"FVG Signals": Mapping Market Inefficiencies
This second, complementary engine of the E+FVG tool operates as a market mapping system. Its sole purpose is to identify, plot, and monitor Fair Value Gaps (FVGs)—the critical price inefficiencies that act as magnets and potential reversal points.
Feature 1: Dual Timeframe FVG Detection
The significance of an FVG is directly related to the timeframe on which it forms. A 1-hour FVG is a more powerful magnet for price than a 1-minute FVG. The FVG engine gives you the ability to monitor both simultaneously, providing a richer, multi-dimensional view of the market's inefficiencies.
Chart TF FVGs: The indicator will, by default, identify and plot the FVGs that form on your current, active chart timeframe. These are useful for short-term scalping and for fine-tuning entries.
Higher Timeframe (HTF) FVGs: With a single click, you can enable the HTF FVG detection. This allows you to overlay, for example, 1-hour FVGs onto your 5-minute chart. This is an incredibly powerful feature. Seeing a 5-minute price rally approaching a fresh, unfilled 1-hour bearish FVG gives you a high-probability context for a potential reversal. The HTF FVGs act as major points of interest that can override the short-term price action.
Feature 2: The Intelligent "Tap-In" Logic—Beyond a Simple Touch
Many FVG indicators will simply alert you when price touches an FVG. The E+FVG engine employs a more sophisticated, two-stage logic to generate its signals, which helps to filter out weak reactions and focus on confirmed reversals.
Stage 1: The Entry. The first event is when price simply enters the FVG zone. This is a "heads-up" moment, and the indicator can be configured to provide an initial alert for this event.
Stage 2: The Confirmed "Tap-In." The official signal, however, is the "Tap-In." This is a more stringent condition. For a bullish FVG, a Tap-In is only confirmed after price has touched or entered the FVG zone and then closed back above the FVG's high. For a bearish FVG, the price must touch or enter the zone and then close back below the FVG's low. This confirmation logic ensures that the FVG has not just been touched, but has been respected and rejected by the market, making the resulting arrow signal significantly more reliable than a simple touch alert.
Feature 3: Interactive and Clean Visuals
The FVG engine is designed to provide maximum information with minimum chart clutter.
Clear, Color-Coded Boxes: Bullish FVGs are plotted in one color (e.g., green or blue), and bearish FVGs in another (e.g., red or orange), with a clear distinction between Chart TF and HTF zones.
Optional Box Display: Recognizing that some traders prefer a cleaner chart, you have the option to hide the FVG boxes entirely. Even with the boxes hidden, the underlying logic remains active, and the script will still generate the crucial Tap-In arrow signals.
Automatic Fading: Once an FVG has been successfully "tapped," the script can be set to automatically fade the color of the box. This provides a clear visual cue that the zone has been tested and may have less significance going forward.
Expiration: FVGs do not remain relevant forever. The script automatically removes old FVG boxes from the chart after a user-defined number of bars, ensuring your analysis is always focused on the most recent and relevant market inefficiencies.
Chapter 5: The Power of Synergy—How the Two Engines Work Together
While both the "Entries Simplified" engine and the "FVG Signals" engine are powerful standalone tools, their true potential is unlocked when used in combination. They are designed to provide confluence—a scenario where two or more independent analytical concepts align to produce a single, high-conviction trade idea.
Scenario A: The A+ Setup (Upshift into FVG). This is the highest probability setup. Imagine the "Entries Simplified" engine detects a HTF liquidity sweep below a key low, followed by a bullish Upshift signal. You look at your chart and see that this strong upward displacement is heading directly towards a fresh, unfilled bearish HTF FVG. This provides you with both a high-probability entry signal and a logical, high-probability target for the trade.
Scenario B: The FVG Confirmation. A trader might see the "Entries Simplified" engine generate a bearish Downshift signal. They feel it is a valid setup but want one extra layer of confirmation. They wait for price to rally a little further and "tap-in" to a nearby bearish FVG that formed during the Downshift's displacement. The FVG Tap-In signal then serves as their final confirmation trigger to enter the trade.
Scenario C: The Standalone FVG Trade. The FVG engine can also be used as a primary trading tool. A trader might notice that price is in a strong uptrend. They see price pulling back towards a fresh, bullish HTF FVG. They are not waiting for a full Upshift/Downshift setup; instead, they are simply waiting for the FVG Tap-In signal to confirm that the pullback is likely over and the trend is ready to resume.
By learning to read the interplay between these two engines, a trader can elevate their analysis from a one-dimensional process to a multi-dimensional, context-aware methodology.
Chapter 6: The Workflow—A Step-by-Step Guide to Practical Application
Step 1: The Pre-Market Analysis (Mapping the Battlefield). Before your session begins, enable the HTF FVG detection. Identify the key, unfilled HTF FVGs above and below the current price. These are your major points of interest for the day—your potential targets and reversal zones.
Step 2: Await the Primary Condition (Patience for Liquidity). During your trading session, your primary focus should be on the "Entries Simplified" engine. Your job is to wait patiently for the script to identify a valid HTF liquidity sweep. Do not force trades in the middle of a price range where no significant liquidity has been taken.
Step 3: The Upshift/Downshift Alert (The Call to Action). When the red or green arrow from the "Entries Simplified" engine appears, it is your cue to focus your attention. This is a potential high-probability setup.
Step 4: The Confluence Check (Building Conviction). With the Upshift or Downshift signal on your chart, ask the key confluence questions:
Did the displacement from the Upshift/Downshift create a new FVG?
Is the projected path of the trade heading towards a pre-identified HTF FVG?
Has an FVG Tap-In signal appeared shortly after the initial signal, offering further confirmation?
Step 5: Execute and Manage. If you have sufficient confluence, execute the trade. Use the automated price projections as your guide for profit-taking. A logical stop-loss is typically placed just beyond the high or low of the liquidity sweep that initiated the entire sequence.
Chapter 7: The Trader's Mind—Mastering the Institutional Mindset
This tool is more than a set of algorithms; it is a training system for professional trading psychology.
From Chasing to Trapping: You stop chasing breakouts and instead learn to identify where others are being trapped.
From FOMO to Patience: The strict, sequential logic of the entry model (Sweep -> Upshift/Downshift) forces you to wait for the highest quality setups, curing the Fear Of Missing Out.
Probabilistic Thinking: By focusing on liquidity and imbalances, you begin to think in terms of probabilities, not certainties. You understand that you are putting on trades where the odds are statistically in your favor, which is the cornerstone of any professional trading career.
Clarity and Confidence: The clear, rules-based signals remove ambiguity and second-guessing. This builds the confidence needed to execute trades decisively when the opportunity arises.
Chapter 8: Frequently Asked Questions & Scenarios
Q: The "Entries Simplified" code looks complex. Do I need to understand all of it?
A: No. The engine is designed to perform its complex analysis in the background. Your job is to understand the principles—liquidity sweep and the resulting Upshift or Downshift—and to recognize the clear arrow signals that the script generates when those conditions are met.
Q: Can I turn one of the engines off?
A: Yes, the indicator is modular. If you only want to focus on Fair Value Gaps, for example, you can disable the plot shapes for the "Entries Simplified" signals in the settings, and vice-versa.
Q: Does this work on all assets and timeframes?
A: The principles of liquidity and imbalance are universal and apply to all markets, from cryptocurrencies to forex to indices. The fractal nature of the analysis means the concepts are valid on all timeframes. However, it is always recommended that a trader backtest and forward-test the tool on their specific instrument and timeframe of choice to understand its unique behavior.
Author's Instructions
To request access to this script, please send me a direct private message here on TradingView.
Alternatively, you can find more information and contact details via the link on my profile signature.
Please DO NOT request access in the Comments section. Comments are for questions about the script's methodology and for sharing constructive feedback.
Syndicate Bias Universal (Auto)Syndicate Bias Universal (Auto): A Masterclass in Time-Based Trading
Chapter 1: The Modern Trader's Dilemma—A New Framework for a Noisy Market
In today's hyper-connected financial markets, the modern trader is faced with a profound paradox: we have access to more information than ever before, yet achieving consistent clarity has never been more challenging. We are inundated with a relentless stream of price data, countless indicators, breaking news, and expert opinions. This information overload often leads not to better decision-making, but to analysis paralysis, emotional trading, and a chronic sense of being one step behind the market's true intentions.
The fundamental problem that Syndicate Bias Universal (Auto) addresses is this struggle for clarity amidst the noise. It challenges the conventional approach of relying solely on price- and volume-based indicators, which are inherently lagging and often produce conflicting signals. Instead, it introduces a crucial, and often overlooked, third dimension to technical analysis: time.
This indicator is not merely another tool to be added to a cluttered chart; it is a comprehensive, systematic framework designed to reinterpret market dynamics through the structured lens of trading sessions. Its core function is to deconstruct any trading period—from an entire week down to the smallest intraday segments—into a clear, four-part narrative structure, which we call "Quarters."
Many traders can correctly identify a market's general direction but consistently struggle with the critical question of when to act. This timing issue leads to the most common trading errors: entering positions too early only to be stopped out by volatility, entering too late and catching the tail-end of a move, or being whipsawed by directionless chop. This script provides a logical, rules-based solution by identifying a specific, high-probability time window within each session where reversal setups are most likely to occur. It is built for the discerning trader who is ready to evolve—to move beyond reactive, emotionally-driven decisions and adopt a structured, patient, and objective methodology for market engagement. It is, in essence, an operating system for disciplined trading.
Chapter 2: The Core Philosophy—Viewing the Market as a Four-Quarter Game
At its heart, this indicator operates on a powerful principle: market sessions, regardless of their duration, exhibit a discernible rhythm and structure, much like a four-quarter game of football, a four-act theatrical play, or the four seasons of a year. Price action is not a chaotic, random walk. It is a story unfolding, driven by the collective psychology of millions of participants. This story often follows a recurring pattern of opening, exploration, climax, and resolution.
By dividing trading sessions into four distinct quarters, we can better contextualize this narrative. This temporal structure acts as a powerful filter, cutting through the incessant noise of minor price fluctuations and focusing the trader's attention on the moments that truly matter.
Quarter 1 (The Opening Act): This is the period of price discovery. The market is absorbing overnight news, and early participants are establishing their initial positions. The character of this quarter—whether it is quiet and rotational or strong and directional—provides crucial clues about the session's potential.
Quarter 2 (The Exploration): Following the initial open, the market begins to test the levels established in Q1. This is often a period of consolidation or early trend development, where weaker hands are shaken out.
Quarter 3 (The Climax): Often, this is where the session's primary, decisive move occurs. It can be a powerful trend continuation or, critically, a major reversal point where the initial momentum shows signs of exhaustion.
Quarter 4 (The Resolution): This is the closing period, characterized by profit-taking, late-day position adjustments, and a general decrease in volume as the session winds down.
This is not a "black box" system promising guaranteed results. It is a transparent methodology built on a clear, logical foundation of session analysis. Its purpose is to empower you with a deeper understanding of market behavior, transforming you from a mere participant, tossed about by the market's waves, into a patient observer who waits for specific, high-probability conditions to align before acting. Embracing this philosophy is the first and most crucial step to unlocking the tool's full potential.
Chapter 3: The Engine—Key Features & In-Depth Principles
This section dissects the sophisticated mechanics that power the indicator. Each feature is designed to work in concert, creating a robust and adaptive analytical engine.
Feature 1: Universal Market Adaptability—A Global, Intelligent Tool
A significant weakness of many trading tools is their inherent rigidity. An indicator fine-tuned for the unique volatility profile and session times of the New York open will invariably underperform or provide false signals when applied to the different rhythms of the Indian or Asian markets. Syndicate Bias Universal eradicates this problem with a sophisticated, dual-mode adaptability engine.
Intelligent Auto-Detection: This is the default and recommended setting for most traders. When the "Market Type" input is set to "Auto," the script becomes a dynamic, context-aware tool. It intelligently queries the exchange information (syminfo.prefix) of the instrument you are currently viewing. It automatically recognizes major Indian exchanges (NSE, BSE, MCX) and all other global exchanges. Based on this identification, it seamlessly applies the correct session timing logic—using "Asia/Kolkata" for Indian instruments and "America/New_York" for global instruments (Forex, Commodities, US Equities, etc.).
This allows traders with a diverse watchlist to move effortlessly from analyzing the NIFTY 50 to EUR/USD to Crude Oil, confident that the underlying temporal analysis remains precise, relevant, and correctly calibrated to the dominant trading hours of each asset. There is no need for manual adjustment or multiple chart templates; the indicator handles the complex work of timezone alignment for you.
Focused Manual Override: For the advanced trader, the manual override provides an indispensable layer of analytical control. There are specific scenarios where locking the indicator to a particular time zone, regardless of the asset being viewed, is crucial.
Cross-Market Influence Analysis: A European trader analyzing the DAX index might want to lock the indicator to "Global" (New York) time during the afternoon to see how the US open influences the German market's behavior in its final hours.
Commodity and Forex Trading: A trader in Asia specializing in WTI Crude Oil or Gold knows that these markets are heavily dominated by the New York session. By locking the indicator to "Global," they can apply the correct temporal structure to their analysis, even if their local time is different.
Consistent Strategy Application: A trader who has developed a strategy based purely on the London/New York session overlap can lock the indicator to "Global" and apply this single, consistent framework across any and all instruments they trade.
This dual-mode system ensures that the indicator is both effortlessly simple for those who need it to be and powerfully flexible for those who require granular control.
Feature 2: Fractal Quarter-Based Analysis—Structure at Every Scale
The term "fractal" in market analysis refers to the principle that the same patterns of collective human behavior—driven by greed, fear, hope, and indecision—manifest repeatedly across all timeframes. A pattern that takes months to unfold on a weekly chart can play out in a matter of minutes on a one-minute chart. The Syndicate Bias Universal indicator is built on this very principle, applying its Four-Quarter structure consistently from the highest macro view down to the lowest micro view.
This provides a unified, coherent framework for analysis, regardless of your trading style.
The Weekly Quarter (The Position Trader's View): At this macro level, the trading week is divided into four primary segments (e.g., Monday, Tuesday, Wednesday, Thursday). This perspective is invaluable for position traders and long-term investors. It helps answer critical strategic questions: Is the week's opening action on Monday establishing a trend that will likely hold, or is it creating the conditions for a mid-week reversal? The weekly quarters help contextualize the larger battle between long-term buyers and sellers.
The Daily Quarter (The Swing Trader's View): Here, the full 24-hour global trading day is partitioned into four 6-hour quarters. This is the ideal lens for swing traders and day traders who aim to capture the dominant move of the day or a multi-day swing. It helps them avoid the morning "chop" by understanding the initial price discovery phase and position themselves for the more decisive moves that often occur in the later quarters of the global session.
Intraday Quarters: 90min, Micro, and Nano (The Day Trader's & Scalper's View): For traders operating on the front lines of intraday price action, the script drills down with surgical precision. It breaks down shorter sessions into their own complete four-quarter cycles. This granular view is essential for timing precise entries, managing trades with tight stop-losses, and understanding the micro-rhythms of order flow. It helps scalpers identify high-probability windows to trade, while allowing them to step back and avoid periods of low liquidity or erratic price action.
To keep you anchored, the script automatically selects and displays the relevant analysis timeframe ("Auto TF") in a non-intrusive display on your chart. This seemingly simple feature is a crucial navigational tool, constantly reminding you of the specific temporal context the engine is currently analyzing, ensuring your decisions are always aligned with the appropriate structural scale.
Feature 3: The "S-Quarter" Timing Window—The Art of Strategic Patience
This is the intellectual core of the indicator and its most powerful feature. It is the mechanism that transforms trading from a constant, stressful hunt for opportunities into a calm, disciplined, and strategic wait. The S-Quarter (Search Quarter) engine enforces patience by activating its search for trade setups only within a specific, algorithmically determined time window.
The Q1 Volatility Profile Analysis: The process begins at the start of a new session. The indicator's logic performs a sophisticated analysis of the price action within the first quarter (Q1). It looks beyond simple direction and evaluates its character. This involves assessing the nature of the opening period's volatility. Is the range expanding or contracting? Is the price action rotational and indecisive, or is it directional and backed by momentum? A quiet, low-volatility Q1 suggests a different market psychology and implies a very different probabilistic path for the rest of the session compared to a strong, high-volume, trend-setting Q1.
Dynamic and Adaptive Window Selection: Based on this nuanced Q1 profile, the script makes a critical, forward-looking determination: which of the subsequent quarters (Q2, Q3, or Q4) is most likely to host a significant market turning point, a liquidity grab, or an exhaustion event. This designated period is the "S-Quarter." The selection is dynamic and adaptive:
If Q1 was a powerful, trending move, the engine might identify Q3 as the S-Quarter, anticipating that the initial momentum will wane, drawing in late trend-followers just in time for a sharp reversal.
If Q1 was a tight, rotational range, the engine might identify Q2 as the S-Quarter, anticipating that the first breakout attempt from this range will likely be a "head fake" designed to trap traders before the real move begins in the opposite direction.
This intelligent selection is what sets the tool apart. It doesn't use a fixed, one-size-fits-all timing window. It adapts its search to the unique, unfolding conditions of each individual trading session. The S-Quarter is the only time the script will actively look for and display trade setups. This powerful filter is the key to mastering trading psychology. It prevents impulsive entries, eliminates the fear of missing out (FOMO), dramatically reduces exposure to choppy and unpredictable market periods, and aligns your actions with the moments of highest probabilistic edge.
Feature 4: Contrarian Reversal Setups—Identifying Market Exhaustion
The setups generated by this indicator are contrarian by design. They are not trend-following signals. They are based on the principle of identifying moments where a prevailing short-term move is reaching a point of exhaustion, often culminating in a "liquidity grab."
The Mechanics of a Liquidity Grab: Within the pre-defined S-Quarter, the script vigilantly monitors short-term market structure, specifically the pivot highs and pivot lows. A break of a recent, significant pivot is a critical event. The script's logic posits that during the S-Quarter, these breakouts are often not the beginning of a sustained new trend. Instead, they are frequently a calculated move by institutional players to "run the stops"—a stop hunt designed to trigger the stop-loss orders of retail traders who are positioned on the wrong side of the market. This action injects a surge of liquidity into the market, which is precisely what larger players need to fill their large orders in the opposite direction.
Bullish Reversal Setup (Fading the Low): This setup is triggered by a break below a recent structural low during the S-Quarter. This event signals that the sellers who pushed the price to a new low may have exhausted their power in the process of running the stops. The trap has been set, and this alert serves as a potential turning point where buyers are likely to step in with force.
Bearish Reversal Setup (Fading the High): This setup is triggered by a break above a recent structural high during the S-Quarter. This suggests that the final, euphoric wave of buying pressure may be culminating in a liquidity grab. The last of the breakout buyers have been drawn in at the worst possible price, presenting an opportunity for informed sellers to take control and initiate a move downwards.
It is absolutely essential to understand that these are high-probability setups, not automated entry signals. They are sophisticated alerts that tell you, "The conditions are now ripe for a potential reversal within our strategic time window." The final decision to execute a trade, and the management of that trade, always rests with you, the trader.
Chapter 4: The Workflow—A Step-by-Step Guide to Practical Application
This section provides a clear, actionable workflow for integrating the Syndicate Bias Universal indicator into your daily trading routine.
Step 1: Initial Configuration (The Pre-Flight Check). Begin by setting the "Market Type." For maximum efficiency across a varied watchlist, leave it on "Auto." If you are a specialist who focuses on one specific market session, manually select "Global" or "Indian" to lock in your preferred analytical framework. Ensure other visual settings, like "Show Active Quarter Boxes," are enabled.
Step 2: Contextualize the Session (Reading the Field). At the start of your trading day, observe the quarter boxes as they begin to form. Pay attention to the story they tell. Is the Q1 box narrow and tight, suggesting indecision? Is it wide and directional, suggesting a strong opening sentiment? This visual context helps you build an intuitive feel for the session's rhythm long before any signal appears.
Step 3: Exercise Strategic Patience (The Professional's Edge). This is the most critical and often the most difficult step. The script will automatically perform its Q1 analysis and silently determine the S-Quarter. Your job is to wait. Resist the urge to trade during the other quarters. This disciplined inaction is not passive; it is an active strategy. It conserves your mental and financial capital for the moments that count the most.
Step 4: The Alert (The Call to Action). When a label—"Look for Bullish/Bearish reversal"—appears on your chart, it is your cue to shift from a passive, observational state to an active, analytical one. This is the moment you have been waiting for. Do not instantly click "buy" or "sell." The alert is a call to focus your attention, not a command to act blindly.
Step 5: The Confirmation Process (Your Personal Edge). The setup is the start, not the end, of your trade analysis. This is where you apply your own skills to confirm the validity of the setup. For example, upon seeing a Bullish Reversal Setup:
Candlestick Analysis: Look for confirmation candles like a powerful bullish engulfing bar, a hammer, or a dragonfly doji forming right after the new low was made.
Volume Analysis: Check if the move to the new low was on high, climactic volume that suddenly dried up, followed by an increase in volume as the price starts to reverse.
Indicator Confluence: Look for bullish divergence on an oscillator like the RSI or MACD, where price makes a new low but the indicator makes a higher low.
This confirmation process is what integrates the indicator into your unique trading style, making it exponentially more powerful.
Step 6: Execute and Manage Risk (The Business of Trading). Once you have your confirmation, execute your trade according to your plan. Risk management is paramount. A logical stop-loss for a Bullish Reversal Setup would typically be placed just below the low of the liquidity grab candle. Your take-profit targets should be based on your analysis of key resistance levels. Always ensure the potential reward of the trade justifies the initial risk. A setup is a probabilistic edge, not a certainty.
Chapter 5: The Trader's Mind—Mastering the Psychology of Time
Integrating this tool effectively is as much about mastering psychology as it is about technical analysis. Its very design encourages the development of a professional trading mindset.
From Impulsive to Patient: The S-Quarter forces you to wait for the market to come to you, curing the impulsive need to be "in a trade" at all times.
From Reactive to Proactive: You are no longer reacting to every price tick. You have a proactive plan: you know which time window you are interested in and what condition you are waiting for. This puts you in a position of mental control.
Building Unshakeable Discipline: By consistently following the framework, you are building the muscle of discipline. You learn that often the most profitable action is no action at all.
Conquering FOMO (Fear Of Missing Out): FOMO is driven by unstructured, random trading. When you know you are only interested in a specific type of setup within a specific time window, the moves that happen outside of that framework become irrelevant noise. You cannot miss a move you were never supposed to take.
Gaining Confidence Through Structure: The clarity and structure provided by the Four-Quarter framework build immense confidence. You are not guessing; you are executing a well-defined plan based on a logical, repeatable methodology.
Chapter 6: Frequently Asked Questions & Scenarios
Q: What happens if no setup appears during the S-Quarter?
A: This is one of the most valuable outcomes the indicator can provide. It means that during the high-probability window, the market did not produce a clear exhaustion or liquidity grab event. The script has effectively told you that the conditions were not optimal for a high-probability reversal, and the correct decision was to preserve your capital. A null signal is a powerful signal in itself.
Q: Can I use this indicator with my existing trend-following strategy?
A: Absolutely. In fact, it's a perfect combination. You can use your macro trend-following tools to establish the dominant weekly or daily direction. Then, you can use the Syndicate Bias Universal indicator on a lower timeframe to look for contrarian setups that signal the end of a pullback, allowing you to enter the trade in the direction of the larger trend at a much better price.
Q: Which analysis timeframe ("Auto TF") is the 'best' one to use?
A: There is no "best" timeframe; there is only the timeframe that is right for your trading style. This is precisely why the fractal design is so powerful. A long-term swing trader might focus primarily on the signals generated by the Daily quarters, while a high-frequency scalper will live within the Micro and Nano quarters. The indicator adapts to you, not the other way around. Experiment and find the resolution that best suits your personality and trading goals.
QULLAMAGGIE Trades Database 2014-2022QULLAMAGGIE HISTORICAL TRADES DATABASE (2014-2022)
Educational research tool displaying historical entry points from documented trading activity.
═══════════════════════════════════════════
WHAT THIS IS:
- Visual database of 1,700+ historical trade entries
- Data compiled from publicly available livestream archives (2014-2022)
- Shows when trades were taken, not why or how they performed
- Educational reference for pattern recognition and timing study
⚠️ WORKS ON DAILY TIMEFRAME ONLY
This indicator is designed for daily charts. It will not display correctly on intraday timeframes (1min, 5min, 1h, etc.)
DATA SOURCES:
- Excel databases compiled from public archives
- Livestream recordings and tweet history
- Community-maintained trade logs
- Covers 554+ different tickers
WHAT THIS IS NOT:
❌ Not trade signals or recommendations
❌ Not showing entry prices, exits, stops, or position sizing
❌ Not guaranteed accurate or complete
❌ Past performance ≠ future results
❌ Does not work on intraday timeframes
INTENDED USE:
- Study historical timing patterns on daily charts
- Analyze market conditions when entries occurred
- Research setup frequency across different tickers
- Educational backtesting reference
LIMITATIONS:
- Shows only entry dates, not full trade management
- May contain transcription errors from original sources
- Historical data only - no predictive value
- Covers specific time period (2014-2022)
- Daily timeframe only
═══════════════════════════════════════════
FOR EDUCATIONAL AND RESEARCH PURPOSES ONLY
This indicator displays historical data compiled from public sources.
Not affiliated with or endorsed by the original trader.
Always do your own research and risk management.
Phoenix Smart ZoneThe Golden Trend Cloud Indicator is a professional trend-identification tool that combines Ichimoku Cloud with a 20-period Moving Average (MA20) to clearly define the market’s dominant direction.
It visually highlights bullish and bearish momentum using dynamic support and resistance zones derived from the Kumo cloud structure.
Index of Civilization DevelopmentIndex of Civilization Development Indicator
This Pine Script (version 6) creates a custom technical indicator for TradingView, titled Index of Civilization Development. It generates a composite index by averaging normalized stock market performances from a selection of global country indices. The normalization is relative to each index's 100-period simple moving average (SMA), scaled to a percentage (100% baseline). This allows for a comparable "development" or performance metric across diverse markets, potentially highlighting trends in global economic or "civilizational" progress based on equity markets.The indicator plots as a single line in a separate pane (non-overlay) and is designed to handle up to 40 symbols to respect TradingView's request.security() call limits.Key FeaturesComposite Index Calculation: Fetches the previous bar's close (close ) and its 100-period SMA for each selected symbol.
Normalizes each: (close / SMA(100)) * 100.
Averages the valid normalizations (ignores invalid/NA data) to produce a single "Index (%)" value.
Symbol Selection Modes:Top N Countries: Selects from a predefined list of the top 50 global stock indices (by market cap/importance, e.g., SPX for USA, SHCOMP for China). Options: Top 5, 15, 25, or 50.
Democratic Countries: ~38 symbols from democracies (e.g., SPX, NI225, NIFTY; based on democracy indices ≥6/10, including flawed/parliamentary systems).
Dictatorships: ~12 symbols from authoritarian/hybrid regimes (e.g., SHCOMP, TASI, IMOEX; scores <6/10).
Customization:Line color (default: blue).
Line width (1-5, default: 2).
Line style: Solid line (default), Stepline, or Circles.
Data Handling:Uses request.security() with lookahead enabled for real-time accuracy, gaps off, and invalid symbol ignoring.
Runs calculations on every bar, with max_bars_back=2000 for historical depth.
Arrays are populated only on the first bar (barstate.isfirst) for efficiency.
Predefined Symbol Lists (Examples)Top 50: SPX (USA), SHCOMP (China), NI225 (Japan), ..., BAX (Bahrain).
Democratic: Focuses on free-market democracies like USA, Japan, UK, Canada, EU nations, Australia, etc.
Dictatorships: Authoritarian markets like China, Saudi Arabia, Russia, Turkey, etc.
Usage TipsAdd to any chart (e.g., daily/weekly timeframe) to view the composite line.
Ideal for macro analysis: Compare democratic vs. authoritarian performance, or track "top world" equity health.
Potential Limitations: Relies on TradingView's symbol availability; some exotic indices (e.g., KWSEIDX) may fail if not supported. The 40-symbol cap prevents errors.
Interpretation: Values >100 indicate above-trend performance; <100 suggest underperformance relative to recent averages.
This script blends financial data with geopolitical categorization for a unique "civilization index" perspective on global markets. For modifications, ensure symbol tickers match TradingView's format.
Friday’s Close – Futures Weekend AnchorPurpose:
This indicator highlights the US futures weekend close price — the exact level where CME markets end trading on Friday at 4:00 PM CT / 5:00 PM ET.
It’s designed primarily for crypto traders who want to compare weekend market behavior to the traditional finance (TradFi) close.
Why it matters:
Crypto trades 24/7, but global liquidity and sentiment still pivot around the Friday futures close. During the weekend, crypto can “drift” relative to traditional markets — this line shows exactly where the week ended for Wall Street, giving you a clean reference point until futures reopen on Sunday evening.
Features
Precise Friday close capture (CME weekend close minute, not just daily bar)
Works on any ticker — especially useful for BTC, ETH, or other crypto assets
Adjustable for time zone (New York / Chicago / custom)
Option to select prior weeks with weekOffset
Draws a single clean line from Friday’s close forward — no clutter, no vertical stitches
Optional right-edge label with the close value and timestamp
Usage Tips
Keep the chart’s timezone in sync with your anchor (America/New_York = 5 PM ET, America/Chicago = 4 PM CT).
Use weekOffset = 1 to view last week’s Friday close.
Combine with volume, funding, or open interest indicators to see how weekend moves relate to the TradFi close.
Ideal for weekend analysis — shows whether crypto is trading rich or cheap vs. the Friday benchmark before futures reopen.
Recommended For
Crypto traders, analysts, and quant enthusiasts who monitor TradFi–crypto decoupling or weekend premium behavior.
ACE哥專屬指標這是一款專為加密貨幣與外匯市場設計的多空結構分析指標。
指標核心結合了市場結構、K線反轉訊號、均線節奏與關鍵支撐壓力區間偵測,
可協助交易者在趨勢盤與震盪盤中找到相對安全的進出場點位。
本指標可應用於波段、日內與短線操作,能清楚標示多空轉折區間、結構突破與回測確認點,
特別適合搭配結構延續策略、支撐壓力策略或結構轉換策略使用。
若有興趣了解更多策略應用與交易邏輯,歡迎透過官方社群或課程進一步學習。
This is a long-short structure analysis indicator designed specifically for the cryptocurrency and forex markets.
The core of the indicator combines market structure, candlestick reversal signals, moving average rhythm, and key support and resistance zone detection to help traders identify relatively safe entry and exit points in trending and volatile markets.
This indicator can be used for swing, intraday, and short-term trading. It clearly identifies long-short turning points, structural breakouts, and backtest confirmation points.
It is particularly suitable for use with structural continuation strategies, support and resistance strategies, or structural conversion strategies.
If you are interested in learning more about strategy applications and trading logic, please learn more through the official community or courses.
8AM # 9AM CRM Trading Model - Complete Beginner's Guide
## BEFORE YOU START
**Important:** This strategy only works during market open hours (9:00 AM - 12:00 PM EST for NAS100/SPX). Do not trade outside these hours.
**Risk Warning:** Start with a demo account first. Trade 2-4 weeks on demo before risking real money.
---
## STEP 1: SET UP YOUR TRADINGVIEW CHART
1. Open TradingView
2. Search for **NAS100** (Nasdaq 100 Index)
3. Click the **5-minute (5m)** timeframe button at the top
Your chart should now show:
- Blue dotted lines (8AM candle range)
- Orange dotted lines (key level)
- Small SWEEP triangles when price breaks levels
---
## STEP 2: UNDERSTAND THE SETUP
The indicator shows a **4-step checklist** in the top-right HUD (Heads Up Display):
**STEP 1: 8AM Range Set**
- The indicator automatically captures the 8:00-9:00 AM candle's high and low
- You should see two faint blue dotted lines
- Status will say "SET" when ready
- Nothing to do here - it's automatic
**STEP 2: Key Level Found**
- The indicator finds the nearest swing low or high (support/resistance)
- You'll see a faint orange dotted line
- Status will say "FOUND" when ready
**STEP 3: Turtle Sweep**
- Price must break ONE end of the 8AM range
- You'll see a small blue triangle labeled "SWEEP" appear below the candle
- This means price swept the low (bullish setup) or swept the high (bearish setup)
**STEP 4: Confirmations**
- The indicator looks for:
- IFEG (bullish or bearish imbalance)
- Order Block (reversal candle pattern)
- Status shows YES or NO for each
---
## STEP 3: WAIT FOR THE SIGNAL
Keep watching the **HUD on the right side**. It will show:
```
WAITING FOR SETUP
STEP 1: 8AM Range Set: SET
STEP 2: Key Level Found
STEP 3: Turtle Sweep: NO
STEP 4: Confirmations
- IFEG: NO
- Order Block: NO
WHEN ALL 4 ✓ → TRADE
```
When **ALL FOUR steps show YES**, the indicator will:
1. Draw a **HUGE triangle** on the chart saying "BUY NOW" or "SELL NOW"
2. Draw three bold lines:
- **WHITE line** = Entry price
- **RED dashed line** = Stop loss
- **GREEN line** = Take profit
3. Update the HUD with your trade numbers
---
## STEP 4: PLACE YOUR TRADE
When you see the BUY NOW or SELL NOW signal:
**For a LONG (BUY) trade:**
1. Look at the **WHITE line** = Your entry price
2. Look at the **RED dashed line** = Your stop loss (where to cut losses)
3. Look at the **GREEN line** = Your take profit (your target)
Check the **HUD** for exact numbers:
- Entry Price:
- Stop Loss:
- Take Profit:
- Risk:
- Reward:
- R:R Ratio:
**On your broker (MT4/MT5 or whatever you use):**
1. Click BUY/SELL
2. Set Entry = Entry Price from indicator
3. Set Stop Loss = SL price from indicator
4. Set Take Profit = TP price from indicator
5. Click TRADE
**For a SHORT (SELL) trade:** Same steps but click SELL instead of BUY
---
## STEP 5: MANAGE YOUR TRADE
Once you're in the trade:
1. **Let it run** - Don't move your stop loss or take profit
2. **Watch for price to hit your targets:**
- If price hits the GREEN line first → You WIN (take profit hits)
- If price hits the RED line first → You LOSE (stop loss hits)
- If price breaks the WHITE line lower → Exit manually
3. **Don't hold past noon EST** - This strategy stops working after market lunch
4. **Close any open trades by 12:00 PM EST**
---
## IMPORTANT RULES
**DO THIS:**
- Only trade between 9:00 AM and 12:00 PM EST
- Use a 5-minute chart
- Follow the exact entry/SL/TP levels from the indicator
- Start with 1 lot/contract on demo
- Keep a trading journal (write down every trade)
- Risk no more than 2% of your account per trade
**DON'T DO THIS:**
- Don't move your stop loss (moving stops = losing strategy)
- Don't ignore the indicator signals and "feel" your way in
- Don't trade outside the 9AM-12pm window
- Don't use a 1-hour or 15-minute chart (must be 5-min)
- Don't trade on demo for just 2 days then go live
- Don't risk more than 2% per trade
---
## REAL EXAMPLE
**9:15 AM EST - Price sweeps 8AM low, IFEG forms, Order Block confirmed**
Your indicator shows:
```
ACTIVE TRADE - LONG
Entry: 24,865.50
Stop Loss: 24,820.00
Take Profit: 24,920.00
Risk: 45.50 pts
Reward: 54.50 pts
R:R Ratio: 1:1.2
```
You place trade:
- BUY 1 contract at 24,865.50
- Stop at 24,820.00 (if wrong, you lose 45 points)
- Target 24,920.00 (if right, you gain 54 points)
**Result:** Price goes to 24,920 and your take profit hits. You WIN 54 points.
---
## DEMO ACCOUNT TESTING CHECKLIST
Before trading real money, complete this on demo:
- Trade for 5 trading days minimum
- Execute at least 10 trades
- Win rate is 50% or better
- Each loss is smaller than each win (following your R:R)
- You didn't miss any signals
- You stuck to the rules (no moving stops, proper timeframe, etc)
- You made more money than you lost overall
If you don't meet these criteria, keep practicing on demo. Don't go live yet.
---
## COMMON MISTAKES NEW TRADERS MAKE
**Mistake 1: Wrong Timeframe**
- Using 1h or 15m instead of 5m chart
- Result: Misses setups or generates false signals
**Mistake 2: Moving Stop Loss**
- Indicator says SL at 24,820, but you move it to 24,800 to "give it room"
- Result: You get stopped out randomly
**Mistake 3: Trading Outside Hours**
- Trading at 12:30 PM or 2:00 PM
- Result: Strategy stops working, you lose money
**Mistake 4: Ignoring the Signal**
- Indicator says BUY, but you "feel" like it won't work
- Result: You miss winners or take trades you shouldn't
**Mistake 5: Not Using Stop Loss**
- "I'll just watch it and exit if it goes bad"
- Result: One bad move and you're down $500 before you can react
---
## WHAT TO EXPECT
**Week 1:** You'll find the indicator confusing. That's normal. Watch 5+ setups.
**Week 2:** You'll start to understand when setups are forming.
**Week 3-4:** You should see some winning trades. Others will hit stop loss. This is normal.
**After 4 weeks:** You should have enough demo data to decide if this strategy works for you.
---
## FINAL ADVICE
1. **Trade small first** - 1 lot on demo, then 1 lot on live
2. **Keep a journal** - Write down entry, stop, target, result for every trade
3. **Don't expect 100% win rate** - Even good strategies win 50-60% of trades
4. **Focus on following the rules** - Not on making money fast
5. **Ask yourself:** Am I following the indicator exactly, or am I guessing?
The traders who make money follow the system. The traders who lose money ignore it and trade on "feel."
Which trader will you be?
GIFMASTER – BTC 4-Year CycleThis indicator visualizes Bitcoin’s historical 4-year market cycles by dividing each halving period into four “seasons”: Spring, Summer, Fall, and Winter. These seasonal phases are designed to help traders and investors quickly understand where Bitcoin is positioned within its broader macro cycle.
Since Bitcoin’s inception, halving events have consistently shaped long-term price behavior. By highlighting each phase with color-coded background zones, the indicator makes it easier to:
• identify accumulation vs. distribution phases
• recognize historically high-risk and high-opportunity zones
• anticipate potential macro turning points
• understand long-term market rhythm beyond short-term volatility
Use cases:
• Macro trend confirmation
• Long-term accumulation strategy
• Cycle top/bottom timing
• On-chain & macro confluence
Note: This tool is not designed for short-term trading signals. It serves as a macro framework to align strategy, timing, and risk management within Bitcoin’s multi-year market structure.
Key LevelsKey Levels Indicator
Description
The Key Levels indicator is a powerful tool for traders, displaying major institutional price levels from daily, weekly, and monthly timeframes on your chart. It plots horizontal lines for previous period highs, lows, and midpoints (50% levels), as well as current period opens, helping you identify critical support and resistance zones used by institutional traders. Labels are provided for the most recent levels, positioned at the rightmost bar for easy reference.
Features
Daily Levels: Plots Previous Day High, Previous Day Low, Day Open, and Previous Day 50% Level.
Weekly Levels: Plots Previous Week High, Previous Week Low, Week Open, and Previous Week 50% Level.
Monthly Levels: Plots Previous Month High, Previous Month Low, Month Open, and Previous Month 50% Level.
Customizable Colors: Adjust the color of each line via the settings panel to suit your chart preferences.
Customizable Labels: Enable/disable labels, adjust label size, and change the label background color for optimal visibility.
Clean Visualization: Lines are plotted with breaks at the start of each period, ensuring a clear and uncluttered display.
Settings
Show Labels: Toggle to show or hide all labels (default: enabled).
Label Size: Choose from "tiny," "small," "normal," "large," or "huge" to adjust label text size (default: normal).
Label Background Color: Customize the background color of labels to ensure text visibility (default: black).
Line Colors: Individual color pickers for each level (e.g., Previous Day High, Day Open), allowing full customization of line colors.
Usage
The Key Levels indicator is designed for futures markets, such as S&P 500 futures (ES), Nasdaq futures (NQ), or crude oil futures (CL), where institutional price levels like daily, weekly, and monthly highs, lows, and opens are critical for identifying key support and resistance zones. Apply the indicator to a 1-hour or 15-minute timeframe to capture precise market structure for day trading or swing trading strategies in futures. While optimized for futures, the indicator can be applied to any chart for versatile trading applications. Customize line colors and label settings in the panel to match your chart preferences.
Notes
Labels are shown only for the current day, week, and month to focus on recent price action.
For best visibility, adjust the label background color if text blends into your chart background.
Ideal for traders analyzing major institutional levels for market structure and trading decisions.
Protected script
This script is published as closed-source. However, you can use it freely and without any limitations – learn more here.
njammu123
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by T