Market Structure Confluence [AlgoAlpha]OVERVIEW
This script is called "Market Structure Confluence" and it combines classic market structure analysis with a dynamic volatility-based band system to detect shifts in trend and momentum more reliably. It tracks key swing points (higher highs, higher lows, lower highs, lower lows) to define the trend, then overlays a basis and ATR-smoothed volatility bands to catch rejection signals and highlight potential inflection points in the market.
CONCEPTS
Market structure is the foundation of price action trading, focusing on the relationship between successive highs and lows to understand trend conditions. Break of Structure (BOS) and Change of Character (CHoCH) events are important because they signal when a market might be shifting direction. This script enhances traditional structure by integrating volatility bands, which act like dynamic support/resistance zones based on ATR, allowing it to capture momentum surges and rejections beyond just structural shifts.
FEATURES
Swing Detection: It detects and labels Higher Highs (HH), Higher Lows (HL), Lower Highs (LH), and Lower Lows (LL) based on user-defined time horizons, helping traders quickly spot the trend direction.
BOS and CHoCH Lines: When a previous swing point is broken, the script automatically plots a Break of Structure (BOS) line. If the break represents a major trend reversal (a CHoCH), it is marked differently to separate simple breakouts from real trend changes.
Rejection Signals: Special arrows plot when price pierces a band and then pulls back, suggesting a potential trap move or rejection signal in the direction of the new structure.
Alerts: Built-in alerts for structure breaks, CHoCHs, swing points, rejections at bands, and trend flips make it easy to automate setups without manually watching the chart.
USAGE
Set your preferred swing detection size depending on your timeframe and trading style — smaller numbers for intraday, larger numbers for swing trading. Choose whether you want BOS/CHoCH confirmed by candle closes or by wick breaks. Use the volatility band settings to fine-tune how tightly or loosely the bands hug the price, adjusting sensitivity based on market conditions. When a BOS or CHoCH occurs, or when a rejection happens at the bands, the script will highlight it clearly and optionally trigger alerts. Watch for combinations where both structure breaks and volatility band rejections happen together — those are high-quality trade signals. This setup works best when used with basic trend filtering and higher timeframe confirmation.
Volatility
Liquidity Trap Reversal Pro (Radar v2)Liquidity Trap Reversal Pro (Radar v2) is a non-repainting indicator designed to detect hidden liquidity traps at key swing highs and lows. It combines wick analysis, volume spike detection, and optional trend and exhaustion filters to identify high-probability reversal setups.
🔷 Features:
Non-Repainting: Pivots confirmed after lookback period, no future leaking.
Volume Spike Detection: Filters traps that occur during major liquidity events.
EMA Trend Filter (Optional): Focus on traps aligned with the prevailing trend.
Higher Timeframe Trend Filter (Optional): Confirm traps using a higher timeframe EMA bias.
Exhaustion Guard (Optional): Prevents traps after overextended moves based on ATR stretch.
Clean Visuals: Distinct plots for raw trap points vs confirmed traps.
Alerts Included: Set alerts for confirmed high/low liquidity traps.
📚 How to Use:
Watch for Trap Signals:
A Trap High signal suggests a potential bearish reversal.
A Trap Low signal suggests a potential bullish reversal.
Use Confirmed Signals for Best Entries:
Confirmed traps fire only after price moves opposite to the trap direction, adding reliability.
Use Trend Filters to Improve Accuracy:
In an uptrend (price above EMA), prefer Trap Lows (buy setups).
In a downtrend (price below EMA), prefer Trap Highs (sell setups).
Use the Exhaustion Guard to Avoid Bad Trades:
This filter blocks signals when price has moved too far from trend, helping avoid late entries.
Recommended Settings:
Best used on 15-minute, 1-hour, or 4-hour charts.
Trend filter ON for trending markets.
Exhaustion guard ON for volatile or stretched markets.
📈 Important Notes:
This script does not repaint once a pivot is confirmed.
Alerts trigger only on confirmed trap signals.
Always combine signals with sound risk management and trading strategy.
Disclaimer:
This script is for educational purposes only. It is not investment advice or a guarantee of results. Always do your own research before trading.
Gabriel's Adaptive MA📜 Gabriel's Adaptive MA — Indicator Description
Gabriel's Adaptive Moving Average (GAMA) is a dynamic trend-following indicator that intelligently adjusts its smoothing based on both trend strength and market volatility.
It is designed to provide faster responsiveness during strong moves while maintaining stability during choppy or consolidating periods.
🧠 What it does:
This indicator plots a custom-built, highly dynamic Moving Average that adapts itself intelligently based on:
Trend Strength (via Perry Kaufman's Efficiency Ratio)
Market Volatility (via Tushar Chande's Volatility Ratio)
It reacts faster when the market is trending strongly and/or highly volatile,
and it smooths out and slows down when the market is choppy or calm.
🔍 How it works (step-by-step):
1. User Inputs:
length: (default 14)
How many bars to look back for calculations.
fastSC: Fastest possible smoothing constant (hardcoded as 2 / (2+1))
slowSC: Slowest possible smoothing constant (hardcoded as 2 / (30+1))
(These are used to control how fast/slow the KAMA can react.)
2. Calculate Trendiness — Kaufman Efficiency Ratio (ER):
Net Change = Absolute difference between current close and close from length bars ago.
Sum of Absolute Changes = Sum of absolute price changes between every bar inside the length window.
Efficiency Ratio (ER) = Net Change divided by Sum of Changes.
✅ If ER is close to 1 → Smooth, trending market.
✅ If ER is close to 0 → Choppy, sideways market.
3. Calculate Bumpiness — Volatility Ratio (VR):
Short-Term Volatility = Standard deviation of close over length.
Long-Term Volatility = Standard deviation of close over length * 2.
Volatility Ratio (VR) = Short-Term Volatility divided by Long-Term Volatility.
✅ If VR is >1 → Market is becoming more volatile recently.
✅ If VR is <1 → Market is calming down.
4. Create the Hybrid Alpha:
Multiply ER × VR.
Then square the result (math.pow(..., 2)).
This hybrid alpha decides how aggressive the MA should be based on both trend and volatility.
If ER and VR are both strong → big alpha → fast movement.
If ER and/or VR are weak → small alpha → slow movement.
5. Calculate the Final Adaptive Smoothing Constant (hybridSC):
hybridSC = slowSC + hybridAlpha × (fastSC - slowSC)
This smoothly interpolates between the slowest and fastest smoothing depending on market conditions.
6. Calculate and Plot the Adaptive MA:
The moving average is manually calculated:
hybridMA := na(hybridMA ) ? close : hybridMA + hybridSC * (close - hybridMA )
It behaves like an EMA but with dynamic smoothing, not a fixed alpha.
✅ If hybridSC is high → MA hugs the price closely.
✅ If hybridSC is low → MA stays smooth and resists noise.
Finally, it plots this Adaptive MA on the chart in blue color.
📊 Visual Summary
Market Type What Happens to GAMA
Trending hard + volatile Follows price quickly
Trending hard + calm Follows steadily but carefully
Sideways + volatile Reacts carefully (won't chase noise)
Sideways + calm Smooths heavily (avoids fakeouts)
✨ Main Strengths:
Adapts automatically without you tuning settings manually every time market changes.
Responds smartly to both trend quality (ER) and market energy (VR).
Reduces lag during real moves.
Filters out false signals during choppy mess.
🧪 Key Innovation compared to normal MAs:
Traditional MA Gabriel's Adaptive MA
Same smoothing every bar Dynamic smoothing every bar
Slow during fast moves Adapts fast during real moves
No understanding of volatility or trendiness Full market sensitivity
⚡ **Simple One-Line Description:**
"Gabriel's Adaptive MA is a dynamic, trend-and-volatility-sensitive moving average that intelligently adjusts its speed to match market conditions."
Quantum UT BOT by MrCryptoBTCQuantum UT BOT by MrCryptoBTC – Precision Signal Engine (Not For Sale - FREE)
How it Works:
The Quantum UT BOT is a smart, optimized version of the classic UT BOT indicator by Yo_adriiiiaan.
It has been meticulously modified by MrCryptoBTC with a Key Value of 0.5 and an ATR Period of 7, making it faster, more responsive, and more accurate in detecting market shifts.
The system uses Adaptive ATR-based triggers to generate Buy (LONG) and Sell (SHORT) signals with Exit points, helping traders catch trends earlier and lock in profits intelligently.
Description:
Quantum UT BOT is an evolution of the original UT BOT, now tuned for higher precision, faster entries, and smarter exits.
By adjusting the core parameters (Key Value 0.5, ATR Period 7), MrCryptoBTC has transformed the UT BOT into a next-generation signal engine suitable for scalpers, intraday, and swing traders.
The Buy and Sell signals generated by the Quantum UT BOT are clear, early, and reliable — offering a major advantage in volatile markets like Gold, Crypto, and Forex.
It is highly recommended to use the Quantum UT BOT together with the STO * Smart Trend Oscillator for a complete smart trading system, providing confirmation and trend filtering for maximum accuracy.
Main Features:
* Fast Buy/Sell Detection – reacts quickly to market changes
* Clear Exit Signals – helps secure profits and reduce drawdowns
* Smart Trend Filtering – ATR-adaptive for dynamic conditions
* Works on All Timeframes – from 1-minute scalping to daily swings
* Perfect Companion to STO * Smart Trend Oscillator
✅ Created by: MrCryptoBTC
✅ Perfect for: Scalpers, Intraday Traders, Swing Traders
✅ Markets: Gold, Crypto, Forex, Indices
Rally Sweep Volume RSV w/ Bollinger Band Filter + Swing FilterRally Sweep Volume entry models using bollinger bands and Swing points as a filter.
cabreras Dynamic TRIX Heatmap OscillatorKey Features
TRIX Calculation
Computes three successive EMAs of your chosen source (default: close) over a user-configurable length
Expresses momentum as the percent change from one bar to the next
Heatmap Coloring
Automatically blends between three colors (weak, neutral, strong) based on how far TRIX sits within your defined range
“Weak” zone (low momentum), “neutral” midpoint, “strong” zone (high momentum)
Fully customizable color inputs and thresholds
Reference Lines
Zero Line: quickly see bullish vs. bearish momentum
High/Low Bands: optional overbought/oversold or custom momentum limits
Flexible Inputs
Source (e.g. close, hlc3, typical) and TRIX Length
Color Inputs for all three momentum zones
Normalization Range (minTRIX / maxTRIX) to match expected volatility
Neutral Threshold (midPointLevel) to split “weak” vs. “strong”
High/Low Line Levels and toggles for all reference lines
How to Use
Add to Chart
Paste the script into TradingView’s Pine Editor (v6) and hit “Add to Chart.”
Customize Ranges
Match minTRIX/maxTRIX to the typical swing of your market (e.g. ±0.05) so you see full red→yellow→green gradients.
Set Color Zones
Pick distinct “weak,” “neutral,” and “strong” colors for clear visual contrast.
Interpret
Green bars = accelerating bullish momentum
Red bars = strong bearish momentum
Yellow bars = indecision or transition
Use Reference Lines
Reset midPointLevel to shift neutrality, or add high/low bands to highlight extreme momentum conditions and trigger alerts.
With its intuitive color-blending and flexible thresholds, this oscillator makes it easy to spot momentum build-ups, exhaustion phases, and cross-threshold reversals—all at a single glance.
Accurate Global M2 (Top10 GDP, FX-Stabilized)This script was created to solve the serious distortions found in other circulating "Global M2" indicators.
Many previous versions used noisy daily FX rates, unweighted country data, mixed liquidity categories (e.g., RRP, TGA), or aggregated low-quality sources, causing exaggerated or misleading charts.
This version fixes those problems by:
Using Top 10 global economies only (based on GDP).
GDP-weighting each country's M2 contribution.
Fetching monthly-averaged M2 data.
Applying monthly FX conversions to eliminate daily volatility noise.
Forward-shifting the M2 line (default 90 days) to study potential Bitcoin correlations.
Keeping the math clean, without mixing central bank liquidity tools with broad M2 aggregates.
As a result, this script provides a more realistic and stable representation of global M2 expansion in USD terms, more suitable for serious macroeconomic analysis and Bitcoin market correlation studies.
BollingerBands MTF | AlchimistOfCrypto🌌 Bollinger Bands – Unveiling Market Volatility Fields 🌌
"The Bollinger Bands, reimagined through quantum mechanics principles, visualizes the probabilistic distribution of price movements within a multi-dimensional volatility field. This indicator employs principles from wave function mathematics where standard deviation creates probabilistic boundaries, similar to electron cloud models in quantum physics. Our implementation features algorithmically enhanced visualization derived from extensive mathematical modeling, creating a dynamic representation of volatility compression and expansion cycles with adaptive glow effects that highlight the critical moments where volatility phase transitions occur."
📊 Professional Trading Application
The Bollinger Bands Quantum transcends traditional volatility measurement with a sophisticated gradient illumination system that reveals the underlying structure of market volatility fields. Scientifically calibrated for multiple timeframes and featuring eight distinct visual themes, it enables traders to perceive volatility contractions and expansions with unprecedented clarity.
⚙️ Indicator Configuration
- Volatility Field Parameters 📏
Python-optimized settings for specific market conditions:
- Period: 20 (default) - The quantum time window for volatility calculation
- StdDev Multiplier: 2.0 - The probabilistic boundary coefficient
- MA Type: SMA/EMA/VWMA/WMA/RMA - The quantum field smoothing algorithm
- Visual Theming 🎨
Eight scientifically designed visual palettes optimized for volatility pattern recognition:
- Neon (default): High-contrast green/red scheme enhancing volatility transition visibility
- Cyan-Magenta: Vibrant palette for maximum volatility boundary distinction
- Yellow-Purple: Complementary colors for enhanced compression/expansion detection
- Specialized themes (Green-Red, Forest Green, Blue Ocean, Orange-Red, Grayscale): Each calibrated for different market environments
- Opacity Control 🔍
- Variable transparency system (0-100) allowing seamless integration with price action
- Adaptive glow effect that intensifies during volatility phase transitions
- Quantum field visualization that reveals the probabilistic nature of price movements
🚀 How to Use
1. Select Visualization Parameters ⏰: Adjust period and standard deviation to match market conditions
2. Choose MA Type 🎚️: Select the appropriate smoothing algorithm for your trading strategy
3. Select Visual Theme 🌈: Choose a color scheme that enhances your personal pattern recognition
4. Adjust Opacity 🔎: Fine-tune visualization intensity to complement your chart analysis
5. Identify Volatility Phases ✅: Monitor band width to detect compression (pre-breakout) and expansion (trend)
6. Trade with Precision 🛡️: Enter during band contraction for breakouts, or trade mean reversion using band boundaries
7. Manage Risk Dynamically 🔐: Use band width as volatility-based position sizing parameter
Swing Trading NR4/NR7 + 2BarNR/3BarNR + Trend📜 Description:
NR4, NR7, 2-Bar NR, and 3-Bar NR Compression Scanner (Swing Trading Version)
This script spots serious price compressions (NR4, NR7, 2-Bar NR, 3-Bar NR) on the daily chart, with simple but ruthless trend confirmation.
It's leaner. It's cleaner. It's built for those who don’t like getting caught with their pants down in messy sideways markets.
The scanner conditions are:
NR4 and NR7 patterns: Today's daily range must be the narrowest compared to the last 4 or 7 days.
2-Bar and 3-Bar Narrow Ranges: The narrowest two-day or three-day ranges relative to the previous 20 sets.
Trend filter:
Closing price must be above the 20 EMA.
The 10 EMA must be above the 20 EMA.
Visuals:
Background highlights whenever a compression setup forms.
Shape markers above or below the bars to mark the opportunity.
📈 Why Use This?
Some have said swing trading is like sipping fine wine — slow, measured, deliberate.
I won’t say they’re wrong.
But there’s also the part where you grab the bottle, smash it over the head of bad setups, and only drink the good stuff.
This scanner lets you find daily compressions inside healthy trends.
The kind of coils that can explode in your favour — and not the fake-outs that empty your account while you cry into your keyboard.
🛠️ Built for Traders Who:
Trade on daily candles, not minute charts.
Want high-quality entries without second-guessing.
Understand that real breakouts come from contraction, not chaos.
Like their setups clean, focused, and simple enough to stick to under pressure.
Real Relative Strength vs SPY (Clean Visual)This indicator plots Real Relative Strength/Weakness (RS/RW) of any stock relative to SPY, normalised by ATR. Designed to aid trading aligned to RDT philosophy.
Designed for intraday and swing traders to quickly identify stocks showing true institutional strength or weakness compared to the market.
Uses a clean, color-coded center-line display for fast reading of live RS/RW performance.
It automatically syncs to whatever timeframe you’re trading (5min, 15min, 1hr)
Default comparison ticker is SPY (you can easily swap if needed later)
Length = 12 by default → (rolling 1-hour window on M5 chart)
Clean green/red visual breakout = immediately obvious relative strength or weakness!
How to use
Strong Green move above zero ➔ RS developing ➔ Long bias
Strong Red move below zero ➔ RW developing ➔ Short bias
Choppy around zero ➔ No clear edge ➔ maybe avoid that stock
Day Trading NR4/NR7 + 2BarNR/3BarNR + ID + MomentumDay Trading Version: The High-Precision Momentum Setup
The Day Trading Version of this strategy is designed for traders who need quick, high-probability setups that work in real-time throughout the trading day. It’s a dynamic approach that blends classic price compression patterns with crucial intraday filters like VWAP and MACD, ensuring you’re only executing trades when everything lines up for success.
Price Compression: Focuses on NR4, NR7, and Inside Day patterns, offering clear signals when stocks are in tight ranges—ideal for a breakout or breakdown. These setups identify periods of compression that often precede explosive moves.
Trend Alignment: Price must be above the 20 EMA, with the 10 EMA above the 20 EMA, confirming a trend that's worthy of entering. These filters keep you on the right side of the market, ensuring you’re trading in the direction of momentum.
VWAP Filter: The price must be above VWAP for long trades, keeping you in sync with intraday institutional flow. This ensures you're aligning with the market’s overall bias.
MACD Confirmation: The fast MACD line needs to be at least 5% above or below the slow line, ensuring that the trade has sufficient momentum. For long trades, the MACD must be positive, confirming upward strength.
This strategy is built for momentum-focused traders who thrive on fast action and want to capture intraday volatility. Perfect for day traders who need to identify reliable setups on the fly, with clear rules and filters that make entering and exiting positions easier than ever.
NR4/NR7 + 2BarNR/3BarNR + Trend + Refined MACD + VWAP📜 Description:
NR4, NR7, 2-Bar NR, and 3-Bar NR Compression Scanner with Trend & Momentum Filters
This script identifies extreme price compressions (NR4, NR7, 2-Bar NR, 3-Bar NR) combined with strict trend and momentum conditions for higher-probability setups.
It’s not just about spotting contraction — it’s about ensuring the right environment for expansion.
The scanner conditions are:
NR4 and NR7 patterns: Today's range must be the narrowest compared to the last 4 or 7 days.
2-Bar and 3-Bar Narrow Ranges: The narrowest two or three day ranges compared to the last 20 sets of two/three days.
Trend filter:
Price must be above the 20 EMA.
The 10 EMA must be above the 20 EMA.
MACD proximity filter:
The MACD fast line must either be above the slow line or within 5% range below the slow line.
VWAP filter:
Price must be trading above VWAP.
Visuals:
Background colours highlight detected compression patterns aligned with trend.
Shape markers above or below bars for quick visual confirmation.
📈 Why Use This?
Some have said that trading is a waiting game. I won't say they're wrong.
This scanner doesn't just throw every tight-range day at you. It finds the coils in context — trending, gaining momentum, ready to spring.
If you chase trades like a fool in a brothel, you'll get taken for a ride.
If you wait for the right compression, at the right moment, with the right backing...
Well, let's just say, you might just start looking like you actually know what you're doing.
🛠️ Built for Traders Who:
Prefer strong trends over messy ranges.
Want systematic setups, not random guessing.
Like stacking probabilities rather than praying to the trading gods.
Enjoy catching breakouts when everyone else is still scratching their heads.
Triple Confirmation Buy/Sell Engine VWAP + MACD + RSIDescription:
This custom-built indicator generates high-confidence Buy/Sell signals using a powerful combination of MACD momentum, RSI strength, and VWAP trend confirmation — designed for cleaner entries and fewer false signals.
Unlike traditional scripts that rely on only one indicator (and produce noisy or early signals), this system requires triple confirmation, greatly increasing signal quality and reducing false trades.
✅ Buy Signal Conditions:
MACD histogram turns green (momentum shift positive)
RSI crosses above 50 (bullish strength confirmation)
Price closes above VWAP (trend confirmation)
🔻 Sell Signal Conditions:
MACD histogram turns red (momentum shift negative)
RSI crosses below 50 (weakening trend)
Price closes below VWAP (bearish confirmation)
🛠 Best For:
Trend traders seeking higher probability entries
Swing traders who want to catch bigger moves
Crypto, stocks, forex traders looking for simple, effective signals
AresAres is an adaptive signal engine designed to give traders smarter, faster, and more reliable setups.
🧬 How Ares Really Works
Ares builds every signal using 7 key confluences —
things like MACD, RSI, VWAP, Volume Delta, EMA Stack, EMA Slope, and ADX Strength.
But Ares doesn’t just throw signals.
Every setup gets rated by an AI Advisor before it even shows up on your screen:
🌟 Golden Entry, 🧐 Needs Checking, ⚠️ Risky, or 🚫 Bad Entry complete with
hover tooltips showing exactly what's hitting... and what's missing.
Ares is constantly thinking about the bigger picture
automatically filtering out weak trades when the market is too choppy, too low-volatility, or just not clean enough.
---
Behind the scenes, Ares is doing way more:
- Adaptive Supertrend
(Fully auto-adjusts to real-time market conditions — no manual tuning needed.)
- Volume Delta Detection
(Only triggers when there's real buying or selling pressure behind the move.)
- Volume Imbalance Zones
(Auto-detects liquidity gaps that institutions target — showing exactly where reactions could happen.)
- Support & Resistance Breaks
(Smart pivot tracking with volume confirmation when major levels break.)
- Fibonacci Retracement Mapping
(Real-time fib levels, with the Golden Zone highlighted for sniper-style entries.)
- Liquidity Sweeps & Order Blocks
(Advanced SMC/ICT concepts — fully automated: sweeps, breaker blocks, accumulation/distribution zones.)
- Auto Smart Stop-Loss & Risk:Reward Zones
(Dynamic SL placement + auto-drawn 1:1 and 2:1 target zones based on structure and volatility.)
- Pro Mode Dashboard
(Live volatility state, trend mode, bias compass, R:R analysis, and smart ATR stop size — all in one glance.)
- Multi-Timeframe Pattern Scanner
(Scans higher timeframes for Engulfing and Inside Bar setups — without leaving your current chart.)
- Higher Timeframe Trend Check (Optional)
(You decide if you want signals only when they align with HTF bias — fully customizable.)
- Synthetic Human Filter
(Blocks out low-probability setups that are too close to pivots — like a real discretionary trader would.)
- Volatility Adaptation System
(Customizable high/low volatility thresholds — Ares adjusts to your preferred market conditions.)
- Golden Entry Alerts
(Built-in alert system for 🌟 Golden Entries — so you never miss high-quality trades across multiple tickers.)
---
Every icon, label, and rating inside Ares comes with hover-over information —
explaining liquidity, Fib zones, entry scores, and more.
And with over 40 customizable settings ,
Ares works exactly how you want it to work.
Ares is a precision trading tool designed to help you identify high-probability opportunities based on advanced technical confluence.
However, trading always carries risk.
No indicator, not even Ares, can guarantee profitable outcomes.
Markets are dynamic, influenced by countless factors beyond pure technicals.
Always use proper risk management, confirm signals with your broader strategy, and never risk more than you can afford to lose.
Past performance is not indicative of future results.
Ares is a decision-support system — you are the final decision maker.
Use it intelligently, trade responsibly, and stay sharp.
Asia High/Low Break Alert (20:00-02:00 NY Time)An indicator that automaically alerts the Asia/Highs and Lows. Good for someone that wants to wake up in the middle of the night that wants to trade the Asia Sweep maximizing their sleep
Funding Rate Signal TableFunding Rate & Signal Table Indicator
Overview
The Funding Rate & Signal Table Indicator is a powerful trading tool designed to help cryptocurrency traders capitalize on funding rate dynamics. This indicator displays real-time funding rate data in a clear tabular format while generating actionable LONG and SHORT signals based on funding rate thresholds.
Key Features
Comprehensive Data Display
Real-time Funding Rate monitoring
Previous Funding Rate comparison
Difference calculation between rates
Time Remaining until next funding
Date and timestamp information
Exchange information (Binance)
Signal Generation System
Automated LONG signals when funding rate falls below user-defined threshold
Automated SHORT signals when funding rate rises above user-defined threshold
Optional difference threshold to filter for significant rate changes
Visual price level markers for entry points
Alerts on new signal generation
Customizable Settings
Adjustable funding rate calculation period
Customizable LONG and SHORT thresholds
Signal label size options (Small, Normal, Large)
Price level visualization toggle
Signal display toggle
How It Works
The indicator operates on a simple yet effective principle:
When funding rates become significantly negative (below threshold), a LONG signal is generated
When funding rates become significantly positive (above threshold), a SHORT signal is generated
Optional difference filtering ensures signals are only generated on meaningful rate changes
All signals are visually displayed on the chart with price information
FeraTrading Compression Flow v1The FeraTrading Compression Flow Indicator is an advanced trend analysis tool that integrates our proprietary Compression Indicator with a dynamic blend of Simple Moving Averages (SMA), Average True Range (ATR), and price action. This fusion aims to provide traders with a nuanced understanding of market trends by highlighting periods of price compression and expansion.
🔍 Key Features:
Dynamic Trend Visualization: The indicator plots adaptive lines on the chart that change color based on trend direction—green for anticipated uptrends and red for anticipated downtrends—offering immediate visual cues.
Compression Analysis: By incorporating our proprietary Compression Indicator, it identifies zones where price movements are constricted, often preceding significant breakouts. This feature assists traders in pinpointing potential entry and exit points.
Volatility-Adjusted Signals: The integration of ATR ensures that the indicator adapts to market volatility, providing more reliable signals during varying market conditions.
Customizable Parameters: Users can fine-tune the indicator settings to align with their trading strategies and preferred timeframes.
⚙️ Indicator Settings:
Input Multiplier: Adjusts the sensitivity of trend detection. A lower value (e.g., 0.01) makes the indicator more responsive to minor trend changes, while a higher value (up to 2) filters out minor fluctuations, focusing on more significant trends.
SMA Length: Determines the lookback period for the SMA component. While the plotted lines are influenced by SMA, they also factor in ATR and price movements, offering a more comprehensive trend analysis than a traditional SMA alone.
📊 Versatility:
This indicator is designed to be effective across various tickers and timeframes, making it a versatile addition to any trader's toolkit. Whether you're analyzing short-term movements or long-term trends, the FeraTrading Compression Flow Indicator provides valuable insights to the market.
Indicator Set Alex 1This script provides a set of indicators that can be used on the graph: 5 exponential moving averages and Bollinger Bands.
Through the settings menu, the user can choose which indicators to display.
Indicator Set Alex 1This script provides a set of indicators that can be used on the graph: 5 exponential moving averages and Bollinger Bands.
Through the settings menu, the user can choose which indicators to display.
[NORTH2025] AWESOME TREND KATCHERAwesome Trend Katcher is a comprehensive trading script that detects shifting trends, pinpoints potential entry/exit opportunities, and identifies pivotal price levels. This tool is designed for traders who want robust, multi-faceted analysis without juggling multiple indicators.
Key Features
Adaptive Trend Detection: Dynamically adjusts to market volatility to signal when momentum is shifting.
Precision Entry/Exit Signals: Highlights potential buy/sell setups with clear, customizable alerts.
Pivot-Based Support & Resistance: Automatically plots significant swing points to help you see key price levels at a glance.
Trend Coloring & Highlights: Visual cues make it easy to spot bullish or bearish conditions at any moment.
Instant Alerts: Get real-time notifications by email or on your phone; never miss a crucial move again.
Flexible Settings: Tweak period lengths, choose different calculation modes, and decide how signals are displayed—all in one place.
CryptoSamyEnglish
Tool designed to independently delimit market sessions, with the ability to integrate additional indicators such as VWAP and EMA for a more complete analysis.
This indicator complements the WVERDE strategy, focused on identifying high-probability breakouts through price action, volume, and market structure.
✅ Follow me and learn more about the strategy:
📺 YouTube : Crypto Samy
📣 Telegram : Crypto Samy Comunidad
Español
Herramienta para delimitar sesiones de mercado de forma independiente, con la posibilidad de integrar indicadores adicionales como VWAP y MME para un análisis más completo.
Este indicador complementa la estrategia WVERDE, enfocada en la identificación de rupturas de alta probabilidad mediante acción del precio, volumen y estructura de mercado.
✅ Sígueme y aprende más sobre la estrategia:
📺 YouTube : Crypto Samy
📣 Telegram : Crypto Samy Comunidad
Impulse Indicator New Capital FXThe Impulse Indicator is designed for traders who demand precision when identifying explosive market moves. This tool detects powerful short-term impulses by combining ATR-based volatility analysis with tactical price action patterns.
Key Features:
1. Dynamic Impulse Detection: Spots major price shifts based on a 5-bar momentum structure and ATR volatility filter.
2. Adaptive Volatility Filter: Filters out weak signals with a customizable ATR multiplier.
3. Cooling Period Logic: Reduces signal noise by enforcing a minimum bar spacing between impulses.
4. Clear Visual Signals: Plots "IMPULSE" labels directly on your chart for instant recognition.
How It Works:
The markets explode in a short-period of time, the indicator spots the move and plots a label, now if you're trading mean reversion pairs, you can look to go against the impulse, or if you want to catch trends you can use the indicator for potential continuation setups.
Customizable Settings:
ATR Multiplier (Best with 3,4,5)
Cooling Period (Standard is 5 bars, which is good)
ATR Length (The standard 14 period)