Indicateurs et stratégies
Supertrend DashboardOverview
This dashboard is a multi-timeframe technical indicator dashboard based on Supertrend. It combines:
Trend detection via Supertrend
Momentum via RSI and OBV (volume)
Volatility via a basic candle-based metric (bs)
Trend strength via ADX
Multi-timeframe analysis to see whether the trend is bullish across different timeframes
It then displays this info in a table on the chart with colors for quick visual interpretation.
2️⃣ Inputs
Dashboard settings:
enableDashboard: Toggle the dashboard on/off
locationDashboard: Where the table appears (Top right, Bottom left, etc.)
sizeDashboard: Text size in the table
strategyName: Custom name for the strategy
Indicator settings:
factor (Supertrend factor): Controls how far the Supertrend lines are from price
atrLength: ATR period for Supertrend calculation
rsiLength: Period for RSI calculation
Visual settings:
colorBackground, colorFrame, colorBorder: Control dashboard style
3️⃣ Core Calculations
a) Supertrend
Supertrend is a trend-following indicator that generates bullish or bearish signals.
Logic:
Compute ATR (atr = ta.atr(atrLength))
Compute preliminary bands:
upperBand = src + factor * atr
lowerBand = src - factor * atr
Smooth bands to avoid false flips:
lowerBand := lowerBand > prevLower or close < prevLower ? lowerBand : prevLower
upperBand := upperBand < prevUpper or close > prevUpper ? upperBand : prevUpper
Determine direction (bullish / bearish):
dir = 1 → bullish
dir = -1 → bearish
Supertrend line = lowerBand if bullish, upperBand if bearish
Output:
st → line to plot
bull → boolean (true = bullish)
b) Buy / Sell Trigger
Logic:
bull = ta.crossover(close, supertrend) → close crosses above Supertrend → buy signal
bear = ta.crossunder(close, supertrend) → close crosses below Supertrend → sell signal
trigger → checks which signal was most recent:
trigger = ta.barssince(bull) < ta.barssince(bear) ? 1 : 0
1 → Buy
0 → Sell
c) RSI (Momentum)
rsi = ta.rsi(close, rsiLength)
Logic:
RSI > 50 → bullish
RSI < 50 → bearish
d) OBV / Volume Trend (vosc)
OBV tracks whether volume is pushing price up or down.
Manual calculation (safe for all Pine versions):
obv = ta.cum( math.sign( nz(ta.change(close), 0) ) * volume )
vosc = obv - ta.ema(obv, 20)
Logic:
vosc > 0 → bullish
vosc < 0 → bearish
e) Volatility (bs)
Measures how “volatile” the current candle is:
bs = ta.ema(math.abs((open - close) / math.max(high - low, syminfo.mintick) * 100), 3)
Higher % → stronger candle moves
Displayed on dashboard as a number
f) ADX (Trend Strength)
= ta.dmi(14, 14)
Logic:
adx > 20 → Trending
adx < 20 → Ranging
g) Multi-Timeframe Supertrend
Timeframes: 1m, 3m, 5m, 10m, 15m, 30m, 1H, 2H, 4H, 12H, 1D
Logic:
for tf in timeframes
= request.security(syminfo.tickerid, tf, f_supertrend(ohlc4, factor, atrLength))
array.push(tf_bulls, bull_tf ? 1.0 : 0.0)
bull_tf ? 1.0 : 0.0 → converts boolean to number
Then we calculate user rating:
userRating = (sum of bullish timeframes / total timeframes) * 10
0 → Strong Sell, 10 → Strong Buy
4️⃣ Dashboard Table Layout
Row Column 0 (Label) Column 1 (Value)
0 Strategy strategyName
1 Technical Rating textFromRating(userRating) (color-coded)
2 Current Signal Buy / Sell (based on last Supertrend crossover)
3 Current Trend Bullish / Bearish (based on Supertrend)
4 Trend Strength bs %
5 Volume vosc → Bullish/Bearish
6 Volatility adx → Trending/Ranging
7 Momentum RSI → Bullish/Bearish
8 Timeframe Trends 📶 Merged cell
9-19 1m → Daily Bullish/Bearish for each timeframe (green/red)
5️⃣ Color Logic
Green shades → bullish / trending / buy
Red / orange → bearish / weak / sell
Yellow → neutral / ranging
Example:
dashboard_cell_bg(1, 1, colorFromRating(userRating))
dashboard_cell_bg(1, 2, trigger ? color.green : color.red)
dashboard_cell_bg(1, 3, superBull ? color.green : color.red)
Makes the dashboard visually intuitive
6️⃣ Key Logic Flow
Calculate Supertrend on current timeframe
Detect buy/sell triggers based on crossover
Calculate RSI, OBV, Volatility, ADX
Request Supertrend on multiple timeframes → convert to 1/0
Compute user rating (percentage of bullish timeframes)
Populate dashboard table with colors and values
✅ The result: You get a compact, fast, multi-timeframe trend dashboard that shows:
Current signal (Buy/Sell)
Current trend (Bullish/Bearish)
Momentum, volatility, and volume cues
Trend across multiple timeframes
Overall technical rating
It’s essentially a full trend-strength scanner directly on your chart.
SatoshiFrame Fibonacci Golden CloudGolden Fibonacci Cloud
This indicator highlights key support and resistance zones using Fibonacci levels, visualized as golden clouds on the chart. Adjustable colors, transparency, and period make it perfect for professional technical analysis.
Auto Fibonacci levels: 0.236, 0.382, 0.5, 0.618, 0.786
Two golden clouds marking important zones
Clear and fixed visuals across all timeframes
RSI + Stoch + Bollinger — Tableau compact (coin sup. droit)RSI + Stoch + Bollinger — Tableau compact (coin sup. droit)
童貞2_MACDUp and down arrows will appear to let you know which way to place it. It is important to be able to analyze the chart before using this indicator. We recommend using our homemade MACD at 15 minutes.
Trendstone No-Trade ZoneUse the Trendstone No-Trade Zone as a gatekeeper: whenever price is inside or even kissing the shaded ribbon, you stand down, no new entries. Treat a clean close outside the ribbon as "conditions are acceptable", not as a signal.
Your own setup still decides entries and exits. If you want the zone to react faster to shifts, lower the Multiplier ; if you want it steadier and harder to penetrate, raise the Multiplier .
Flip Use Aggressive Zero-Lag Profile on when you’re working short horizons and need earlier reads; turn it off when you prefer a calmer, more selective filter.
Ribbon-lines are hidden by default. You can set your preferred color/opacity in the Style panel.
Simple Pivot Zones (Error-free) — v11. Core Idea
The indicator we built is a “pivot-based zone detector with breakout signals.”
It does three things:
1. Finds important swing highs and swing lows in price (pivots).
2. Creates support and resistance zones around those pivots using volatility (ATR).
3. Watches price action to see if those zones get broken, then gives signals.
________________________________________
2. What is a Pivot?
A pivot high happens when the price makes a local peak — a bar is higher than the bars around it.
A pivot low happens when the price makes a local dip — a bar is lower than the bars around it.
These are natural turning points in the market, showing where buyers or sellers had strong control temporarily. Traders often use them to draw support (pivot lows) and resistance (pivot highs).
________________________________________
3. Why Use ATR for Zones?
ATR (Average True Range) measures the average volatility of a market. Instead of drawing just a flat line at the pivot, we create a zone above and below it, sized according to ATR.
Example:
• If ATR is 20 points and zone size is 0.5, then the zone extends 10 points above and below the pivot level.
This turns thin “lines” into thicker areas of interest. Real markets don’t respect razor-thin levels, but zones are more realistic.
________________________________________
4. How Support & Resistance Zones Work
• Resistance zones are created at pivot highs. They mark where sellers were strong before.
• Support zones are created at pivot lows. They mark where buyers were strong before.
Over time, these zones extend forward until the price interacts with them.
________________________________________
5. Breakout Detection
The indicator checks whether the price closes beyond the last pivot high or low:
• If price closes above the last pivot high, it means buyers have broken resistance.
• If price closes below the last pivot low, it means sellers have broken support.
These moments are significant because they often trigger trend continuation.
________________________________________
6. Parameters It Uses
1. Pivot Length – how many bars to look back and forward to confirm a pivot. A higher length makes pivots less frequent but stronger.
2. ATR Length and Multiplier – defines the size of the zones (wider zones in more volatile markets).
3. Max Zones to Keep – avoids clutter by keeping only the most recent zones.
4. Colors & Styling – helps traders visually separate bullish and bearish zones.
________________________________________
7. How It Helps Traders
• Visual clarity: Instead of guessing support and resistance, the chart automatically highlights them.
• Dynamic adjustment: Zones adapt to volatility using ATR, making them useful in both calm and volatile markets.
• Breakout signals: Traders get notified when price actually breaks key levels, instead of reacting late.
• Cleaner charts: Instead of dozens of hand-drawn lines, the tool manages zones for you, deleting old ones.
________________________________________
8. The Logic in One Sentence
It finds important swing highs and lows, turns them into support/resistance zones scaled by volatility, and alerts you when the market breaks through them.
________________________________________
👉 In practice, this helps traders spot where the market is likely to bounce or break, and gives a framework to plan trades — for example, buying on bullish breakouts or selling on bearish breakouts.
________________________________________
DashBoard 2.3.1📌 Indicator Name:
DashBoard 2.3 – Smart Visual Market Overlay
📋 Description:
DashBoard 2.3 is a clean, efficient, and highly informative market overlay, designed to give you real-time context directly on your chart — without distractions. Whether you're swing trading or investing long-term, this tool keeps critical market data at your fingertips.
🔍 Key Features:
Symbol + Timeframe + Market Cap
Shows the current ticker and timeframe, optionally with real-time market cap.
ATR 14 with Volatility Signal
Displays ATR with color-coded risk levels:
🟢 Low
🟡 Moderate
🔴 High
⚫️ Extreme
You can choose between Daily ATR or timeframe-based ATR (auto-adjusted to chart resolution).
Adaptive Labeling
The ATR label updates to reflect the resolution:
ATR 14d (daily)
ATR 14W (weekly)
ATR 14H (hourly), etc.
Moving Average Tracker
Instantly shows whether price is above or below your selected moving average (e.g., 150 MA), with green/red indication.
Earnings Countdown
Clearly shows how many days remain until the next earnings report.
Industry & Sector Info (optional)
Useful for thematic or sector-based trading strategies.
Fully Customizable UI
Choose positioning, padding, font size, and which data to show. Designed for minimalism and clarity.
✅ Smart Logic:
Color dots appear only in relevant conditions (e.g., ATR color signals shown only on daily when enabled).
ATR display automatically reflects your time frame, if selected.
Clean chart integration – the overlay sits quietly in a corner, enhancing your analysis without intruding.
🧠 Ideal for:
Swing traders, position traders, and investors who want fast, high-impact insights directly from the chart.
Anyone looking for a compact, beautiful, and informative dashboard while they trade.
Alerta de toque de la 200-Week SMACuando el precio toca la MMS de 200 semanas es una posible compra.
Fibonacci with Golden Zone - Trend Aware🎯 What This Indicator Does:
This advanced Fibonacci tool automatically detects trend direction and adapts Golden Zone calculations accordingly, providing dynamic support/resistance levels with market structure analysis.
✨ Key Features:
🔄 Trend-Aware Golden Zone: Automatically adjusts 61.8%-78.6% zone based on market direction
📈 Market Structure Labels: Shows HH, HL, LH, LL patterns with price levels
🎯 Smart Fibonacci Levels: Retracements (0%, 23.6%, 38.2%, 50%, 61.8%, 78.6%, 100%)
🚀 Extension Targets: 127.2%, 161.8%, 200%, 261.8% projections
📊 Pivot Points: Optional daily/weekly pivot levels
🔔 Smart Alerts: Golden Zone entry and extension target alerts
🧠 How It Works:
Uptrend: Golden Zone acts as support (retracement from swing high)
Downtrend: Golden Zone acts as resistance (retracement from swing low)
Auto-Detection: Uses trend MA to determine market direction
Structure Analysis: Identifies swing patterns for better entries
⚙️ Settings:
Lookback Period: Swing detection sensitivity (5-50)
Trend Period: Moving average for trend detection (20-200)
Golden Zone: Toggle 61.8%-78.6% zone display
Market Structure: Show HH/HL/LH/LL labels
Pivot Points: Optional daily pivot levels
📋 Best Use Cases:
🥇 Gold/Forex Trading: Perfect for XAUUSD analysis
📈 Swing Trading: Identify key reversal zones
🎯 Target Setting: Extension levels for profit taking
📊 Trend Following: Align trades with market direction
🎨 Visual Features:
🟡 Golden Zone Box: Highlighted support/resistance area
🏷️ Price Labels: Exact levels on all Fibonacci lines
🎨 Color Coding: Green for uptrend, Red for downtrend
📱 Clean Interface: Professional, non-cluttered design
🔔 Alert System:
🏆 Price entering Golden Zone
🎯 Approaching extension targets (127.2%, 161.8%)
📊 Includes trend direction in alerts
Momentum Standard Deviation | LyroRSMomentum Standard Deviation | LyroRS
Overview
This indicator is designed to measure market momentum relative to standard deviation envelopes, while offering traders tools for identifying directional bias, valuation extremes, and early signals of potential reversals. By combining momentum with standard deviation analysis, smoothing functions, dynamic coloring, and table-based reporting, the script provides both a detailed and modular approach to momentum-based trading.
At its foundation, the indicator calculates momentum from a user-selected source, with optional smoothing applied through a variety of moving average types. Standard deviation is then measured around the momentum line to form upper and lower bands, which represent volatility-adjusted boundaries. These bands help identify whether momentum is overextended or trending strongly in a given direction. Signals are generated when momentum or its deviation bands cross key thresholds, with visual cues, background coloring, and plot shapes highlighting bullish or bearish shifts. A structured table summarizes the state of the system, including momentum trend, deviation trend, early insight conditions, and reversal signals, allowing traders to quickly interpret multiple layers of analysis.
Originality
In terms of originality, this script unifies momentum and standard deviation into a combined framework, rather than treating them as separate calculations. The ability to smooth source data, momentum, and deviation independently introduces flexibility, making it adaptable across assets and timeframes. Unique visualization features include futuristic-style fills, customizable color palettes, Heikin Ashi–like candle overlays, and dynamic table reporting. Together, these elements create a modular design that not only signals directional bias but also reports on context, such as early momentum flips and overbought/oversold reversals, which are often overlooked by standard momentum tools.
Key Features
Moving average inputs allow users to choose the calculation source, enable smoothing, select from multiple moving average types, and adjust lengths for smoothing both price and momentum.
Momentum settings define the lookback period and allow optional smoothing with user-specified averages.
Standard deviation inputs include length, smoothing options, moving average type, and smoothing length, offering control over the sensitivity of volatility envelopes.
Display options enable background coloring for early signals, reversal labels, momentum line plotting, and futuristic fills. Color schemes can be chosen from predefined palettes (Classic, Mystic, Accented, Royal) or set manually with custom bullish and bearish colors.
Table settings include options for overlaying the table, positioning it anywhere on the chart, and adjusting table size from huge to tiny.
Visualization
Visualization includes upper and lower deviation bands, a smoothed average line, colored momentum plots, dynamic fills between bands, optional reversal arrows, and background shading for early insight conditions. The integrated table provides a concise breakdown of module states, showing whether deviation and momentum trends are bullish or bearish, whether an early momentum flip is detected, and whether reversals are signaled. Alerts are available for all conditions, including momentum and deviation direction changes, early signals, and bullish or bearish reversals.
Summary
In summary, the Momentum Standard Deviation indicator blends momentum and volatility analysis into a flexible, multi-layered tool. Its modular structure allows traders to analyze trends, volatility-adjusted overextensions, and early momentum shifts within one framework. With customizable smoothing, advanced visualization, integrated tables, and alert conditions, the indicator provides a structured method of tracking momentum states while remaining adaptable to different market conditions.
⚠️Disclaimer
This indicator is a tool for technical analysis and does not provide guaranteed results. It should be used in conjunction with other analysis methods and proper risk management practices. The creators of this indicator are not responsible for any financial decisions made based on its signals.
KARAMAN Swing High/LowThis Pine Script indicator detects and visualizes swing highs/lows, daily levels, and Fair Value Gaps (FVGs) with full customization:
Swing points:
Validated swings are shown as small triangles (red = high, green = low).
Optional rays extend from swing points, and a ZigZag line connects them.
Daily high/low:
Tracks daily extremes (UTC+3).
Draws right-extended rays from the previous day’s high/low.
Fair Value Gaps (FVGs):
Automatically detects bullish and bearish FVGs.
Draws boxes and three rays (top, middle, bottom).
When price touches the middle line, the box and two lines are deleted, leaving only the untouched boundary.
If price fully breaks the FVG, all elements are removed.
Settings panel:
Every element (swing candidates, valid swings, rays, ZigZag, daily levels, FVG boxes/rays) can be turned on or off.
MAs - Leo MoliniMoving Averages – 9 EMA, 20 SMA, 200 SMA
This script displays three commonly used moving averages on your chart to help identify trends and potential trading signals:
🔹 9-period EMA (Exponential Moving Average) – A faster-moving average that reacts more quickly to recent price changes. Useful for short-term trend analysis and momentum.
🔸 20-period SMA (Simple Moving Average) – A medium-term average that smooths out price action and helps identify trend direction and pullback levels.
🔻 200-period SMA – A widely used long-term trend indicator, often seen as a key level of support or resistance in trending markets.
These moving averages can be customized through the settings panel, allowing traders to adapt the indicator to their preferred strategy or time frame.
✅ Designed for use on any market (stocks, crypto, forex, etc.) and timeframe.
Let me know if you'd like to see additional features added!
HTF Double TF Candle Projections by Pahto\ HTF Candle Projections (Dual Timeframe)\
This indicator projects higher-timeframe candles directly onto your chart, allowing you to see how larger structures are forming in real time. Instead of waiting for a higher-timeframe bar to close, it builds and updates projected candles tick-by-tick.
\ Key Features\
* \ Dual timeframe support\ – plot two higher-timeframe levels at once for deeper context.
* \ Custom opening times\ – align HTF candles to session opens or specific market times.
* \ Flexible candle types\ – choose between regular or Heikin Ashi projections.
* \ Projection lines\ – live open, high, and low levels extend from the current HTF candle.
* \ Configurable visuals\ – body, wick, border colors, label sizes, margins, and offsets.
* \ OHLC labels\ – optional price markers for open, high, low, and close of projected candles.
\ Use Cases\
* Anticipate higher-timeframe levels while trading on lower timeframes.
* Track evolving HTF opens, highs, and lows during live sessions.
* Compare two higher-timeframe perspectives side-by-side without switching charts.
This tool is designed for traders who rely on multi-timeframe confluence, price action mapping, or session-based analysis. It keeps HTF structure visible at all times so you can trade lower-timeframe setups with bigger-picture alignment.
SatoshiFrame Time Cycles)This powerful indicator highlights key upcoming time cycles on your chart, helping you anticipate potential market turning points. It automatically detects the latest trend cross and marks the next important intervals with vertical lines, giving you a clear visual guide for planning entries, exits, and timing your trades. All lines extend across the full chart for maximum clarity, even if they occur in future bars. Perfect for traders who want to stay ahead of the market rhythm.
Volatility Linear Regression Gaussian | Lyro RSVolatility Linear Regression Gaussian | Lyro RS
Overview
This indicator integrates linear regression analysis, Gaussian filtering, volatility measures, and regime detection into a single momentum and trend framework. Its purpose is to provide traders with a structured perspective on market state by combining smoothed regression signals with volatility envelopes and adaptive visualizations. Through these elements, it offers insights into whether markets are trending, consolidating, overextended, or reverting.
The indicator begins by applying a Gaussian filter to the chosen source, smoothing price data while preserving structural characteristics. Around this smoothed signal, volatility measures are introduced using ATR and standard deviation calculations, forming adaptive envelopes that define overbought and oversold conditions. A linear regression of filtered momentum values is then produced, with optional smoothing via multiple moving average types. This core regression signal becomes the basis for trend, strength, and reversal assessments. Users can toggle between Classic or Heikin Ashi display modes, with each mode providing a different representation of regression-driven momentum dynamics.
Originality
In terms of originality, this script distinguishes itself by unifying several advanced concepts into one modular framework. Gaussian smoothing of the regression base adds flexibility beyond standard linear regression models, while volatility-adjusted ATR bands and dynamic standard deviation envelopes frame regression values within a probabilistic context. The addition of a regime detector further expands utility by classifying the environment as trending or mean-reverting. Combined with Heikin Ashi transformations, multi-mode operation, customizable visualization, and integrated tables, this design enables a single indicator to adapt across multiple strategies, from directional bias to mean reversion and reversal identification.
Key Features
Linear regression inputs allow traders to choose the price source, regression length, smoothing method, and smoothing length, defining the sensitivity of the regression calculation.
Gaussian settings provide control over length and sigma, letting users adjust the degree of smoothing applied to the base signal.
Volatility settings define ATR length and factor as well as standard deviation length, tuning the responsiveness of volatility envelopes.
The regime detector offers long- or short-term modes, background coloring, and transparency adjustments for identifying structural market states.
Standard deviation band settings control whether a zero-line or dynamic midline is used, along with band length and multiplier for overbought/oversold thresholds.
Display options include Classic or Heikin Ashi modes, along with operational modes for Trend, Strength, or Reversals. Color schemes can be selected from predefined palettes or fully customized.
Table settings allow enabling or disabling the summary table, setting its position, forcing overlay if necessary, and choosing from multiple size options.
Visualization
The visualization combines dynamic candles, regression curves, standard deviation bands with shaded fills, and optional background colors tied to regime detection. A summary table displays active module states, showing the condition of trend, strength, reversals, and regime at a glance. Alerts are provided for all key conditions across both Classic and Heikin Ashi modes, including directional trend shifts, strength changes, reversal states, and regime classification.
Summary
In summary, the Volatility Linear Regression Gaussian indicator is a versatile analytical framework built from regression, Gaussian smoothing, volatility envelopes, and regime detection. Its design emphasizes adaptability by offering multiple operational modes, display variations, and alert conditions. By consolidating advanced methods into one unified tool, it supports different analytical approaches within a consistent and customizable structure.
⚠️Disclaimer
This indicator is a tool for technical analysis and does not provide guaranteed results. It should be used in conjunction with other analysis methods and proper risk management practices. The creators of this indicator are not responsible for any financial decisions made based on its signals.
Smart Trade LevelsAuto Entry/SL/TP + Relative Levels + Dashboard + Meter
This indicator combines several trading tools into a single framework for market analysis and trade management.
🔹 Features
Automatic Entry/Stop-Loss/Take-Profit zones
• Entry is set on new LONG/SHORT signals.
• Stop-Loss is based on local pivots or percentage distance.
• Take-Profit targets are calculated with Fibonacci extensions (TP1, TP2, TP3).
Relative Support/Resistance Levels
• Dynamic levels based on a 50-period SMA as the base.
• Optional auto-hide function to display only nearby levels.
• Short RU labels (e.g. “Поддержка”, “Сопротивление”) without numeric values.
Trend & Signal Detection
• RSI, MACD, and SMA50 trend filter.
• Breakout detection with higher-timeframe (HTF) confirmation.
• Divergence alerts (bullish/bearish).
Meter & Score Dashboard
• Multi-factor score (volume, ATR, ADX, breakouts, trend alignment).
• Probability estimates for LONG vs SHORT (percentages).
• HTF filters (EMA50, RSI, MACD histogram).
• Color-coded signals and a compact on-chart dashboard.
Visualization
• Boxes for Entry, SL, TP1–TP3.
• Relative level lines with dotted style.
• Prep signals (Buy/Sell labels) when price crosses relative levels.
• Optional MA50 plot for trend context.
⚙️ Inputs
Fibonacci multipliers for TP (0.618, 1.0, 1.618 by default).
Volume SMA length and neutral band.
Auto-hide relative levels (with adjustable % window).
Meter settings: breakout lookback, relative volume, ATR %, ADX threshold, EMA gap filter.
Show/hide dashboard elements, MA50 line, and level labels.
✅ Use cases
Identify trend direction and potential reversals.
Manage risk/reward with automatic zones.
Confirm setups with HTF filters and probability scoring.
Visualize dynamic support/resistance areas.
⚠️ Disclaimer: This script is for educational purposes only and does not constitute financial advice. Always backtest and validate before applying to live trading.
Linear Regression Momentum | Lyro RSLinear Regression Momentum | Lyro RS
Overview
This indicator is built around linear regression momentum, with additional layers of smoothing, valuation bands, and adaptive visualization. Its purpose is to provide traders with structured perspectives on market momentum by combining linear regression analysis, standard deviation thresholds, and versatile display modes. It integrates multiple approaches to highlight not only directional bias but also valuation extremes and potential reversals.
Originality
At its core, the script calculates momentum from a chosen source and then applies linear regression to extract slope-based information. This slope is smoothed through user-selected moving averages and used as the central momentum curve. Around this core, standard deviation bands are constructed, enabling detection of overbought and oversold zones relative to the momentum slope. The indicator offers three operational modes: Trend, which classifies directional bias based on slope relative to a dynamic midline; Valuation, which evaluates whether momentum is extended toward extremes; and Reversals, which identifies potential turning points when slope and price action diverge. Each mode is supported by visual cues, colored candles, standard deviation envelopes, and a configurable table summarizing active states.
In terms of originality, this script distinguishes itself by unifying linear regression momentum with Heikin Ashi transformations, customizable standard deviation envelopes, and multi-mode logic within one framework. Rather than providing a single fixed interpretation, it allows the user to adaptively switch between momentum-driven trend following, valuation-based overextension analysis, and reversal detection. This modularity is combined with flexible display features, custom color palettes, and integrated alert conditions, enabling a single tool to serve different trading approaches without the need for multiple overlapping indicators.
Key Features
The script offers a wide range of inputs for customization.
Momentum settings include source selection, momentum length, linear regression length, moving average type, and smoothing length, which together define the sensitivity and smoothness of the momentum calculation.
Standard deviation band settings allow users to choose whether zero or a dynamic midline is used, as well as the lookback length and the multiplier for band scaling, controlling the width of the envelope.
Display settings enable switching between Heikin Ashi and Classic visualizations, as well as selecting the operating mode (Trend, Valuation, or Reversals). Users can also define the color palette through predefined themes or fully custom bullish and bearish colors.
Table settings control whether a status table is shown, its size, and its position on the chart. An overlay option is available if users prefer table placement over existing chart elements.
Additional visualization features include dynamic bar coloring, Heikin Ashi-based slope representation, standard deviation bands with shaded fills, and plotshapes highlighting reversal or overextension signals. Alerts are integrated for each mode, allowing traders to receive notifications when long or short conditions are identified under trend, valuation, or reversal logic.
Summary
In summary, this indicator provides a structured framework for analyzing momentum through linear regression, enhanced with volatility envelopes and adaptive display logic. Its design emphasizes flexibility, enabling traders to view the same momentum data through different analytical lenses—trend continuation, valuation extremes, or reversals—while maintaining clear visualization and optional alerts for actionable decision support.
⚠️Disclaimer
This indicator is a tool for technical analysis and does not provide guaranteed results. It should be used in conjunction with other analysis methods and proper risk management practices. The creators of this indicator are not responsible for any financial decisions made based on its signals.
Entry/Stop/Take — TP: R or Nearest Level + Offset + Prep LinesTitle:
Entry/Stop/Take — TP by R-multiple or Nearest Level
Description:
This indicator plots Entry, Stop-Loss and Take-Profit levels after a signal.
How it works:
• Signal example: breakout of a lookback range filtered by EMA200 (you can replace it).
• Stop-Loss = ATR × SL Multiplier.
• Take-Profit modes:
– R-multiple: TP = Entry ± (ATR × SL Mult × TP Mult).
– Nearest level: closest swing resistance (long) or support (short), with configurable offset to exit before the level.
• Lines start at the signal bar and extend until SL or TP is hit.
• Optional right-edge labels and a mini table with values.
Inputs: ATR Length, SL Mult, TP Mult, Lookback (breakout), TP Mode (R-multiple / Nearest level), pivot settings and search window, level offset (%), toggles for labels/table.
Notes:
• No advertisements or external links.
• This script is for educational purposes only and does not constitute financial advice. Backtest and adjust parameters before using in live markets.
EMA & VWAP Precision Overlay📢WELCOME TO FUTURE YOU!
📈 This isn’t your grandma’s moving average script.
This is pure alpha visualization. We're talking 9, 21, 50, and 200 EMAs. Plus VWAP Session AND Anchored VWAP — all dynamically labeled so you know exactly where price is cooking.
🚀 Features:
Toggle lines like a boss
Label everything (or nothing, if you’re into minimalist flexing)
Anchored VWAP for sniper entries (you pick the start)
Labels shift forward so your candles don’t cry
Built for traders who actually care about levels and not just vibes. Whether you’re scalping dog coins or trend-riding BTC, this thing keeps your chart clean, informative, and slightly intimidating.
I use it. It works. You should probably use it too.
If it gives you psychic powers — you're welcome.
If it doesn't — still looks cool.