Squeeze Momentum [LazyBear] V6 - Pine Screener [Mr_Rakun]Squeeze Momentum Indicator with Screener V6 - Modified by Mr_Rakun
Overview
This script is a modified version of the popular Squeeze Momentum Indicator originally created by LazyBear . The indicator identifies market conditions where volatility is contracting (squeeze) and expanding, helping traders spot potential breakouts or reversals. The modification by Mr_Rakun introduces a Pine Screener feature that scans for ascending and descending candles based on the Squeeze Momentum values.
Screener for Ascending and Descending Candles:
The script includes a screener that counts and categorizes candles based on their momentum:
Rising Green: Bullish momentum increasing.
Falling Green: Bullish momentum decreasing.
Falling Red: Bearish momentum increasing.
Rising Red: Bearish momentum decreasing.
Additionally, it tracks the state of the squeeze (On/Off) using colored crosses.
Indicators and strategies
Simple Market Metrics v5How to enter a trade: Wait for a Buy or Sell signal to appear"
If the signal remains when the candle closes, enter the trade with a market or limit order"
How to exit a trade: • Take profit when the price reaches the profit target line"
Stop out of the trade if the white dot remains on the opposite side of the profit wave only when the candle has closed."
If you are in a long trade, and a candle closes with the white dot below the profit wave, close the trade."
What markets can this be traded with? Simple Market Metrics works with any market, but the ES & NQ Futures are the preferred markets to trade this system with."
What candle type should be used? Simple Market Metrics was designed to be used on Heikin Ashi candles."
What are the preferred trading hours? The preferred hours to trade are during the New York session between 10:00am EST and 3:00pm EST."
What timeframe should I trade? The 1 and 2 minute timeframes are preferred with ES & NQ Futures"
What should I set the profit targets to? ES - 1 min: 4 ES - 2 min: 8 • NQ - 1 min: 20 • NQ - 2 min: 40"
How many contracts should I start trading with prop firm accounts? 50k - 5 micros on MES or MNQ 150k - 2 minis on ES or NQ"
Swing Profile Analyzer [ChartPrime]Swing Profile Analyzer
The Swing Profile Analyzer is a comprehensive tool designed to provide traders with valuable insights into swing frequency profiles, enabling them to identify key price levels and areas of market interest.
⯁ KEY FEATURES
Swing Frequency Profiles
Automatically plots frequency profiles for each swing, highlighting price distribution and key levels of significance.
Point of Control (POC) Line
Marks the price level with the highest number of closes within a swing, acting as a key area for potential price reactions.
Customizable Trend Display
Allows users to toggle between displaying profiles for bullish swings, bearish swings, or both, offering tailored analysis.
Integrated ZigZag Lines
Visualizes swing highs and lows, providing a clear picture of market trends and reversals.
Dynamic Profile Visualization
Profiles are color-coded to indicate the frequency of closes, with the highest value bins distinctly marked for easy recognition.
Max Frequency Highlight
Displays numerical values for the most active price level within each profile, showing how many closes occurred at the peak bin.
Updates only after swing formed
Profiles and POC lines automatically appear after swing is done
⯁ HOW TO USE
Identify Critical Price Levels
Use the POC line and frequency distribution to locate levels where price is likely to react or consolidate.
Analyze Swing Characteristics
Observe swing profiles to understand the strength, duration, and behavior of market trends.
Plan Entries and Exits
Leverage significant price levels and high-frequency bins to make more informed trading decisions.
Focus on Specific Trends
Filter profiles to analyze bullish or bearish swings based on your trading strategy.
⯁ CONCLUSION
The Swing Profile Analyzer is an essential tool for traders seeking to understand price dynamics within market swings. By combining frequency profiles, POC levels, and trend visualization, it enhances your ability to interpret and act on market movements effectively.
Dynamic Deviation Levels [BigBeluga]Dynamic Deviation Levels is an innovative indicator designed to analyze price deviations relative to a smoothed midline. It provides traders with visual cues for overbought/oversold zones, price momentum, levels through labeled deviations and gradient candle coloring.
🔵Key Features:
Smoothed Midline:
A central line calculated as a smoothed median of the price source, serving as the baseline for price deviation analysis.
Dynamic Deviation Levels:
- Three deviation levels are plotted above and below the midline, with labels (1, 2, 3, -1, -2, -3) marking significant price movements.
- Helps traders identify overbought and oversold market conditions.
Heat-Colored Candles:
- Candle colors shift in intensity based on the deviation level, with four gradient shades for both upward and downward movements.
- Quickly highlights market extremes or stable zones.
Interactive Color Scale:
- A gradient scale at the bottom right of the chart visually represents deviation values.
- A triangle marker indicates the current price deviation in real time.
Optional Deviation Levels Display:
- Traders can enable all dynamic levels on the chart to visualize support and resistance areas dynamically.
🔵Usage and Benefits:
Identify Overbought/Oversold Zones: Use labeled deviation levels and heat-colored candles to spot stretched market conditions.
Track Trend Reversals and Momentum: Monitor price interactions with deviation levels for potential trend continuation or reversal signals.
Real-Time Deviation Insights: Leverage the color scale and triangle marker for live deviation tracking and actionable insights.
Map Dynamic Support and Resistance: Enable dynamic levels to highlight key areas where price reactions are likely to occur.
Dynamic Deviation Levels is an indispensable tool for traders aiming to combine price dynamics, momentum analysis, and visual clarity in their trading strategies.
LeaderTitle: Leader
Category: Technical Analysis Indicator
Version: Pine Script v5
Author: Syed Irfan Baksh
Market: Works on all instruments & timeframes
Description:
The Leader indicator is a powerful trading tool designed for trend-based traders. It identifies high-probability buy and sell signals using a combination of Exponential Moving Averages (EMA), Relative Strength Index (RSI), and Stochastic Oscillator to minimize false entries.
💡 Key Features:
✅ EMA Trend Confirmation – Uses 9-period and 21-period EMAs to confirm bullish/bearish trends.
✅ RSI Strength Filter – Prevents weak signals by requiring RSI above 55 for buys and below 45 for sells.
✅ Stochastic Confirmation – Ensures oversold/overbought conditions are accounted for, reducing false breakouts.
✅ Clear Visual Alerts – Displays BUY and SELL signals directly on the chart for easy interpretation.
✅ Universal Compatibility – Works on all assets (Forex, Stocks, Crypto, Commodities) and all timeframes.
How to Use:
📈 Buy Signal:
The 9 EMA crosses above the 21 EMA.
RSI is above 55, indicating strong bullish momentum.
Stochastic (%K and %D) is above 25, confirming upward movement.
📉 Sell Signal:
The 9 EMA crosses below the 21 EMA.
RSI is below 45, signaling bearish momentum.
Stochastic (%K and %D) is below 75, confirming downward pressure.
High Accuracy Trading Indicator//@version=5
indicator("High Accuracy Trading Indicator", overlay=true)
// تنظیمات پارامترها
rsiLength = input.int(14, title="RSI Length")
rsiOverbought = input.int(70, title="RSI Overbought Level")
rsiOversold = input.int(30, title="RSI Oversold Level")
maLength = input.int(20, title="Moving Average Length")
volumeThreshold = input.float(1.5, title="Volume Threshold Multiplier")
// محاسبه RSI
rsiValue = ta.rsi(close, rsiLength)
// محاسبه مووینگ اوریج
maValue = ta.sma(close, maLength)
// محاسبه حجم میانگین
avgVolume = ta.sma(volume, maLength)
highVolume = volume > avgVolume * volumeThreshold
// شرایط خرید و فروش
buySignal = (rsiValue < rsiOversold) and (close > maValue) and highVolume
sellSignal = (rsiValue > rsiOverbought) and (close < maValue) and highVolume
// نمایش سیگنالها
plotshape(series=buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// رسم مووینگ اوریج
plot(maValue, color=color.blue, title="Moving Average")
// هشدار صوتی
alertcondition(buySignal, title="Buy Alert", message="Buy Signal Detected!")
alertcondition(sellSignal, title="Sell Alert", message="Sell Signal Detected!")
Dynamic Median EMA | QuantEdgeBIntroducing Dynamic Median EMA by QuantEdgeB
Dynamic Median EMA | QuantEdgeB is an adaptive moving average indicator that blends median filtering, a volatility-based dynamic EMA, and customizable filtering techniques to create a responsive yet stable trend detection system. By incorporating Standard Deviation (SD) or ATR bands, this indicator dynamically adjusts to market conditions, making it a powerful tool for both traders and investors.
Key Features:
1. Dynamic EMA with Efficiency Ratio 🟣
- Adjusts smoothing based on market conditions, ensuring optimal responsiveness to price changes.
- Uses an efficiency ratio to dynamically modify the smoothing factor, making it highly adaptive.
2. Median-Based vs. Traditional EMA Source 📊
- Users can choose between a Median-based smoothing method (default: ✅ enabled ) or a traditional price source.
- The median filter provides better noise reduction in choppy markets.
3. Volatility-Based Filtering with Custom Bands 🎯
- Two filtering methods:
a. Standard Deviation (SD) Bands 📏 (default ✅) – Expands and contracts based on
historical deviation.
b. ATR Bands 📈 – Uses Average True Range (ATR) to adjust dynamic thresholds.
- The user can toggle between SD and ATR filtering, depending on market behavior.
4. Customizable Signal Generation ✅❌
- Long Signal: Triggered when the price closes above the selected upper filter band .
- Short Signal: Triggered when the price closes below the lower filter band .
- Dynamically adjusts based on the filtering method (SD or ATR).
5. Enhanced Visuals & Customization🎨
- Multiple color modes available (Default, Solar, Warm, Cool, Classic, X).
- Gradient filter bands provide a clearer view of volatility expansion/contraction.
- Candlestick coloring for instant visual confirmation of bullish/bearish conditions.
________
How It Works:
- Source Selection : Users can choose to use the median of price action or a traditional price feed as the base input for the Dynamic EMA.
- Dynamic EMA Calculation : The indicator applies a volatility-adjusted smoothing algorithm based on the efficiency ratio, ensuring that price trends are detected quickly in volatile markets and smoothly in stable ones.
- Filtering Mechanism : 🎯 Use can chose between two filtering options. Standard deviation to dynamically adjust based on market deviations or ATR Bands to determine trend strength through volatility expansions
- Signal Generation :
1. Bullish (🔵) is triggered when price crosses above the upper band.
2. Bearish (🔴) is generated when price drops below the lower band.
- The filtering method (SD/ATR) determines how the bands expand/contract, allowing for better trade adaptability.
________
Use Cases:
✅ For Trend Trading & Breakouts:
- Use SD bands (default setting) to capture trend breakouts and avoid premature entries.
- SD bands expand during high volatility, helping confirm strong breakouts, and contract during low volatility, helping confirm earlier trend exit.
- Consider increasing Dynamic EMA length (default 8) for longer-term trend detection.
✅ For Smoother Trend Filtering:
- Enable ATR bands for a more stable and gradual trend filter.
- ATR bands help reduce noise in choppy conditions while maintaining responsiveness to volatility.
- This setting is useful for traders looking to ride trends with fewer false exits.
✅ For Volatility Awareness:
- Watch the expansion and contraction of the filter bands:
- Wide SD bands = High volatility, breakout potential.
- Tight SD bands = Consolidation, potential trend exhaustion.
- ATR bands provide steadier adjustments, making them ideal for traders who prefer
smoother trend confirmation.
________
Customization Options:
- Source Selection 🟢 (Default: Median filtering enabled ✅)
- Dynamic EMA Length ⏳ (Default: 8 )
- Filtering Method🎯 (SD Bands ✅ by default, toggle ATR if needed)
- Standard Deviation Length 📏 (Default: 30 )
- ATR Length 📈 (Default: 14, ATR multiplier 1.3)
- SD Bands Weights:📌
- Default settings (Upper = 1.035, Lower = 1.02) are optimized for daily charts.
- For lower timeframes (e.g., hourly charts), consider using lighter weights such as Upper =
1.024 / Lower = 1.008 to better capture price movements.
- The optimal SD Band weights depend on the asset's volatility, so adjust accordingly to align
with market conditions.
- Multiple Color Themes 🎨 (Default, Solar, Warm, Cool, Classic, X)
________
Conclusion
The Dynamic Median EMA | QuantEdgeB is a powerful trend-following & filtering indicator designed to adapt dynamically to market conditions. By combining a volatility-responsive EMA, custom filter bands, and signal-based candlestick coloring, this tool provides clear and reliable trade signals across different market environments. 🚀📈
🔹 Disclaimer: Past performance is not indicative of future results. No trading indicator can guarantee success in financial markets.
🔹 Strategic Consideration: As always, backtesting and strategic adjustments are essential to fully optimize this indicator for real-world trading. Traders should consider risk management practices and adapt settings to their specific market conditions and trading style.
Agent Nafri AlertsTitle: Agent Nafri Alerts
Category: Technical Analysis Indicator
Version: Pine Script v5
Author: Syed Irfan Baksh
Market: Works on all instruments & timeframes
Description:
The Agent Nafri Alerts indicator is a sophisticated and versatile trading tool designed for traders who rely on trend-based strategies. By combining Exponential Moving Averages (EMA), Relative Strength Index (RSI), and Stochastic Oscillator, this indicator provides high-probability buy and sell signals while minimizing false entries. Whether you're trading Forex, Stocks, Crypto, or Commodities, this indicator adapts seamlessly to all assets and timeframes, making it a must-have tool for traders of all levels.
💡 Key Features:
EMA Trend Confirmation
Uses a 9-period EMA and a 21-period EMA to confirm bullish or bearish trends.
A crossover of the 9 EMA above the 21 EMA signals a potential uptrend, while a crossover below indicates a potential downtrend.
RSI Strength Filter
Filters out weak signals by requiring the RSI to be above 55 for buy signals and below 45 for sell signals.
Ensures that trades are only taken when momentum is strong and aligned with the trend.
Stochastic Confirmation
Adds an additional layer of confirmation by requiring the Stochastic Oscillator (%K and %D) to be above 25 for buy signals and below 75 for sell signals.
Helps avoid false breakouts by ensuring overbought or oversold conditions are respected.
Clear Visual Alerts
Displays BUY and SELL signals directly on the chart with intuitive labels and colors for easy interpretation.
Alerts are accompanied by sound notifications, ensuring you never miss a trading opportunity.
Universal Compatibility
Works flawlessly across all markets, including Forex, Stocks, Crypto, and Commodities.
Adapts to all timeframes, from 1-minute charts to weekly charts, making it suitable for scalpers, day traders, and swing traders alike.
🛠 How to Use:
📈 Buy Signal Conditions:
The 9 EMA crosses above the 21 EMA, confirming a bullish trend.
The RSI is above 55, indicating strong bullish momentum.
The Stochastic Oscillator (%K and %D) is above 25, confirming upward movement.
When all three conditions are met, a BUY signal is generated, and a visual alert is displayed on the chart.
📉 Sell Signal Conditions:
The 9 EMA crosses below the 21 EMA, confirming a bearish trend.
The RSI is below 45, signaling bearish momentum.
The Stochastic Oscillator (%K and %D) is below 75, confirming downward pressure.
When all three conditions are met, a SELL signal is generated, and a visual alert is displayed on the chart.
🎨 Customization Options:
The Agent Nafri Alerts indicator is highly customizable to suit your trading style:
Adjust the EMA periods (9 and 21) to fit your preferred trend-following strategy.
Modify the RSI thresholds (55 for buys, 45 for sells) to fine-tune momentum filtering.
Customize the Stochastic levels (25 for buys, 75 for sells) to align with your risk tolerance.
Change the colors and styles of the signals and EMA lines for better visual clarity.
🔔 Alerts and Notifications:
The indicator includes built-in TradingView alerts that can be configured to notify you via:
Pop-up notifications on your desktop or mobile device.
Email alerts for long-term traders.
Sound alerts to ensure you never miss a signal.
📊 Why Choose Agent Nafri Alerts?
High Accuracy: By combining multiple technical indicators, the Agent Nafri Alerts system ensures that only high-probability signals are generated.
Reduced False Signals: The RSI and Stochastic filters eliminate weak or unreliable signals, saving you from unnecessary losses.
User-Friendly: Designed with simplicity in mind, the indicator is easy to understand and use, even for beginners.
Versatile: Suitable for all trading styles, including scalping, day trading, and swing trading.
🌟 Start Using Agent Nafri Alerts Today!
Enhance your trading strategy with the Agent Nafri Alerts indicator and take your trading to the next level. Whether you're a beginner or an experienced trader, this powerful tool will help you identify high-probability trading opportunities with confidence.
Happy Trading! 🚀
75th-25th percentile momentum | 𝙌𝙪𝙖𝙣𝙩𝙪𝙢𝙍𝙚𝙨𝙚𝙖𝙧𝙘𝙝 Introducing QuantumResearch’s 75th-25th Percentile Momentum Indicator
The 75th-25th Percentile Momentum indicator is a cutting-edge tool that combines percentile rank analysis with ATR-based deviation to detect significant bullish and bearish momentum in the market. By analyzing price movements relative to the 75th and 25th percentiles of recent data, the indicator provides traders with clear and dynamic signals for long and short opportunities.
How It Works
Percentile Analysis:
The 75th and 25th percentiles are calculated over a user-defined lookback period, representing the upper and lower thresholds for price action.
ATR-Based Adjustment:
ATR (Average True Range) is used to account for market volatility, dynamically adjusting the thresholds with user-defined multipliers.
Signal Generation:
Long Signal: Triggered when the price exceeds the 75th percentile plus the ATR-based adjustment (default multiplier: 1.3).
Short Signal: Triggered when the price falls below the 25th percentile minus the ATR-based adjustment (default multiplier: 1.3).
Visual Representation
The indicator offers a clear and customizable visual interface:
Green Bars: Indicate a bullish trend, signaling a potential long opportunity when the price surpasses the adjusted 75th percentile.
Red Bars: Indicate a bearish trend, signaling a potential short opportunity when the price drops below the adjusted 25th percentile.
Additional visuals include:
A dynamically colored 54-period EMA line, representing trend direction:
Green Line: Indicates a bullish trend.
Red Line: Indicates a bearish trend.
A filled area between the EMA line and the midpoint (HL2), offering enhanced trend visibility.
Customization & Parameters
The 75th-25th Percentile Momentum indicator includes several adjustable parameters to suit different trading styles:
Source: Defines the input price (default: close).
Percentile Length: Default set to 25, determines the lookback period for percentile calculations.
ATR Length: Default set to 14, adjusts the sensitivity of volatility measurement.
Multiplier for 75th Percentile: Default set to 1.3, adjusts the threshold for long signals.
Multiplier for 25th Percentile: Default set to 1.3, adjusts the threshold for short signals.
Color Modes: Choose from eight visual themes to personalize the appearance of trend signals.
Trading Applications
This indicator is versatile and can be applied across various markets and strategies:
Momentum Trading: Highlights when price action demonstrates strong upward or downward momentum relative to recent percentiles.
Volatility-Adaptive Strategies: By incorporating ATR-based thresholds, the indicator adjusts dynamically to market conditions.
Reversal Detection: Identifies potential turning points when the price moves significantly beyond the 75th or 25th percentiles.
Final Note
QuantumResearch’s 75th-25th Percentile Momentum indicator is a powerful tool for traders looking to capture momentum and trend opportunities in the market.
Its combination of percentile analysis, volatility adjustment, and visual clarity offers a robust framework for making informed trading decisions. As with all indicators, it is recommended to backtest thoroughly and integrate this tool into a comprehensive trading strategy.
True Liquidity BlocksSo basically I've been deep diving into liquidity trading concepts similar to ICT (Inner Circle Trader) and developed an indicator that breaks down market movement through a volume-centric lens.
Key Concept:
Markets move not just by price, but by resolving trapped positions
Volume segments, not time intervals, show true market dynamics
VWAP (Volume Weighted Average Price) becomes a key structural reference
What Makes This Different:
Tracks volume segments instead of fixed time frames
Identifies "trapped" trader positions
Measures liquidity level efficiency
Color-codes bars based on nearest liquidity zone
Indicator Features:
Cyan/Red liquidity levels showing buy/sell pressure
Efficiency tracking for each level
Dynamic volume-based segmentation
Bar coloring to show nearest liquidity zone
Theoretical Inspiration: Viewed markets as energy systems where:
Positions create potential energy
Price movement resolves this energy
Trends form through systematic position liquidation
VWAP Recalculation in Each Segment:
Segment Start:
VWAP resets when volume threshold User Inputtable (600,000) is reached
Uses the last 4 price values (High, Low, Close, Close) for calculation
Weighted by volume traded during that segment
Calculation Method:
pineCopy = ta.vwap(hlcc4, na(segment_start) ? true : na, 1)
hlcc4: Combines high, low, close prices
na(segment_start): Ensures reset at new segment
Weighted by volume, not equal time intervals
Key Points:
Dynamic recalculation each segment
Reflects most recent trading activity
Provides real-time fair price reference
Tracks positioning
Essentially, VWAP resets and recalculates with each new volume segment, creating a rolling, volume-weighted average price that maps trader positioning.
BSL (Buy Side Liquidity) and SSL (Sell Side Liquidity) Explained:
When a volume segment closes relative to VWAP, it creates natural positioning traps:
BSL (Cyan) - Created when price closes BELOW THAT SEGMENT'S VWAP:
Bulls are positioned BELOW VWAP (trapped)
Shorts are positioned ABOVE VWAP (In Profit)
SSL (Red) - Created when price closes ABOVE THAT SEGMENT"S VWAP:
Bulls are positioned ABOVE VWAP (trapped)
Shorts are positioned BELOW VWAP (trapped)
Core Mechanism:
VWAP acts as a reference point for trader positioning
Trapped positions create inherent market tension
Levels expand to show accumulating pressure
Color-coded for quick identification of potential move direction
The goal: Visualize where traders are likely "stuck" and must eventually resolve their positions or liquidate other's, driving market movement.
It was just a fun experiment but If ya'll have any thoughts on it or what I could do to improve it, I would appreciate it.
Just a little note, It's optimized for futures, but if u uncheck the "Rest at Futures Open ?" setting, it allow full reign of any asset with volume data.
Twitter Model ICT [TradingFinder] MMXM ERL D + FVG + M15 MSS/SMT🔵 Introduction
The Twitter Model ICT is a trading approach based on ICT (Inner Circle Trader) models, focusing on price movement between external and internal liquidity in lower timeframes. This model integrates key concepts such as Market Structure Shift (MSS), Smart Money Technique (SMT) divergence, and CISD level break to identify precise entry points in the market.
The primary goal of this model is to determine key liquidity levels, such as the previous day’s high and low (PDH/PDL) and align them with the Fair Value Gap (FVG) in the 1-hour timeframe. The overall strategy involves framing trades around the 1H FVG and using the M15 Market Structure Shift (MSS) for entry confirmation.
The Twitter Model ICT is designed to utilize external liquidity levels, such as PDH/PDL, as key entry zones. The model identifies FVG in the 1-hour timeframe, which acts as a magnet for price movement. Additionally, traders confirm entries using M15 Market Structure Shift (MSS) and SMT divergence.
Bullish Twitter Model :
In a bullish setup, the price sweeps the previous day’s low (PDL), and after confirming reversal signals, buys are executed in internal liquidity zones. Conversely, in a bearish setup, the price sweeps the previous day’s high (PDH), and after confirming weakness signals, sells are executed.
Bearish Twitter Model :
In short setups, entries are only executed above the Midnight Open, while in long setups, entries are taken below the Midnight Open. Adhering to these principles allows traders to define precise entry and exit points and analyze price movement with greater accuracy based on liquidity and market structure.
🔵 How to Use
The Twitter Model ICT is a liquidity-based trading strategy that analyzes price movements relative to the previous day’s high and low (PDH/PDL) and Fair Value Gap (FVG). This model is applicable in both bullish and bearish directions and utilizes the 1-hour (1H) and 15-minute (M15) timeframes for entry confirmation.
The price first sweeps an external liquidity level (PDH or PDL) and then provides an entry opportunity based on Market Structure Shift (MSS) and SMT divergence. Additionally, the entry should be positioned relative to the Midnight Open, meaning long entries should occur below the Midnight Open and short entries above it.
🟣 Bullish Twitter Model
In a bullish setup, the price first sweeps the previous day’s low (PDL) and reaches an external liquidity level. Then, in the 1-hour timeframe (1H), a bullish Fair Value Gap (FVG) forms, which serves as the price target.
To confirm the entry, a Market Structure Shift (MSS) in the 15-minute timeframe (M15) should be observed, signaling a trend reversal to the upside. Additionally, SMT divergence with correlated assets can indicate weakness in selling pressure.
Under these conditions, a long position is taken below the Midnight Open, with a stop-loss placed at the lowest point of the recent bearish move. The price target for this trade is the FVG in the 1-hour timeframe.
🟣 Bearish Twitter Model
In a bearish setup, the price first sweeps the previous day’s high (PDH) and reaches an external liquidity level. Then, in the 1-hour timeframe (1H), a bearish Fair Value Gap (FVG) is identified, serving as the trade target.
To confirm entry, a Market Structure Shift (MSS) in the 15-minute timeframe (M15) should form, signaling a trend shift to the downside. If an SMT divergence is present, it can provide additional confirmation for the trade.
Once these conditions are met, a short position is taken above the Midnight Open, with a stop-loss placed at the highest level of the recent bullish move. The trade's price target is the FVG in the 1-hour timeframe.
🔵 Settings
Bar Back Check : Determining the return of candles to identify the CISD level.
CISD Level Validity : CISD level validity period based on the number of candles.
Daily Position : Determines whether only the first signal of the day is considered or if signals are evaluated throughout the entire day.
Session : Specifies in which trading sessions the indicator will be active.
Second Symbol : This setting allows you to select another asset for comparison with the primary asset. By default, "XAUUSD" (Gold) is set as the second symbol, but you can change it to any currency pair, stock, or cryptocurrency. For example, you can choose currency pairs like EUR/USD or GBP/USD to identify divergences between these two assets.
Divergence Fractal Periods : This parameter defines the number of past candles to consider when identifying divergences. The default value is 2, but you can change it to suit your preferences. This setting allows you to detect divergences more accurately by selecting a greater number of candles.
The indicator allows displaying sessions based on various time zones. The user can select one of the following options :
UTC (Coordinated Universal Time)
Local Time of the Session
User’s Local Time
Show Open Price : Displays the New York market opening price.
Show PDH / PDL : Displays the previous day’s high and low to identify potential entry points.
Show SMT Divergence : Displays lines and labels for bullish ("+SMT") and bearish ("-SMT") divergences.
🔵 Conclusion
The Twitter Model ICT is an effective approach for analyzing and executing trades in financial markets, utilizing a combination of liquidity principles, market structure, and SMT confirmations to identify optimal entry and exit points.
By analyzing the previous day’s high and low (PDH/PDL), Fair Value Gaps (FVG), and Market Structure Shift (MSS) in the 1H and M15 timeframes, traders can pinpoint liquidity-driven trade opportunities. Additionally, considering the Midnight Open level helps traders avoid random entries and ensures better trade placement.
By applying this model, traders can interpret market movements based on liquidity flow and structural changes, allowing them to fine-tune their trading decisions with higher precision. Ultimately, the Twitter Model ICT provides a structured and logical approach for traders who seek to trade based on liquidity behavior and trend shifts in the market.
Fair Value Gap (FVG) by AlgoMaxxFair Value Gap (FVG) by AlgoMaxx
Advanced Fair Value Gap (FVG) detector with dynamic support/resistance lines. This professional-grade tool helps traders identify and track important market inefficiencies through Fair Value Gaps.
Features:
• Auto-detection of bullish and bearish FVGs
• Dynamic dotted extension lines for latest FVGs
• Smart gap filtering system
• Color-coded visualization
• Customizable parameters
• Clean, optimized code
Key Functions:
• Detects imbalance zones between candlesticks
• Marks FVGs with color-coded boxes
• Extends dotted lines for active reference levels
• Automatically updates with new gap formations
• Tracks gap fills in real-time
Inputs:
• Lookback Period: Historical gaps to display
• Minimum Gap Size %: Filter for gap significance
• Bullish/Bearish Colors: Visual customization
• Show Filled Gaps: Toggle filled gap visibility
Practical Applications:
1. Support/Resistance Levels
2. Mean Reversion Trading
3. Trend Continuation Setups
4. Market Structure Analysis
5. Price Action Trading
Usage Tips:
• Higher timeframes (1H+) provide more reliable signals
• Multiple FVGs in one zone indicate stronger levels
• Use in conjunction with other technical tools
• Monitor price reactions at FVG levels
• Consider gaps as zones rather than exact prices
Note: This is a premium-grade indicator designed for serious traders. Works best on higher timeframes where price inefficiencies are more significant.
═══════════════════
By Algomaxx
Version: 1.0
═══════════════════
Disclaimer:
This indicator is for informational purposes only. Trade at your own risk and always use proper risk management.
#FVG #technical #trading #algomaxx #premium
Timecode° – The Hidden Key to Institutional MovesSummary:
Institutions know where the market is headed, but they need to manipulate the price to grab liquidity before making their move.
The market fakes you out first → Then it moves in the real direction!
This trick happens consistently in the last 10 minutes of every hour (xx:50 - xx:00).
Timecode° Time & Price Window Breakdown
1️⃣ Time Manipulation (xx:50 - xx:00)
- Institutions create a **false move** to trigger stop-losses and mislead retail traders.
- This phase is a **liquidity hunt**, not the real direction.
2️⃣ Price Delivery (xx:00 - xx:10)
- Once liquidity is taken, price moves in the real direction based on institutional positioning.
- This is where the **true institutional order flow** kicks in.
3️⃣ The Institutional Playbook
- Price doesn’t move randomly—it moves based on liquidity and execution at key time windows (like xx:50 - xx:10).
- The fake move is designed to create imbalances, allowing institutions to enter at optimal prices.
🔑 How to Use This in Trading**
- Don’t chase breakouts between xx:50 - xx:59.Wait for confirmation.
- Look for liquidity grabs near key levels.** Institutions love to sweep these before the real move.
- Watch price behavior at xx:00 - xx:10.** This is where the trend shift often happens.
This method is not just price action—it’s price action within institutional time windows. That’s what separates smart traders from trapped retail traders! 🚀
RSI + EMA + MACD + StochasticThis indicator combines several popular technical analysis tools to generate Buy and Sell signals for binary options trading, especially on a 1-minute timeframe. It utilizes RSI (Relative Strength Index), EMA (Exponential Moving Averages), MACD (Moving Average Convergence Divergence), and the Stochastic Oscillator to provide a comprehensive market analysis and increase the reliability of trading signals.
smetdtrading[3bich]sme entry kết hợp giữa smc và fibo, lấy từ nguồn của luxago , ae có thể kết hợp điểm vào lệnh là fibo ob , tặng ae TD tranding nhân dịp năm mới 2025
MACD Multi-Timeframe with Resultant of 5 MACDs5 INDICADORES MACD MULTI TIME FRAME para sincronizar distintas temporalidades segun el tipo de tradin utilizado.
ICT Concepts: MML, Order Blocks, FVG, OTECore ICT Trading Concepts
These strategies are designed to identify high-probability trading opportunities by analyzing institutional order flow and market psychology.
1. Market Maker Liquidity (MML) / Liquidity Pools
Idea: Institutional traders ("market makers") place orders around key price levels where retail traders’ stop losses cluster (e.g., above swing highs or below swing lows).
Application: Look for "liquidity grabs" where price briefly spikes to these levels before reversing.
Example: If price breaks a recent high but reverses sharply, it may indicate a liquidity grab to trigger retail stops before a trend reversal.
2. Order Blocks (OB)
Idea: Institutional orders are often concentrated in specific price zones ("order blocks") where large buy/sell decisions occurred.
Application: Identify bullish order blocks (strong buying zones) or bearish order blocks (strong selling zones) on higher timeframes (e.g., 1H/4H charts).
Example: A bullish order block forms after a strong rally; price often retests this zone later as support.
3. Fair Value Gap (FVG)
Idea: A price imbalance occurs when candles gap without overlapping, creating an area of "unfair" price that the market often revisits.
Application: Trade the retracement to fill the FVG. A bullish FVG acts as support, and a bearish FVG acts as resistance.
Example: Three consecutive candles create a gap; price later returns to fill this gap, offering a entry point.
4. Time-Based Analysis (NY Session, London Kill Zones)
Idea: Institutional activity peaks during specific times (e.g., 7 AM – 11 AM New York time).
Application: Focus on trades during high-liquidity periods when banks and hedge funds are active.
Example: The "London Kill Zone" (2 AM – 5 AM EST) often sees volatility due to European market openings.
5. Optimal Trade Entry (OTE)
Idea: A retracement level (similar to Fibonacci retracement) where institutions re-enter trends after a pullback.
Application: Look for 62–79% retracements in a trend to align with institutional accumulation/distribution zones.
Example: In an uptrend, price retraces 70% before resuming upward—enter long here.
6. Stop Hunts
Idea: Institutions manipulate price to trigger retail stop losses before reversing direction.
Application: Avoid placing stops at obvious levels (e.g., above/below recent swings). Instead, use wider stops or wait for confirmation.
Fvg and bag fillGAP THEORY
Fair Value Gap
The gap b/w the 1st and3rd candle.
If the 3rd candle closed or consolidated inside the second candle it offers entry with some confirmation on basis of HTF bias
Break Away Gap
The 3rd candle which closes above or below the 2nd candle confirms the Break away gap(BAG)
Buy side:- the 3rd candle body close above the 2nd candle high. Indicates buy side pressure .
Sell side:- the 3rd candle body close below the 2nd candle low. On seeing those sell side pressure we mostly (not every time)don't get a pullback into the FVG above
Points to remember
Only sell at premium & Buy at the discount.
Stick with the HTF bias.
Participate during the kill zone.
Risk management is the key for a profitable Trader.
Strictly 1:2RR
MACD RSI Buy/Sell Signal IndicatorThis simple indicator that uses the MACD 12 26 and the RSI 14 to track the event that the MACD histogram switches from rising to falling or vice versa and checks if RSI is trending up- or downwards at the same time. If MACD histogram changes from rising to falling and RSI is trending down we get a sell signal and the back ground changes from green to red. If MACD histogram changes from falling to rising and RSI is trending upwards we get a buy signal and the background turns green.
You can set the TradingView alarm for buy or sell signal to be informed whenever the indicator thinks that the tides are changing.
This indicator is customized to work best with 30min. timeframes but it is usable for smaller and higher timeframes either. You should check by yourself as you can always check how the indicator performed in the past as it is showing its hints in the past as well.
You should close a long as soon as a sell signal is printed or close a short as soon as a buy signal is printed to have some kind of stoploss like trading and minimize your losses.
Please trade with care and low leverages as the majority of people is losing money with trading.
As every indicator this indicator is not right all the time. You should take it as a base for deciding when to sit down at your computer or with your phone to open a trade but you should take other indicators and the chart itself into consideration and combine for example with checking SMAs, money flow, volumes, candle bodies, ect. to get more confluence if you should open the trade or not.
Will amend the indicator in case I made some improvements on it.
Wish you never ending profits and easier decisions.
RT + TL v12This is a script to populate gamma/vanna/charm levels from option greeks heatmaps in Vexly. Heavy levels indicate levels with highest confluence. TLU and TLL are upper and lower levels. The levels are posted everyday on their discord server.
Range Trader another tool in Vexly, the levels from which can be plotted as well. Just copy the headline from range trader into "RT Range" and the modes into "RT mode"
Example:
RT Mode will take this string as input and plot the levels:
upper_mode
6049.037
mp_mode
6035.407
lower_mode
6021.776
RT Range will take this string as input and plot the levels:
6044.893 - 6017.652
Hope this helps
Open Close Cross Strategy v6 by MenahemОткрывает позицию, закрывает её и сразу открывает позицию в обратную сторону.
LinReg Candles_UTalertLin Reg with alerts shows linear analysis and gives alerts when it moves above smoothened moving average