Swing T3 Ribbon with Dynamic Bandswing T3 Ribbon with Dynamic Bands
This indicator combines T3 moving averages with a dynamic Bollinger-style ribbon to highlight early trend changes and volatility-driven price moves.
Key Features:
T3 Ribbon: Fast T3 vs. Slow T3 shows trend direction; ribbon color is green for bullish, red for bearish.
Dynamic Bands: Bands fluctuate with recent price volatility, similar to Bollinger Bands, providing a visual guide for overbought/oversold areas.
Early Swing Markers:
E0 (Early Upswing): Price above top band while trend is temporarily bearish.
Ex (Early Downswing): Price below bottom band while trend is temporarily bullish.
Alerts:
Early upswing (E0)
Early downswing (Ex)
Price crossing the bottom (red) band from below.
Purpose:
Helps traders detect early trend reversals or price breakouts in the context of volatility.
Dynamic bands adapt to changing market conditions, giving a more responsive signal than fixed-width ribbons.
Indikator dan strategi
Small Caps - Range + Breakout (dernier seulement)//@version=5
indicator("Small Caps - Range + Breakout (dernier seulement)", overlay=true)
// -------------------
// Paramètres
// -------------------
lookback = input.int(50, "Période max du range (jours)")
minConsol = input.int(20, "Consolidation minimale (jours)")
volLen = input.int(20, "Période moyenne volume")
volMult = input.float(1.5, "Volume minimum (x moyenne)")
useRSI = input.bool(true, "Filtrer avec RSI > 55 ?")
rsiLength = input.int(14, "RSI période")
// -------------------
// Détection du Range
// -------------------
rangeHigh = ta.highest(high , lookback)
rangeLow = ta.lowest(low , lookback)
// Vérifier consolidation minimale
consolHigh = ta.highest(high , minConsol)
consolLow = ta.lowest(low , minConsol)
consolOk = (consolHigh <= rangeHigh) and (consolLow >= rangeLow)
// -------------------
// Conditions breakout
// -------------------
volMa = ta.sma(volume, volLen)
volOk = volume > volMult * volMa
rsi = ta.rsi(close, rsiLength)
rsiOk = useRSI ? rsi > 55 : true
breakoutUp = close > rangeHigh and volOk and rsiOk and consolOk
breakoutDown = close < rangeLow and volOk and rsiOk and consolOk
// -------------------
// Rectangle unique
// -------------------
var box rangeBox = na
if barstate.islast
if not na(rangeBox)
box.delete(rangeBox)
// Couleur par défaut (range gris)
rectColor = color.new(color.gray, 85)
borderCol = color.new(color.gray, 0)
// Modifier couleur si cassure
if breakoutUp
rectColor := color.new(color.green, 85)
borderCol := color.new(color.green, 0)
if breakoutDown
rectColor := color.new(color.red, 85)
borderCol := color.new(color.red, 0)
// Créer rectangle du range courant sur une seule ligne
rangeBox := box.new(left=bar_index - lookback, top=rangeHigh, right=bar_index, bottom=rangeLow, border_color=borderCol, border_width=1, bgcolor=rectColor)
// -------------------
// Flèches breakout
// -------------------
plotshape(breakoutUp, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.tiny)
plotshape(breakoutDown, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.tiny)
icreature RSI Divergence Indicator with Customizable OB/OS Spotsicreature RSI Divergence Indicator with Customizable OB/OS Spots
CVD Divergences (cdikici71 x tncylyv)CVD Divergence
Summary
This indicator brings the powerful and creative divergence detection logic from @cdikici71's popular "cd_RSI_Divergence_Cx" script to the world of volume analysis.
While RSI is a fantastic momentum tool, I personally choose to rely on volume as a primary source of truth. This script was born from the desire to see how true buying and selling pressure—measured by Cumulative Volume Delta (CVD)—diverges from price action. It takes the brilliant engine built by @cdikici71 and applies it to CVD, offering a unique look into market conviction.
What is Cumulative Volume Delta (CVD)?
CVD is a running total of volume that transacted at the ask price (buying) minus volume that transacted at the bid price (selling). In simple terms, it shows whether buyers or sellers have been more aggressive over a period. A rising CVD suggests net buying pressure, while a falling CVD suggests net selling pressure.
Core Features
• Divergence Engine by @cdikici71: The script uses the exact same two powerful methods for finding divergences as the original RSI version:
o Alignment with HTF Sweep: The default, cleaner method for finding high-probability divergences.
o All: A more sensitive method that finds all possible divergences.
• Anchored CVD Periods: You can choose to reset the CVD calculation on a Daily, Weekly, or Monthly basis to analyze buying and selling pressure within specific periods. Or, you can leave it on Continuous to see the all-time flow.
• Automatic Higher Timeframe (HTF) Alignment: To remove the guesswork, the "Auto-Align HTF" option will automatically select a logical higher timeframe for divergence analysis based on your current chart (e.g., 15m chart uses 4H for divergence, 1H chart uses 1D, etc.). You can also turn this off for full manual control.
• Fully Customizable Information Table: An on-screen table keeps you updated on the divergence status. You can easily adjust its Position and Size in the settings to fit your chart layout.
• Built-in Alerts: Alerts are configured for both Bullish and Bearish divergences to notify you as soon as they occur.
How to Use This Indicator
The principle is the same as any divergence strategy, but with the conviction of volume behind it.
• 🔴 Bearish Divergence: Price makes a Higher High, but the CVD makes a Lower High or an equal high. This suggests that the buying pressure is weakening and may not be strong enough to support the new price high.
• 🟢 Bullish Divergence: Price makes a Lower Low, but the CVD makes a Higher Low or an equal low. This suggests that selling pressure is exhausting and the market may be ready for a reversal.
Always use divergence signals as a confluence with your own analysis, support/resistance levels, and market structure.
Huge Thanks and Credit
This script would not exist without the brilliant and creative work of @cdikici71. The entire divergence detection engine, the visualization style, and the core logic are based on his original masterpiece, "cd_RSI_Divergence_Cx". I have simply adapted his framework to a different data source.
If you find this indicator useful, please go and show your support for his original work!
________________________________________
Disclaimer: This is a tool for analysis, not a financial advice signal service. Please use it responsibly as part of a complete trading strategy.
Smart Session Levels - Step 1 (NY Prep Lines)this indicator shows 3 vertical lines at 18:00, 00:00, 06:00 . For easier way to see Asian high Asian low London high and London low levels for preparation before trading at New York session.
Intraday Momentum for Volatile Stocks 29.09The strategy targets intraday momentum breakouts in volatile stocks when the broader market (Nifty) is in an uptrend. It enters long positions when stocks move significantly above their daily opening price with sufficient volume confirmation, then manages the trade using dynamic ATR-based stops and profit targets.
Entry Conditions
Price Momentum Filter: The stock must move at least 2.5% above its daily opening price, indicating strong bullish momentum. This percentage threshold is customizable and targets gap-up scenarios or strong intraday breakouts.
Volume Confirmation: Daily cumulative volume must exceed the 20-day average volume, ensuring institutional participation and genuine momentum. This prevents false breakouts on low volume.
Market Regime Filter: The Nifty index must be trading above its 50-day SMA, indicating a favorable market environment for momentum trades. This macro filter helps avoid trades during bearish market conditions.
Money Flow Index: MFI must be above 50, confirming buying pressure and positive money flow into the stock. This adds another layer of momentum confirmation.
Time Restriction: Trades are only initiated before 3:00 PM to ensure sufficient time for position management and avoid end-of-day volatility.
Exit Management
ATR Trailing Stop Loss: Uses a 3x ATR multiplier for dynamic stop-loss placement that trails higher highs, protecting profits while giving trades room to breathe. The trailing mechanism locks in gains as the stock moves favorably.
Profit Target: Set at 4x ATR above the entry price, providing a favorable risk-reward ratio based on the stock's volatility characteristics. This adaptive approach adjusts targets based on individual stock behavior.
Position Reset: Both stops and targets reset when not in a position, ensuring fresh calculations for each new trade.
Key Strengths
Volatility Adaptation: The ATR-based approach automatically adjusts risk parameters to match current market volatility levels. Higher volatility stocks get wider stops, while calmer stocks get tighter management.
Multi-Timeframe Filtering: Combines intraday price action with daily volume patterns and market regime analysis for robust signal generation.
Risk Management Focus: The strategy prioritizes capital preservation through systematic stop-loss placement and position sizing considerations.
Considerations for NSE Trading
This strategy appears well-suited for NSE intraday momentum trading, particularly for mid-cap and small-cap stocks that exhibit high volatility. The Nifty filter helps align trades with broader market sentiment, which is crucial in the Indian market context where sectoral and index movements strongly influence individual stocks.
The 2.5% threshold above open price is appropriate for volatile NSE stocks, though traders might consider adjusting this parameter based on the specific stocks being traded. The strategy's emphasis on volume confirmation is particularly valuable in the NSE environment where retail participation can create misleading price movements without institutional backin
The David Paul Way // v1This is the first version of my attempt at creating one of David Paul's trading methodologies. My ultimate goal for this is to encapsulate his way of approaching the market in a single strategy script.
The general objectives consist of the following:
1. place entries where the masses place there stops
2. Trail my stop losses on big positions as effectively as possible
3. Cut the losers off Quickly
4. Add to every winning trade
5. trade equity's that are growing its earnings rapidly and aggressively.
6. wait for when the broader market is also trending upwards
7. Create an environment of positive expectancy
8. Exploit Institutional Trading Behavior
The "Long" Condition:
David Paul emphasized how price and volume have a very important correlation especially on the stock market, I decided to combine a rise in volume over a period off 89 bars with the classic 21, 55, and 89 period moving average. When the closing price crosses the highest of the three moving averages , in addition to a rise in volume , A signal to enter has formed.
Exiting the Trend:
When price closes below the highest moving average , its a sign that the trends encountering a decrease in support, acceleration , or momentum. It will cause an exit in the current position.
Stop Losses:
unfortunately I am still figuring out a good solution for an actual consistent and intelligent implementation of a stop loss to go with the long condition. feel free to make one for yourself in the mean time, I will eventually publish a refined version with more advanced: 1. order types, 2.trailing stop loss logic , 3.plotting visuals , 4. user inputs for making your own versions , 5. table with metrics and statistic display.
Visuals:
as of now the 21,55, and 89 period moving average (and the average of the 3 moving averages) are plotted and will turn blue when the closing price is above them. Otherwise they remain grey if above the closing price.
"I Fade the long term trend for the short term trend." - David Paul
I would like to thank @LOKEN94 for the basis of this strategy, check out his indicator if you need more of a visual guide for tinkering with this strategy.
EMA 20/50 Crossover SignalsIndicator when the ema20 cross to ema50 up, this is long signal
while when the ema20 cross to ema50 down this is short signal
Pivot Points + VWAP + EMA200 + Fixed Range VP (POC)Indicator description — Pivot Points + VWAP + EMA200 + Fixed Range VP (POC)
Short summary
A composite TradingView indicator (Pine v6) that overlays classic pivot points, session/period VWAP with optional deviation bands, an EMA-200 trend filter, and a fixed-range volume profile with Value Area and Point Of Control (POC). Designed to give a single view of key horizontal levels (pivots, VWAP bands, POC) and trend context to speed intraday and swing trade decisions.
Key features
Multiple Pivot types & anchor periods — Traditional, Fibonacci, Woodie, Classic, DM, Camarilla; anchors from Auto/Daily up to multi-year. Option to calculate from daily values on intraday charts.
Pivot drawing & labels — Draws historical pivot levels with configurable colors, line width, label position (Left/Right) and how many pivot periods to keep. Automatically trims older pivot sets beyond the configured limit.
VWAP + deviation bands — VWAP anchored to Session / Week / Month / Quarter / Year (plus Earnings/Dividends/Splits). Optional bands by Standard Deviation or Percentage (up to 3 multipliers). Option to hide on daily/weekly/monthly (DWM) charts.
EMA-200 trend filter — Plotted as a clear orange line; use to identify major trend bias.
Fixed-range Volume Profile (VP) with POC — Builds a fixed lookback VP over bbars bars, shows up/down volume boxes, value area (percent configurable) and draws the POC line + optional POC label. VP is rendered as boxed histogram with configurable rows and colors.
Performance/robustness safeguards — Handles multi-timeframe pivots, provides clear runtime errors when intraday data is insufficient for requested pivot timeframe, and caps the number of drawn objects to avoid overrun.
Inputs & what they do (high level)
Pivot Settings
Type: pivot formula (Traditional, Fibonacci, etc.).
Pivots Timeframe: Auto / Daily / Weekly / Monthly / ... multi-year.
Number of Pivots Back: how many historical pivot periods to keep.
Use Daily-based Values: when enabled, pivots always use daily OHLC (useful on intraday charts).
Show Labels / Show Prices / Labels Position / Line Width — visual tweaks for pivot lines and labels.
Pivot Levels / Colors — Toggle visibility and color for P, R1..R5, S1..S5 (levels shown depend on pivot type).
VWAP Settings
Hide VWAP on 1D or Above: hides VWAP on daily+ charts.
Anchor Period: Session / Week / Month / Quarter / Year / Decade / Century / Earnings / Dividends / Splits.
VWAP Source (default hlc3) and Offset.
Bands Settings
Bands Mode: Standard Deviation or Percentage.
Multipliers: up to three bands (1×, 2×, 3× by default); toggle visible bands.
Volume Profile (VP)
VP Lookback Bars (bbars): number of bars included in fixed range.
VP Rows (cnum): vertical resolution (number of price bins).
Value Area %: e.g., 70%.
POC Color / Width, Up/Down colors and Show POC Label.
How to use it (practical tips)
Trend filter: use EMA-200 — price above EMA200 = bullish bias, below = bearish bias.
VWAP confluence: intraday trades near VWAP or VWAP bands often have higher confluence. Use the selected anchor (Session for intraday, Week/Month for swing).
Pivot levels for targets & S/Ls: pivot levels (P, R1/R2, S1/S2…) make quick, rule-based targets and stops. Combine pivot + VWAP/POC for stronger S/R.
Volume Profile & POC: POC = single price with highest traded volume in the range — acts as a magnet/support/resistance. Use value area (VA) boundaries to spot acceptance/rejection.
Multi timeframe: choose pivot anchor appropriate to your horizon (Session/Daily for intraday scalps; Weekly/Monthly for swing). If you lack intraday history, enable “Use Daily-based Values” to avoid pivot errors.
Performance note: the fixed-range VP is calculated only on the last bar (barstate.islast) and draws boxes/POC accordingly — the VP will represent the configured lookback ending at the latest bar.
Limitations & gotchas
Intraday pivot calculation needs sufficient history. If you request intraday pivots but the chart lacks enough bars, the script throws a runtime error with guidance.
VP is built only on the last bar (to keep resource usage reasonable). That means the VP boxes and POC are recalculated for the latest lookback window; historical VP boxes are removed each update.
Object count: indicator creates many graphical objects (lines, labels, boxes). The script includes caps and cleanup, but very long backtests or extremely small pivot intervals may still use many objects — adjust “Number of Pivots Back” and VP lookback to manage.
Repainting considerations: pivots use request.security(..., lookahead=barmerge.lookahead_on) for daily-based option and time synchronization; be mindful when using historical bar-by-bar automation or backtesting — visual levels are intended for analysis and manual decision-making rather than automated entry triggers without further validation.
Compatibility & installation
Pine Script version: v6. Use on TradingView.
Add to chart: Copy the whole script into TradingView’s Pine editor, save and add to chart. Ensure sufficient chart history for selected pivot/VP settings.
Suggested default workflow (example)
Set Pivot Anchor = Session, Type = Traditional, Use Daily-based Values = off for true intraday pivots.
VWAP Anchor = Session, show Band #1 at 1× for quick mean-reversion zones.
EMA-200 visible (default) to filter trade direction.
VP Lookback Bars ~ 150, Value Area 70% to see a 150-bar market profile and POC.
Trade entries: look for price reaction (rejection / engulfing / volume spike) at pivot/R1/VWAP/POC aligned with EMA-200 trend.
Short blurb (for scripts list / marketplace)
Pivot Points + VWAP + EMA200 + Fixed Range VP (POC) — a compact, all-in-one overlay that combines classic pivot levels, session-anchored VWAP with deviation bands, a 200-period EMA trend filter, and a fixed-range volume profile with Value Area and POC. Built for intraday and swing traders who want consolidated horizontal structure and volume context on one chart.
Weather Score Badge — Lite (0–10, emoji, sparkline)One-liner
Tiny last-bar badge that turns multi-TF momentum into a 0–10 “weather” score with emoji, a trend word, and a mini sparkline.
What it does
Shows a score (0–10) summarizing momentum across multiple timeframes.
Adds a friendly weather word + emoji and a trend label: Uptrend / Chop / Downtrend.
Draws a sparkline of recent scores (▁▂▃▄▅▆▇) so you can feel momentum improving or fading at a glance.
Designed as a lightweight overlay badge on the latest bar (moves as the bar updates).
How the score is built (default logic)
Weights add up and are capped at 10 (all thresholds are inputs):
RSI(1h) ≥ buy-ready → +3
RSI(4h) ≥ buy-ready → +2
Ramp A (5m) = RSI(2) − RSI(14) ≥ trigger → +2
Ramp B (15m) = RSI(2) − RSI(14) ≥ trigger → +2
MACD(1h) > signal & histogram > 0 → +1
MACD(4h) > signal & histogram > 0 → +1
Weather buckets
0–2 → Rainy 🌧️
>2–4 → Storm Clearing 🌫️
>4–6 → Clearing Skies ⛅
>6–8 → Sunny ☀️
>8–10 → Blue Sky 🌈
Trend word
Uptrend if RSI(1h) ≥ 55 and RSI(4h) ≥ 52 and MACD(1h or 4h) rising
Chop / Basing if RSI(1h) ≥ 45 or Ramp-B > 0
Downtrend otherwise
Inputs you can tweak
Timeframes for ramps (5m/15m) and higher-TF momentum (1h/4h)
RSI lengths (2 & 14), ramp triggers, “buy-ready” RSI levels
Emoji on/off, sparkline length, vertical gap from price
Alerts included
One alert per weather bucket so you can ping on Rainy, Sunny, Blue Sky, etc.
How to use
Treat it as context, not signals: it helps you quickly judge quality of wind behind your setups.
Pair with your own entry/exit rules, stops, and risk management.
On fast timeframes, watch the sparkline: a rising series of blocks often precedes better follow-through.
Notes & limitations
Uses MTF data; values finalize on higher-TF bar close. Intra-bar they can update (standard MTF behavior).
The badge shows on the latest bar only to stay unobtrusive.
Works on crypto, FX, stocks; thresholds may need tuning per asset/TF.
Credits
Built by @hacklenajee with GPT-5 Thinking (ChatGPT).
For education/research only. Not financial advice.
Coach Box — Lite (Bottom-Right Guide) TOne-line tagline
“A tiny bottom-right guide that translates RSI/ramps momentum into clear actions: Go Outside / Go Inside / Hold / Wait.”
Long description (Public Library)
Coach Box — Lite is a minimal coaching panel that turns common momentum context (RSI, short-term “ramps”, basic regime) into a plain-English action with cautions.
What you get
Action: Go Outside (consider enter), Go Inside (consider exit/risk), Hold, or Wait
Why: one-line explanation (e.g., “clear setup; let it breathe.”)
Caution: quick risk flags (false-clear pressure, ramps misaligned, below EMA)
Context: score 0–10 with weather words (Rainy → Blue Sky), trend word, tiny regime vote
Inputs (simple)
Timeframes: 5m & 15m “ramps” (RSI2–RSI14), 1h & 4h RSI/MACD
Thresholds: ramp A/B triggers, RSI(1h/4h) “buy-ready”, EMA length
Emoji toggle for the weather text
How to read
Go Outside → momentum alignment is decent; if you trade it, size sanely and let it breathe.
Go Inside → risk is elevated (Rainy, ramps fail + below EMA, etc.).
Hold → already in; trail smart and watch RSI(1h)/ramps.
Wait → let setup cook; patience ≠ inaction.
Best practices
Treat this as coaching context, not an auto-trader. Pair with your entry/exit rules, stops, and R/R.
Test on your market & timeframe; thresholds are tunable.
Credits
Built by @hacklenajee with GPT-5 Thinking (ChatGPT).
Disclaimer
For education/research. Not financial advice. Markets carry risk.
BB + Keltner Squeeze (con SL)BB + Keltner Squeeze with Dynamic SL
This indicator combines Bollinger Bands (2σ and optional 3σ) with Keltner Channels to detect phases of volatility compression (squeeze) and their release (expansion).
Squeeze ON (orange dot): Bollinger Bands are inside the Keltner Channel → low volatility / market compression.
Release (green triangle): Bollinger Bands break outside the Keltner Channel → volatility expansion.
Orange background: visually highlights squeeze phases.
Dynamic Stop Loss options:
KC Mode: stop at the opposite Keltner band (wider, good for trend following).
ATRlike Mode: stop based on a multiple of the range (tighter, good for scalping or short swings).
Intended use:
Identify moments when the market is “building energy” and trade breakouts after a release.
Adjust stop losses dynamically according to volatility.
Note: This is not a standalone trading system. It works best when combined with trend confirmation tools (EMA, MACD, market structure, etc.).
Adaptive HMA SignalsAdaptive HMA Signals
This indicator pairs nicely with the Contrarian 100 MA and can be located here:
Overview
The "Adaptive HMA Signals" indicator is a sophisticated technical analysis tool designed for traders aiming to capture trend changes with precision. By leveraging Hull Moving Averages (HMAs) that adapt dynamically to market conditions (volatility or volume), this indicator generates actionable buy and sell signals based on price interactions with adaptive HMAs and slope analysis. Optimized for daily charts, it is highly customizable and suitable for trading forex, stocks, cryptocurrencies, or other assets. The indicator is ideal for swing traders and trend followers seeking to time entries and exits effectively.
How It Works
The indicator uses two adaptive HMAs—a primary HMA and a minor HMA—whose periods adjust dynamically based on user-selected market conditions (volatility via ATR or volume via RSI). It calculates the slope of the primary HMA to identify trend strength and generates exit signals when the price crosses the minor HMA under specific slope conditions. Signals are plotted as circles above or below the price, with inverted colors (white for buy, blue for sell) to enhance visibility on any chart background.
Key Components
Adaptive HMAs: Two HMAs (primary and minor) with dynamic periods that adjust based on volatility (ATR-based) or volume (RSI-based) conditions. Periods range between user-defined minimum and maximum values, adapting by a fixed percentage (3.141%).
Slope Analysis: Calculates the slope of the primary HMA over a 34-bar period to gauge trend direction and strength, normalized using market range data.
Signal Logic: Generates buy signals (white circles) when the price falls below the minor HMA with a flat or declining slope (indicating a potential trend reversal) and sell signals (blue circles) when the price rises above the minor HMA with a flat or rising slope.
Signal Visualization: Plots signals at an offset based on ATR for clarity, using semi-transparent colors to avoid chart clutter.
Mathematical Concepts
Dynamic Period Adjustment:
Primary HMA period adjusts between minLength (default: 144) and maxLength (default: 200).
Minor HMA period adjusts between minorMin (default: 55) and minorMax (default: 89).
Periods decrease by 3.141% under high volatility/volume and increase otherwise.
HMA Calculation:
Uses the Hull Moving Average formula: WMA(2 * WMA(src, length/2) - WMA(src, length), sqrt(length)).
Provides a smoother, faster-responding moving average compared to traditional MAs.
Slope Calculation:
Computes the slope of the primary HMA using a 34-bar period, normalized by the market range (highest high - lowest low over 34 bars).
Slope angle is converted to degrees using arccosine for intuitive trend strength interpretation.
Signal Conditions:
Buy: Slope ≥ 17° (flat or rising), price < minor HMA, low volatility/volume.
Sell: Slope ≤ -17° (flat or declining), price > minor HMA, low volatility/volume.
Signals are triggered only on confirmed bars to avoid repainting.
Entry and Exit Rules
Buy Signal (White Circle): Triggered when the price crosses below the minor HMA, the slope of the primary HMA is flat or rising (≥17°), and volatility/volume is low. The signal appears as a white circle above the price bar, offset by 0.72 * ATR(5).
Sell Signal (Blue Circle): Triggered when the price crosses above the minor HMA, the slope of the primary HMA is flat or declining (≤-17°), and volatility/volume is low. The signal appears as a blue circle below the price bar, offset by 0.72 * ATR(5).
Exit Rules: Exit a buy position on a sell signal and vice versa. Combine with other tools (e.g., support/resistance, RSI) for additional confirmation. Always apply proper risk management.
Recommended Usage
The "Adaptive HMA Signals" indicator is optimized for daily charts but can be adapted to other timeframes (e.g., 1H, 4H) with adjustments to period lengths. It performs best in trending or range-bound markets with clear reversal points. Traders should:
Backtest the indicator on their chosen asset and timeframe to validate signal reliability.
Combine with other technical tools (e.g., trendlines, Fibonacci retracements) for stronger trade setups.
Adjust minLength, maxLength, minorMin, and minorMax based on market volatility and timeframe.
Use the Charger input to toggle between volatility (ATR) and volume (RSI) adaptation for optimal performance in specific market conditions.
Customization Options
Source: Choose the price source (default: close).
Show Signals: Toggle visibility of buy/sell signals (default: true).
Charger: Select adaptation trigger—Volatility (ATR-based) or Volume (RSI-based) (default: Volatility).
Main HMA Periods: Set minimum (default: 144) and maximum (default: 200) periods for the primary HMA.
Minor HMA Periods: Set minimum (default: 55) and maximum (default: 89) periods for the minor HMA.
Slope Period: Fixed at 34 bars for slope calculation, adjustable via code if needed.
Why Use This Indicator?
The "Adaptive HMA Signals" indicator combines the responsiveness of HMAs with dynamic adaptation to market conditions, offering a robust tool for identifying trend reversals. Its clear visual signals, customizable periods, and adaptive logic make it versatile for various markets and trading styles. Whether you’re a beginner or an experienced trader, this indicator enhances your ability to time entries and exits with precision.
Tips for Users
Test the indicator thoroughly on your chosen market and timeframe to optimize settings (e.g., adjust period lengths for non-daily charts).
Use in conjunction with price action or other indicators (e.g., RSI, MACD) for stronger trade confirmation.
Monitor volatility/volume conditions to ensure the Charger setting aligns with market dynamics.
Ensure your chart timeframe aligns with the selected period lengths for accurate signal generation.
Apply strict risk management to protect against false signals in choppy markets.
Happy trading with the Adaptive HMA Signals indicator! Share your feedback and strategies in the TradingView community!
Bollinger Bands with 6 StdDevBollinger Bands indicator designed to display six customizable levels of standard deviation around a chosen moving average. The purpose of this indicator is to help traders identify dynamic price levels where the market might find support, resistance, or volatility extremes.
Timeframe: Default is daily, but it can be changed by the user.
Inputs
Length (default 20): The lookback period for calculating the moving average and standard deviation.
MA Type: User can choose between SMA, EMA, SMMA (RMA), WMA, or VWMA to define the Bollinger Band’s central line (basis).
Source: The input price (default is closing price).
Offset: Allows shifting the entire indicator forward or backward on the chart.
Adjustable Standard Deviations
The script allows up to six separate multipliers for the standard deviation:
0.5, 1.0, 1.5, 2.0, 2.5, and 3.0 (all customizable).
This makes the indicator more flexible than standard Bollinger Bands, which usually use just ±2 standard deviations. With multiple levels, traders can observe how price reacts at minor vs. major volatility zones.
TV Fib Levels — Webhook for python trading botsneeded for python trading bots that link to TV to use the fibs
MACD with RSI Fibonacci coloredAs title, it is a MACD that contain on right a RSI value.
The text color of RSI is changed accordingly with Fibonacci thresholds (green - red), giving the information if enter or not to a long (or short) order.
EMA HI/LO Cloud📌 EMA High/Low Buy-Sell Labels Indicator
This indicator generates simple Buy and Sell signals based on price interaction with two dynamic levels:
EMA High → Exponential Moving Average calculated from candle highs.
EMA Low → Exponential Moving Average calculated from candle lows.
🔑 How it Works
A Buy signal prints when the closing price crosses above the EMA High.
A Sell signal prints when the closing price crosses below the EMA Low.
Signals are marked directly on the chart with customizable labels — you can change the shape, size, and colors of the Buy and Sell labels to match your trading style.
The indicator does not plot the EMAs, keeping the chart clean and focused only on the entry/exit labels.
⚡ Use Case
Helps traders quickly identify potential trend breakouts (price strength above EMA High) or trend breakdowns (price weakness below EMA Low).
Works on any timeframe and any market (stocks, forex, crypto, futures, etc.).
Can be used standalone or combined with other indicators for confirmation.
🎯 Best For
Traders who want minimalist chart signals without clutter.
Trend-following strategies where confirmation of momentum is key.
Entry/Exit marking without needing to constantly watch EMA bands.
A4 By Gadirov TLS Aggressive EURUSD 15m for binaryA4 By Gadirov TLS Aggressive EURUSD 15m for binary
RSI - 2xRSI*2 by AZly is a dual Relative Strength Index (RSI) tool with custom timeframes and moving average smoothing.
Plots two RSIs side by side (short-term and medium/long-term).
Includes overbought/oversold zones, extreme levels, and gradient fills for better visualization.
Supports multiple smoothing types (SMA, EMA, WMA, VWMA, SMMA, HMA).
Helps identify momentum shifts, divergences, and trend confirmation across different time horizons.
Perfect for traders who want a more detailed view of market momentum than a standard RSI.
Fibonacci Retracement Levels📘 User Guide & Detailed Explanation
📌 Overview
This indicator automatically plots Fibonacci retracement levels on your chart based on the highest high and lowest low within a chosen lookback period. It helps traders quickly identify potential support and resistance zones derived from Fibonacci ratios.
Unlike manual Fibonacci drawing tools, this script continuously updates the levels as new candles form, saving time and ensuring consistency.
⚙️ Inputs & Settings
Show Fibonacci Retracement (true/false)
Toggle the Fibonacci levels on or off.
Fib Lookback Range (bars)
Defines how many past candles are used to find the swing high and swing low.
Example: If set to 100, the indicator scans the last 100 bars for the highest high and lowest low, then plots the retracement levels between those two points.
Fib Levels to Show
All → Displays all common retracement levels (0%, 23.6%, 38.2%, 50%, 61.8%, 78.6%, 100%).
Main only → Displays only the key levels (38.2%, 50%, 61.8%) with thicker lines for emphasis.
None → Hides all Fibonacci levels (useful if you just want to see high/low markers).
📊 What Appears on the Chart
Horizontal Fib Lines:
The retracement levels are drawn across the chart.
38.2% (green), 50% (orange), 61.8% (red) → Main Fibonacci levels that often act as strong support/resistance.
Other levels (0%, 23.6%, 78.6%, 100%) → Optional additional retracements.
Range High Marker (red triangle up):
Marks the highest high within the lookback range.
Range Low Marker (green triangle down):
Marks the lowest low within the lookback range.
🛠 How to Use It
Identify Swing Points Automatically
No need to manually draw retracements. The script automatically picks the highest and lowest points in the selected range.
Trade Reversals & Pullbacks
Buyers often look for price to bounce near 38.2% or 61.8% retracement levels.
Sellers often target retracements during rallies.
Trend Continuation
If price breaks through a level and holds, the next Fibonacci level becomes the next target zone.
Combine with Other Tools
Works best when combined with:
Support/Resistance zones
Candlestick patterns
Trend indicators (EMA, SMA, MACD)
📈 Example Use Cases
In an uptrend, use the indicator to find pullback entries at 38.2%–61.8% retracements.
In a downtrend, watch for rejection at retracement levels as potential continuation signals.
On range-bound markets, Fibonacci levels often line up with key support/resistance.
⚠️ Notes & Limitations
Fibonacci levels are not guaranteed reversal points — they are probability-based support/resistance areas.
The lookback range setting is crucial. Too short = noisy signals, too long = levels may not reflect the most recent swing.
Should always be used with other confirmation tools (volume, trend analysis, candlestick structure).
Multi-Timeframe MACD Score (Customizable)this is a momentum based indicator which tells us the momentum about the direction.