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"
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!")
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.
IU Ocean OscillatorIU Ocean Oscillator is a momentum-based oscillator designed to identify trend exhaustion and potential reversals. This indicator is calculated using:
- Acceleration Factor (AF): Measures the rate of change in price momentum.
- Volatility Expansion (VE): Captures market volatility over a given period.
- Trend Exhaustion Index (TEI): Normalized ratio of AF and VE, scaled between 0 and 100.
- Signal Line: A smoothed moving average of the TEI for better trend clarity.
User Inputs
- Lookback Period: Defines the number of bars used for calculations.
- Overbought Level: Sets the threshold for overbought conditions (default: 85).
- Oversold Level: Sets the threshold for oversold conditions (default: 15).
- Show Acceleration Factor: Option to display the raw TEI values.
Key Features:
- Overbought and oversold levels to identify potential reversal zones.
- Gradient-colored signal line to visualize trend strength.
- Optional display of the Acceleration Factor for advanced analysis.
- Unique oceanic theme with dynamic elements like coral, bubbles, and blowfish.
This oscillator helps traders gauge trend strength, exhaustion, and possible reversals, making it useful for various trading strategies.
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.
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.
SuperTrend ULTIMATE RamiIndicators & Setup:
EMA (Exponential Moving Averages): Use 9 EMA & 21 EMA for trend direction.
VWAP (Volume Weighted Average Price): For price positioning relative to market strength.
RSI (Relative Strength Index - 14 period): Use for overbought/oversold conditions (above 70 = sell, below 30 = buy).
MACD (Moving Average Convergence Divergence): For momentum confirmation.
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.
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.
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! 🚀
Bottom Fishing Indicator# Bottom Fishing Indicator Documentation
## 1. Overview
The **Bottom Fishing Indicator** is a tool based on **RSI**, **CCI**, and **MFI** oscillators to identify oversold conditions. It accumulates oversold values over time to detect potential reversal points. The indicator also supports multi-timeframe analysis to provide more comprehensive insights.
---
## 2. Features
1. **RSI / CCI / MFI Oversold Accumulation Detection**:
- **RSI**: Starts accumulating when RSI is below 30.
- **CCI**: Calculates the difference from -100 when CCI is below -100 and accumulates it.
- **MFI**: Begins accumulation when MFI is below 20.
2. **Threshold Trigger Monitoring**:
- When the accumulated value exceeds the predefined threshold (default 100), a "Goal" marker is displayed on the chart, indicating a potential bottom.
3. **Multi-Timeframe Analysis (MTF)**:
- Supports selecting different timeframes (such as daily, weekly) for indicator values and displays multi-timeframe accumulation curves on the main chart.
4. **Customizable and Dynamic Adjustment Options**:
- Allows customization of indicator lengths, accumulation thresholds, display colors, line thickness, and more, offering flexible settings.
---
## 3. Settings Explanation
1. **RSI Length**: Period for RSI calculation (default 14).
2. **CCI Length**: Period for CCI calculation (default 20).
3. **MFI Length**: Period for MFI calculation (default 14).
4. **Sum Threshold for Marker**: Accumulation value threshold to trigger markers (default 100).
5. **Indicator to Track**: Select the indicator to monitor (RSI / CCI / MFI).
6. **Multi-Timeframe Line Timeframe**: Timeframe for multi-timeframe analysis (default Daily).
7. **MTF Sum Threshold for Reset**: Accumulation threshold for multi-timeframe analysis, resets after exceeding (default 100).
8. **MTF Sum Line Color**: Color of the multi-timeframe accumulation line (default Orange).
9. **MTF Line Width**: Thickness of the multi-timeframe accumulation line (default 2).
---
## 4. Chart Explanation
1. **Value Sum Line**: Accumulation curve for oversold areas, showing the current progress of accumulation to monitor potential reversals.
2. **MTF Value Sum Line**: Multi-timeframe accumulation line, further verifying consistency between different timeframes.
3. **Goal Marker**: Displays a "Goal" marker on the chart when the accumulation value exceeds the predefined threshold, indicating a potential bottom area.
---
## 5. Usage Tips
1. **Select Indicators Based on Conditions**:
- For clear downtrends, RSI may provide better results.
- For highly volatile markets, CCI is more effective.
- To consider volume factors, choose the MFI indicator.
2. **Multi-Timeframe Analysis**:
- Use multi-timeframe accumulation curves to further confirm the consistency between larger and smaller timeframes.
3. **Continuous Monitoring and Adjusting Thresholds**:
- Adjust accumulation thresholds according to market volatility to select more suitable risk control methods.
---
## 6. Notes
1. **Oversold indicators alone cannot fully capture the market environment. Please combine them with other technical indicators and fundamental analysis.**
2. **The indicator does not guarantee market bottom reversals. Please use it rationally and avoid over-reliance.**
---
For any questions or feedback, please contact us.
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.
MACD Multi-Timeframe with Resultant of 5 MACDs5 INDICADORES MACD MULTI TIME FRAME para sincronizar distintas temporalidades segun el tipo de tradin utilizado.
[UsaYasin] Fibonacci Retracement / QQE / VWAP Deviation Fibonacci retracement is a popular technical analysis tool used by traders to identify potential support and resistance levels in financial markets.
The QQE indicator, short for Quantitative Qualitative Estimation, is a technical analysis tool used by traders to identify potential overbought and oversold conditions in the market. It's essentially a smoothed version of the popular Relative Strength Index (RSI) indicator, with some added features.
VWAP deviation is a technical analysis tool that helps traders understand how far the current price of an asset is from its volume-weighted average price (VWAP).
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
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.
RK Master Pattern Order Block Projections IndicatorRK Master Pattern Order Block Projections Indicator
My auto dual avwap with Auto swing low/pivot low finderWelcome to My Auto Dual AVWAP with Auto Swing Low/Pivot Low Finder – an open-source TradingView indicator designed to enhance your technical analysis toolbox. This indicator is published under the Mozilla Public License 2.0 and is available for anyone to study, modify, and distribute.
Key Features
Auto Pivot/Swing Low Finder:
In addition to VWAP lines, the indicator incorporates an automatic detection mechanism for swing lows/pivot lows. This feature assists in identifying potential support areas and price reversals, further enhancing your trading strategy.
Dual VWAP Calculation with high/low range:
The indicator calculates two separate volume-weighted average price (VWAP) lines based on different price inputs (low and high prices) and defined time sessions. This allows traders to gain a more nuanced view of market activity during specific trading periods.
Customizable Time Sessions:
You can specify distinct start and end times for each VWAP calculation session. This flexibility helps you align the indicator with your preferred trading hours or market sessions, making it adaptable to various time zones and trading styles.
Easy to Customize:
With clear code structure and detailed comments, the script is designed to be accessible even for traders who want to customize or extend its functionality. Whether you're a seasoned coder or just starting out, the code is written with transparency in mind.
How It Works
Session Initialization:
The script sets up two distinct time sessions using user-defined start and end times. For each session, it detects the beginning of the trading period to reset cumulative values.
Cumulative Calculations:
During each session, the indicator accumulates the product of price and volume as well as the total volume. The VWAP is then computed as the ratio of these cumulative values.
Dual Data Sources:
Two separate data inputs (using low and high prices) are used to calculate two VWAP lines. This dual approach provides a broader perspective on market trends and can help in identifying dynamic support and resistance levels.
Visualization:
The calculated VWAP lines are plotted directly on your chart with distinct colors and thickness settings for easy visualization. This makes it simple to interpret the data at a glance.
Why Use This Indicator?
Whether you are a day trader, swing trader, or simply looking to refine your market analysis, My Auto Dual AVWAP with Auto Swing Low/Pivot Low Finder offers a robust set of features that can help you identify key price levels and improve your decision-making process. Its open-source nature invites collaboration and customization, ensuring that you can tailor it to fit your unique trading style.
Feel free to explore, modify, and share this indicator. Happy trading!