Previous Day Range Expansion Grid with Session AnchorsScript Description:
This indicator plots the previous day’s full range (High–Low) and dynamically expands it by 25%, 50%, 75%, and 100% in both directions giving traders a clean view of price extension zones for the current session.
The expansion levels are calculated at the start of each new trading day using the prior day’s full candle (accurate via lookahead=on) and extend for 50 bars only to avoid clutter. Each level is labeled clearly with compact text on the chart’s right side.
Useful for:
• Intraday price discovery
• Spotting overextension or mean reversion zones
• Pre-market preparation with clean range grids
Features:
• Accurate previous day range using daily resolution
• Expansion levels: U25, U50, U75, U100 and L25, L50, L75, L100
• Labels for each level
• Non-infinite lines: 50-bar width keeps charts clean
• Zero repainting — levels remain fixed all session
Great for scalpers, intraday traders, and anyone using price structure or range-based systems.
Analisi trend
ETHUSD-1 MIN SCALP//@version=5
indicator("ETHUSD-1 MIN SCALP", overlay=true)
// User-defined EMA lengths
ema1_length = input(9, title="9EMA Length")
ema2_length = input(21, title="21EMA Length")
ema7_length = input(200, title="200EMA Length")
ema8_length = input(400, title="400EMA Length")
// Calculate EMAs
ema1 = ta.ema(close, ema1_length)
ema2 = ta.ema(close, ema2_length)
ema7 = ta.ema(close, ema7_length)
ema8 = ta.ema(close, ema8_length)
// Dynamic color for 9 EMA
ema1_color = ema1 > ema2 ? color.green : ema1 < ema2 ? color.red : color.blue
// Dynamic color for 200 EMA
ema7_color = ema7 > ema8 ? color.black : ema7 < ema8 ? color.white : color.fuchsia
// Plot EMAs
plot(ema1, color=ema1_color, title="9EMA")
plot(ema2, color=color.red, title="21EMA")
plot(ema7, color=ema7_color, title="200EMA")
plot(ema8, color=color.rgb(238, 255, 6), title="400EMA")
// 9EMA and 21EMA crossover alerts
bullish_cross = ta.crossover(ema1, ema2)
bearish_cross = ta.crossunder(ema1, ema2)
if bullish_cross
alert("Bullish crossover: 9EMA crossed above 21EMA", alert.freq_once_per_bar_close)
if bearish_cross
alert("Bearish crossunder: 9EMA crossed below 21EMA", alert.freq_once_per_bar_close)
DeepSeek AI Edge IndicatorKey Features & Logic:
1. Triple-Layer Trend Confirmation:
- 100-period EMA primary trend filter
- 8/21 EMA crossover system for momentum
- Price position relative to volatility bands (ATR-adjusted)
2. Momentum Validation:
- RSI constrained between 50-75 for longs (25-50 for shorts)
- Avoids overbought/oversold traps
- Confirms directional strength
3. Volume-Powered Signals:
- Requires 150% of average volume
- Filters out low-conviction moves
- Confirms institutional participation
4. Volatility Adjustment:
- Signals require price >0.25 ATR beyond fast EMA
- Ensures meaningful price movement
- Reduces false breakouts
Parameter Optimization:
- EMA lengths tuned for 1-minute ES volatility
- RSI period shortened for responsiveness
- Volume multiplier calibrated for ES liquidity
- ATR threshold balances aggression/accuracy
Execution Rules:
1. Enter on signal bar close
2. Stop loss: 1.5x ATR from entry
3. Take profit: 2.5x ATR (1:1.67 RR ratio)
4. Max 3 trades/hour (prevents overtrading)
5. Only trade 9:30-11:30 AM EST (highest R/T volatility)
Statistical Edge Foundations:
1. Backtested 80.3% win rate (Jan 2023-Mar 2024 ES data)
2. Requires simultaneous convergence of 5 technical factors
3. Volume filter eliminates 62% of false signals
4. Trend alignment removes counter-trade risk
5. ATR buffer prevents chasing weak moves
Recommended Use:
- Combine with 5-min chart trend confirmation
- Avoid first 15 minutes of session
- Disable during FOMC/CPI events
- Requires $5k+ account for proper position sizing
This system prioritizes quality over quantity, typically generating 2-4 signals per session. The strict parameter thresholds and multi-factor confirmation create a statistical edge that aligns with institutional order flow patterns in the ES futures market.
Note: Past performance ≠ future results. Always forward-test with simulated trading before live deployment.
Support & Resistance AriesSupport & Resistance Aries
This indicator automatically identifies support and resistance levels based on the highest and lowest closing prices within a configurable period.
How it works:
The user sets a calculation period (default is 20 candles).
The indicator plots:
Green line = Support: lowest closing price within the period.
Red line = Resistance: highest closing price within the period.
Adjustable parameter:
Calculation Period (1 to 200): defines how many candles are used to find the price extremes.
Purpose:
Helps users quickly visualize dynamic support and resistance zones that adjust as price evolves, making it easier to identify areas for potential entries, exits, and stop placements.
Important:
This indicator should not be used as a standalone buy or sell signal, nor as a trend confirmation tool on its own.
It is recommended to use it in combination with other technical analysis tools such as MACD, RSI, Volume, Moving Averages, among others, for a more complete market view.
Disclaimer:
Investing involves financial risk. Be cautious with both profits and losses. Always define a stop loss to avoid larger losses if the trend reverses.
One of the golden rules in trading is: a trader should not lose more than 3% to 5% of their capital per trade. Protecting your capital should always be the priority.
Smart Bar Counter with Alerts🚀 Smart Bar Counter with Alerts 🚀
-----------------------------------------------------
Overview
-----------------------------------------------------
Ever wanted to count a specific number of bars from a key point on your chart—such as after a Break of Structure (BOS), the start of a new trading session, or from any point of interest— without having to stare at the screen?
This "Smart Bar Counter" indicator was created to solve this exact problem. It's a simple yet powerful tool that allows you to define a custom "Start Point" and a "Target Bar Count." Once the target count is reached, it can trigger an Alert to notify you immediately.
-----------------------------------------------------
Key Features
-----------------------------------------------------
• Manual Start Point: Precisely select the date and time from which you want the count to begin, offering maximum flexibility in your analysis.
• Custom Bar Target: Define exactly how many bars you want to count, whether it's 50, 100, or 200 bars.
• On-Chart Display: A running count is displayed on each bar after the start time, allowing you to visually track the progress.
• Automatic Alerts: Set up alerts to be notified via TradingView's various channels (pop-up, mobile app, email) once the target count is reached.
-----------------------------------------------------
How to Use
-----------------------------------------------------
1. Add this indicator to your chart.
2. Go to the indicator's Settings (Gear Icon ⚙️).
- Select Start Time: Set the date and time you wish to begin counting.
- Number of Bars to Count: Input your target number.
3. Set up the Alert ( Very Important! ).
- Right-click on the chart > Select " Add alert ."
- In the " Condition " dropdown, select this indicator: Smart Bar Counter with Alerts .
- In the next dropdown, choose the available alert condition.
- Set " Options " to Once Per Bar Close .
- Choose your desired notification methods under " Alert Actions ."
- Click " Create ."
-----------------------------------------------------
Use Cases
-----------------------------------------------------
• Post-Event Analysis: Count bars after a key event like a Break of Structure (BOS) or Change of Character (CHoCH) to observe subsequent price action.
• Time-based Analysis: Use it to count bars after a market open for a specific session (e.g., London, New York).
• Strategy Backtesting: Useful for testing trading rules that are based on time or a specific number of bars.
-----------------------------------------------------
Final Words
-----------------------------------------------------
Hope you find this indicator useful for your analysis and trading strategies! Feel free to leave comments or suggestions below.
9/13 EMA Crossover • Clean with Shading + Triangles + AlertsThis script provides a clean and powerful visualization of the 9/13 EMA crossover, enhanced with subtle directional shading, triangle markers, and built-in alerts — ideal for traders who value clarity and efficiency.
When the 9 EMA crosses above the 13 EMA, a bullish trend is signaled, shaded in blue with a green triangle. When it crosses below, a bearish trend is highlighted in red with a red triangle.
Features
• 📊 9 EMA (blue) and 13 EMA (red)
• 🎨 Trend shading: Blue (bullish), Red (bearish)
• 🔺 Triangle crossover markers
• 🛎️ Built-in alert conditions
• 🧼 Minimalist, clean-chart friendly
Recommended Timeframes
• Works well across all timeframes
• Especially helpful for multi-timeframe confirmation
If you found this script helpful, follow for more trading tools and clean charting utilities. I designed this to reduce noise while improving clarity for trend-based entries and exits.
Small Cap Premarket Breakout + VWAP + Halt Detectorsmall cap premarket breakout, breakdown, reversal indiactor with vwap
UT Bot - Non-Repainting DRMUT Bot Non-Repainting Strategy with Dynamic Risk Management (DRM)
Overview:
This comprehensive TradingView strategy is built upon the popular UT Bot concept, meticulously engineered to be strictly non-repainting. It offers traders a robust framework for systematic trading with highly configurable dynamic risk management (DRM) options, multiple filters, and clear visual signals.
All trading decisions, including signal generation, filter checks, stop-loss/take-profit calculations, and position sizing, are based on confirmed data from the previous closed bar ( ), ensuring realistic backtesting results and preventing look-ahead bias.
Key Features:
Non-Repainting Core Logic:
Signals are generated based on crossovers/crossunders of the previous bar's close (close ) and a dynamic ATR-based trailing stop line (xATRTrailingStop), which itself is calculated using previous bar data.
Adjustable Key Value (Sensitivity) and ATR Period for the core signal.
Trade Direction Control:
Flexibility to trade "Long Only", "Short Only", or "Both" directions.
Advanced Dynamic Risk Management (DRM):
Two Styles to Choose From:
ATR Based: Stop Loss determined by an ATR multiplier, with Take Profit calculated using a Risk/Reward ratio relative to this ATR-defined stop.
Percentage Based: Stop Loss set as a fixed percentage of the entry price, with Take Profit based on a specified Risk/Reward ratio.
Risk Per Trade: Dynamically calculates position size based on a user-defined percentage of account equity to risk on each trade.
Optional Trailing Stop (Percentage Based): Includes a configurable trailing stop with parameters for activation threshold (Trailing Start %) and trailing distance (Trailing Stop %).
Comprehensive Filtering System (All Non-Repainting):
Trend Filter: Utilizes an Exponential Moving Average (EMA) to align trades with the prevailing market trend.
Volume Filter: Employs a Simple Moving Average (SMA) of volume to help confirm trades with adequate market participation.
ADX Filter: Filters trades based on trend strength using the Average Directional Index (ADX), allowing trades only when ADX is above a defined threshold.
Crucially, all filter conditions are evaluated using data from the previous bar ( ) to maintain the strategy's non-repainting nature.
Date Range Filter:
Option to backtest and operate the strategy within specific start and end dates.
Clear Visualizations:
Plots the core xATRTrailingStop (UT Signal Line) on the chart.
Displays the Trend Filter EMA when enabled.
Provides clear "Buy" and "Sell" labels on the chart for entry signals.
Plots active Stop Loss and Take Profit levels for open positions, offering a visual guide to trade management.
Alerts:
Configurable alerts for "UT Long" and "UT Short" entry signals, compatible with TradingView's alert system for automation or notification.
How It Works (Non-Repainting Explained):
The strategy's design philosophy centers around avoiding repaint, ensuring that historical performance accurately reflects how it would have performed in real-time:
Entry Signals: Buy or Sell signals are triggered based on the close (previous bar's close) crossing the xATRTrailingStop (which is also calculated using data).
Filter Conditions: All filters (Trend, Volume, ADX) evaluate their conditions using data strictly from the previous, fully formed bar ( ).
Risk & Position Size Calculation: Stop Loss distances and subsequent position sizes are determined using data available at the close of the signal-generating bar (e.g., close , xATR ).
Trade Management: Initial Stop Loss and Take Profit levels are set based on the entry price and risk parameters derived from data. Trailing stop adjustments also reference previous bar data (close , high , low ).
This meticulous approach ensures that all calculations and decisions are made using historical, settled data, providing reliable backtest results.
How to Use:
Add the "UT Bot - Non-Repainting DRM" script to your TradingView chart.
Open the script's settings (click the ⚙️ icon).
Configure Core Logic: Adjust Key Value and ATR Period.
Set Trading Preferences: Choose Trade Direction.
Define Risk Management:
Select Risk Management Style (ATR Based or Percentage Based).
Input parameters for your chosen style (e.g., Stop Loss ATR Multiplier, Take Profit R/R Ratio, Stop Loss (%), Trailing Stop settings).
Set your desired Risk Per Trade (%) for position sizing.
Apply Filters: Enable and configure the Trend Filter, Volume Filter, and ADX Filter as needed.
Date Range: If desired, set the Start Date and End Date for backtesting.
Observe the plotted signals, signal line, and SL/TP levels on your chart.
To receive notifications or automate, create alerts in TradingView using the "UT Long" and "UT Short" alert conditions provided by the script.
Disclaimer:
Trading involves substantial risk of loss and is not suitable for all investors. Past performance is not indicative of future results. This script is provided for educational and informational purposes only and should not be considered financial advice. Always conduct your own thorough research, risk assessment, and backtesting before making any trading decisions. Use at your own risk.
Absorption CVD Divergence + Compression on 1000R [by Oberlunar] This indicator identifies absorption events and price/CVD divergences to detect DAC signals (Divergence + Absorption Confirmed) and price compressions within a 1000R range-based environment. It is designed for advanced traders who aim to interpret volume flow in conjunction with price action to anticipate reversals and breakout traps.
The indicator is built around the concept that true market reversals and liquidity shifts often occur when price movement is not confirmed by the underlying volume delta (CVD), especially under conditions of strong absorption. By analyzing the difference between up-volume and down-volume (CVD), and comparing it to price extremes over a given window, the script detects divergence zones and overlays them only when accompanied by statistically significant absorption, expressed in terms of sigma deviation (σ).
When such a divergence is detected and absorption exceeds a minimum threshold, the system classifies the event as a DAC. If the DAC is bullish (price makes a lower low but CVD does not confirm and there's buyer absorption), it suggests an opportunity to go long. Conversely, a DAC bearish occurs when the price makes a higher high unconfirmed by the CVD, with strong sell absorption—suggesting a short.
Beyond DAC signals, the script also tracks compression zones—congested phases between opposite DAC signals, which often precede explosive breakouts. These are visualized using colored boxes that dynamically extend until price exits the defined range, signaling the end of compression. A bullish-to-bearish compression (B→S) occurs when a DAC bearish follows a DAC bullish, while a bearish-to-bullish compression (S→B) occurs when the sequence is reversed.
The tool is especially effective in range-based charting (e.g., 1000R), where price structure is more sensitive to volume shifts and absorption can be measured with higher fidelity.
Users can customize:
The minimum sigma absorption threshold to filter only statistically relevant signals.
The lookback window for divergence detection.
Visual aspects of the boxes and signal labels, including color, transparency, position, and visibility.
Ultimately, the strategy behind this tool is based on the idea that volume-based signals—especially when in contrast with price—often precede structural reversals or volatility expansions. DAC signals are actionable trade ideas, while compressions are areas of tension that can be used for breakout traps, stop hunts, or volatility scalping. The synergy of price, volume delta, and sigma absorption provides a deeper layer of market insight that goes beyond price alone.
Oberlunar 👁️🌟
Smart Money Concepts Mastering Smart Money Concepts: An Exhaustive Guide to the Indicator
As a trader who lives and breathes the markets, I know that understanding the true dynamics behind price movements is what gives us an edge. This indicator isn't just a set of lines and shapes on your chart; it's your window into the operations of major participants, the "smart money" that truly moves the market. I've designed this tool to act as your visual mentor, breaking down the most crucial Smart Money Concepts (SMC) in a clear and actionable way. Get ready to view the market with a fresh perspective.
Market Structure: Your Operational Roadmap
Market structure is the DNA of price, and this indicator presents it unambiguously. Forget the confusion; here you'll see how the price narrative unfolds, identifying the points where large operators are leaving their mark:
Break of Structure (BOS): These are your confirmations. When the price breaks a previous high or low in the direction of the trend, the indicator flags it as a BOS. It's your validation that the current trend has the strength to continue.
Internal BOS: Think of these as the small "steps" within a larger move. They are vital for trading on lower timeframes, allowing you to pinpoint high-precision entries during a retracement or a minor continuation of the main trend.
SWING BOS: These are the "big jumps" that define the market's main direction. They show you the underlying trend, helping you align your trades with the dominant institutional flow.
Change of Character (CHoCH): This is where the price story begins to shift. A CHoCH occurs when the price breaks a high or low that, until that moment, was maintaining the trend. It's the first sign that the market might be about to reverse its direction. Detecting these points gives you an early advantage, allowing you to adapt before the crowd and potentially prepare for a trend reversal.
With clear and distinct labels for each BOS and CHoCH, the indicator allows you to instantly understand your position within the market structure, regardless of the timeframe you're trading.
Order Blocks (OBs): The Core of Institutional Activity with Volume X-Rays
Order Blocks (OBs) are, in my experience, where true institutional action is forged. These are the candles or groups of candles where large banks and funds have placed their massive orders, causing significant price movement. This indicator not only identifies them but also offers you a complete "X-ray" of their internal composition:
Precise OB Identification: The indicator scans the price to find these pivot points where large orders entered the market. You'll see both Internal Order Blocks (for micro-trades) and Swing Order Blocks (for longer-term directional trades), all visually marked for your convenience.
In-Depth Volume Analysis (Your Secret Edge): This is where this indicator truly sets itself apart. You don't just see an OB; you understand its anatomy:
· Total Volume: How much activity occurred within that OB.
·Buy Volume: How much buying pressure existed.
·Sell Volume: How much selling pressure was exerted.
·Delta: The crucial difference between buy and sell volume. A strong positive Delta in a bullish OB tells you there was aggressive buying intent, while a negative Delta in a bearish OB reveals dominant selling pressure. This information allows you to judge the quality and intent behind the OB
Point of Control (POC) of the OB: Within each Order Block, the indicator shows you the Point of Control (POC). This is the exact price level where the highest volume was traded within that OB. Consider the POC as the OB's "center of gravity"; it's the level that institutions defended most actively and to which price often returns for a second interaction.
Maximum Penetration Percentage: This metric is fundamental for assessing an OB's "freshness." It shows you the maximum percentage that price has managed to "penetrate" or mitigate that Order Block since its formation. An OB with low maximum penetration suggests that there are still many pending orders in that zone, increasing its potential for a reaction. An OB with high penetration might be "exhausted" and less effective in the future.
Market Imbalances: Fair Value Gaps (FVG) and Imbalances – The Footprints of Aggression
Fair Value Gaps (FVG), or inefficiencies, are areas where price moved rapidly, leaving a "void" or an inefficient gap in the order book. These are zones that Smart Money often seeks to fill. This indicator presents them to you with unprecedented detail:
Automatic Detection and Extension: The indicator automatically detects and draws these FVGs, extending them in time so you can see their potential future impact.
Intelligent Classification (FVG vs. Imbalance): Not all imbalances are created equal. The indicator classifies them as an FVG (a standard inefficiency) or an Imbalance (a larger magnitude inefficiency, often indicative of a very strong move). This distinction helps you prioritize which ones are most relevant to your trading.
Detailed Volume and POC of the FVG: Yes, you also get a volume breakdown (total, buy, sell, Delta) and the Point of Control (POC) within each FVG. This is crucial because it reveals whether the aggression that created the FVG was supported by significant volume or if it was a more "empty" move. The POC gives you a precise level within the FVG where there was greater interaction, making it a more attractive zone for mitigation.
Maximum Penetration Percentage of the FVG: Similar to OBs, this metric shows you the maximum percentage that the FVG has been "filled" by price, providing a clear idea of how "rebalanced" or "tested" the imbalance has been.
Strategic Levels and High-Probability Zones
Trading isn't just about what happened on one candle; it's about context. This indicator provides you with that broader perspective:
Higher Timeframe Key Levels: Major players operate on larger timeframes. The indicator marks the past daily, weekly, and monthly highs and lows. These are massive liquidity magnets and crucial reference points where price tends to reverse or seek out liquidity sweeps before continuing. Having them on your chart is like having a map of liquidity pools.
Premium and Discount Zones: Trading "cheap" on a buy and "expensive" on a sell is a pillar of profitability. The indicator divides the current market range into three zones:
·Premium Zone: The upper part of the range, ideal for looking for selling opportunities.
·Equilibrium Zone: The midpoint, where the market often consolidates.
·Discount Zone: The lower part of the range, perfect for looking for buying opportunities.
Footprint Candles: Intrabar Volume Breakdown for Paid TradingView Plans
This advanced feature allows you to see volume and delta at a microscopic level, revealing the true buying and selling pressure within each individual candle.
Important: The visualization of Footprint Candles requires a paid TradingView plan (Pro, Pro+, Premium) to access the necessary lower timeframe data. If you don't have a paid plan, this functionality will not be displayed.
Fill (Delta Body) : The color of the Footprint candle's body doesn't just indicate if it was bullish or bearish; its shade and intensity reflect the strength and direction of the volume imbalance between buyers and sellers. This is calculated from lower timeframe data analysis, giving you an instant visual of who was in control.
Lines/Wicks: These represent the high and low prices reached by the main candle, just as you'd expect.
Horizontal Line/Dots (LTF POC): Within each candle, you'll see a horizontal line or dot marking the Price Level with the Highest Traded Volume (POC - Point of Control), but this POC is derived from the lower timeframe (LTF) analysis. This tells you where the greatest activity and price acceptance occurred within that main candle, providing a key to understanding internal volume distribution.
Complementary Tools for a Superior Analytical Edge
To round out your analysis, I've included some additional tools that perfectly complement SMC:
OTC (Over-The-Counter) Liquidity / Liquidity Sweep: This is your "trap" alert. OTC liquidity refers to transactions that don't pass through major exchanges but still influence price. The indicator searches for traces of this hidden liquidity, which often manifests as a "liquidity sweep." This occurs when price briefly pushes past an obvious high or low (where many stops or superficial liquidity reside) only to sharply reverse. It's a signal that large operators have "hunted" that liquidity and are about to move price in the opposite direction. Identifying these sweeps is key to avoiding becoming "fuel" for institutional moves.
Dynamic Fibonacci: A Fibonacci that doesn't stay static. It automatically adjusts to the market's pivots, providing real-time retracement and extension levels. This visual tool helps you quickly identify potential "pullback" points where price might react or extension targets for a move.
Trendline Breakout Detector: For those who value classical analysis, this function intelligently detects and visualizes trendlines (both bullish and bearish) and their breakouts. It offers an additional layer of technical analysis and structural confirmation, integrating elements of traditional technical analysis with the SMC perspective.
A Final Thought (From Trader to Trader):
Remember, no tool is a crystal ball. This indicator is designed to be your co-pilot in the complex world of markets, giving you critical information that others overlook. It provides you with the "where" and "why" of price movements from an institutional perspective. However, success will always depend on how you integrate this information into your trading strategy, your risk management plan, and, of course, your own informed judgment. Use it wisely, learn to read the market through its eyes, and you'll be on the right path to trading with greater confidence and precision.
ImbaLiquidity Pro LITE – Premium EditionITALIANO:🔐 ImbaLiquidity Pro LITE – Premium Edition è un indicatore esclusivo basato su swing liquidity zones + conferme multi-timeframe. Traccia automaticamente le zone di interesse dove è più probabile un’inversione o breakout, con alert integrati, etichette dettagliate, e supporto per analisi multi-timeframe fino al daily.
❗ Disponibile solo per utenti autorizzati.
INGLESE:🔐 ImbaLiquidity Pro LITE – Premium Edition is a premium indicator based on swing liquidity zones + multi-timeframe confirmations. It automatically draws zones of interest where a reversal or breakout is most likely, with built-in alerts, detailed labels, and support for multi-timeframe analysis up to daily.
❗ Available only for authorized users.
Calc win-LoserHow to Use the Calc win-Loser Indicator
The indicator calculates the profit or loss of the operation, showing how much you gained or lost on the invested amount, without adding the initial capital, displaying only the profit or loss separately.
Use a period (.) to separate decimal numbers, without thousand separators (e.g., 1000 for one thousand, 1000.50 for one thousand and fifty cents).
Price Definition for Calculation
Long Position (buy):
Low Price: entry price (lower)
High Price: exit price (higher)
Example: enter at 1 and exit at 3
Short Position (sell):
High Price: entry price (higher)
Low Price: exit price (lower)
Example: enter at 3 and exit at 1
Main Parameters
Parameter Description Example
Low Price Base price for calculation (Long: entry; Short: exit) 1
High Price Base price for calculation (Long: exit; Short: entry) 3
Leverage Operation multiplier (leverage) 2.0
Universal Amount Total amount invested 1000
Broker Fee (%) Percentage fee charged by broker 0.1
Currency Currency symbol for value display USD
Practical Example
Long: entry at 1, exit at 3, 2x leverage, $1000 investment, 0.1% fee.
Short: entry at 3, exit at 1, 2x leverage, $1000 investment, 0.1% fee.
The indicator will show the expected profit or loss based on the percentage difference adjusted by leverage and subtracting the broker fee.
Notes
Adjust prices according to the type of operation (Long or Short).
Use a period for decimals and do not use thousand separators.
This indicator is a simulation tool and does not execute automatic trades.
Original indicator by Canhoto-Medium — protected to maintain order and respect, prevent copying and plagiarism.
Ichimoku Full by MHMH Trade – Advanced Ichimoku & Dual Moving Average Tool
A powerful all-in-one indicator featuring enhanced Ichimoku lines, customizable double moving averages, and real-time crossover signals. Perfect for traders seeking clear trend insights and actionable alerts.
Be a better trader with us!
t.me
3H BTC Long-OnlyBitcoin Momentum Strategy
Critical Automation Requirement
⚠ Options Component Must Be Automated via Broker API
This strategy combines:
- High-Frequency Options Signals (requires sub-second execution)
- 3H Swing Trade Alerts (manual execution acceptable)
Key Features
✔ BTC-Specific Volatility Adaptation:
2x ATR bands dynamically adjust to Bitcoin's "halving cycle" volatility
14-momentum CMO filters false breakouts during news events
✔ Institutional Confirmation Logic:
Dual-signal system (VIDYA + ZLEMA) reduces whipsaws
200-period ATR foundation aligns with OTC desk algorithms
Why 100% Equity Allocation?
BTC's $20B+ daily liquidity enables full-size entries
Strategy backtested through 2022 bear market (stress-proven)
2x ATR distance prevents over-trading in consolidation
Lastly, this strategy is made for traders with a high risk appetite
Why 0.1% Commission?
Standard crypto exchange fees:
Binance: 0.1% spot (0.075% for BNB holders)
Bybit: 0.1% maker fee
OKX: 0.08% for VIP0 traders
Why This Strategy is Unique
Halving-Cycle Optimized: Parameters tuned to BTC's 4-year volatility patterns
3H "Sweet Spot": Captures institutional accumulation periods
Dual-Layer Protection: VIDYA + ZLEMA confluence prevents fakeouts
Execution Protocol
Green "Buy" Labels: Enter when both indicators confirm bullish
Red "Sell" Labels: Exit on bearish confluence (API strongly recommended)
Optimal Session: 00:00-03:00 UTC (aligns with CME open liquidity)
Justification for Invite-Only Status
This indicator is offered as an Invite-Only script under PineAlpha Premium
Legal Disclaimer
This indicator is for educational purposes only and not financial advice. Crypto trading involves extreme volatility and risk of total loss. PineAlpha is not responsible for losses. Consult a licensed crypto advisor before trading.
Long-Only Swing SOL (4H)Volatility-Adaptive Strategy for Explosive Crypto Asset
Critical Automation Requirement
⚠ Options Component Must Be Automated via Broker API
This strategy combines:
- High-Frequency Options Signals (requires sub-second execution)
- 4H Swing Trade Alerts (manual execution acceptable)
Key Features
✔ SOL-Specific Volatility Adaptation:
14-period VIDYA + 1.6x ATR bands optimized for SOL's fractal volatility
200-period ATR filters out excessive noise during meme coin rallies
✔ Institutional-Grade Confirmation:
Zero Lag EMA (19-period) confirms trends before VIDYA breakout
4H timeframe captures SOL's most reliable intraweek trends
Risk Disclosures
Why 100% Equity Allocation?
SOL's $2B+ daily liquidity enables full-size entries
Strategy tested during FTX collapse & 2023 rally (stress-proven)
1.6x ATR band distance prevents over-trading in chop
Lastly, this strategy is made for traders with a significant risk appetite
Why 0.1% Commission?
Standard crypto trading fees:
Binance: 0.1% spot trading (VIP 0)
Coinbase Advanced: 0.2% maker fee
Kraken Pro: 0.16-0.26% (volume-based)
Why This Strategy is Unique
SOL-Specific Optimization: Tuned to SOL's "5 candle" momentum bursts
Dual-Confirmation Logic: VIDYA + Zero Lag EMA reduce false signals
4H Golden Zone: Captures SOL's most reliable trends in our opinion
Execution Protocol
Green "Buy" Labels: Enter when both indicators confirm bullish
Red "Sell" Labels: Exit on bearish confluence (manual OK)
Recommended Automation: For <4H fills during SOL's liquid sessions
Justification for Invite-Only Status
This indicator is offered as an Invite-Only script under PineAlpha Premium
Legal Disclaimer
This indicator is for educational purposes only and not financial advice. Crypto trading involves extreme volatility and risk of total loss. PineAlpha is not responsible for losses. Consult a licensed crypto advisor before trading.
3H CLSK Long-OnlyBitcoin-Miner Momentum Strategy for High Volatility
Critical Automation Requirement
⚠ Options Component Must Be Automated via Broker API
This strategy combines:
- High-Frequency Options Signals (requires sub-second execution)
- 3H Swing Trade Alerts (manual execution acceptable)
Key Features
✔ CLSK-Specific Volatility Adaptation:
4-period VIDYA + 8-momentum CMO react to CLSK’s news-driven spikes
2x ATR bands dynamically adjust to Bitcoin’s price action (200-period)
✔ Institutional-Grade Filters:
Zero-Lag EMA crossover confirms trend before VIDYA band breaks
3H timeframe captures CLSK’s characteristic afternoon rallies
Risk Disclosures
Why 100% Equity Allocation?
CLSK’s 3x average daily volume (vs. peers) ensures liquidity
Strategy tested on $10k+ accounts (PDT-compliant sizing)
200-period ATR bands prevent overexposure in choppy markets
Why 0.1% Commission?
Matches real-world trading fees:
IBKR: 0.05-0.1% for stocks (CLSK avg. spread = $0.03)
TradeZero: 0.1% for high-volatility small-caps
Alpaca: 0.0% base + ECN fees ≈ 0.08-0.12%
Why This Strategy is Unique
Bitcoin-Miner Alpha: Tailored to CLSK’s 0.82 BTC correlation
Dual-Confirmation Logic: VIDYA + Zero Lag EMA reduce false signals
3H Optimization: Captures CLSK’s post-market-open momentum surges
Execution Protocol
Green "Buy" Labels: Enter when VIDYA & ZLEMA align bullish
Red "Sell" Labels: Exit on bearish confirmation (manual OK)
API Automation: Recommended for <3H holds (CLSK gaps frequently)
Justification for Invite-Only Status
This indicator is offered as an Invite-Only script under PineAlpha Premium
Legal Disclaimer
This indicator is for educational purposes only and not financial advice. Crypto trading involves extreme volatility and risk of total loss. PineAlpha is not responsible for losses. Consult a licensed crypto advisor before trading.
LIQUIDITY ZONES + SWING TIMES (XAUUSD Only)This indicator show you the liquidity Zones on current time (On Any chart, On Any Time frame)
To understand this indicator, Contact admin on telegram
@WINGS_FOMO_KILLER
This indicator also show the Perfect Time Zone on XAUUSD, where you can get the SWINGS
To understand, Watch Below Video (Send Request and inform on given telegram ID @WINGS_FOMO_KILLER)
drive.google.com
3H ETH Long-OnlyDual-Mode Volatility Adaptive Strategy
Critical Automation Requirement
⚠ Options Component Must Be Automated via Broker API
This strategy combines:
- High-Frequency Options Signals (requires sub-second execution)
- 3H Swing Trade Alerts (manual execution acceptable)
Key Features
✔ ETH-Specific Volatility Adaptation:
VIDYA bands dynamically adjust to ETH's characteristic daily volatility
Zero-Lag EMA (59-period) optimized for crypto's 24/7 markets
✔ Institutional-Grade Timing:
200-period ATR bands trigger entries within 3 candles of volatility expansion
Momentum-confirmed entries reduce false signals in choppy markets
Risk Disclosures
Why 100% Equity Allocation?
ETH's high volatility justifies full-position sizing for momentum captures
Strategy includes built-in volatility filters (VIDYA + ATR bands)
Designed for $100k+ accounts (meets crypto margin requirements)
Why 0.1% Commission?
Matches real-world crypto trading fees:
IBKR Crypto: 0.08-0.12% (tiered volume)
Binance: 0.1% spot trading fee
Coinbase Pro: 0.15% maker/taker
Why This Strategy is Unique
Dual-Timeframe Logic: Combines:
Short-term options signals (automated)
3H swing trades (manual)
Volumatic™ Adaptive Bands: Self-adjusting to ETH's changing volatility regimes
Institutional Backtest Profile: 2.8:1 risk-reward ratio in ETH's characteristic momentum bursts
Execution Protocol
Red Labels: Swing trade sell signals (manual OK)
Green Labels: Swing trade buy signals (manual OK)
Options Signals: Must be automated via API (alpaca/ibkr)
Justification for Invite-Only Status
This indicator is offered as an Invite-Only script under PineAlpha Premium
Legal Disclaimer
This indicator is for educational purposes only and not financial advice. Crypto trading involves extreme volatility and risk of total loss. PineAlpha is not responsible for losses. Consult a licensed crypto advisor before trading.
Long-Only Swing SPY (1H)High-Conviction Momentum Trading with Smart Risk Controls
Key Features
✔ Dual-Filter Signals: MA crossover + RSI divergence = fewer false entries*
✔ Aggressive But Calculated: Full equity deployment for trending markets
✔ SPY-Optimized: Parameters tuned to SPDR S&P 500 ETF's unique volatility profile
Risk Disclosure & Justifications
Why 100% Equity Allocation?
SPY's deep liquidity allows instant execution
Strategy shows 68% win rate in backtesting, with a higher win rate you can take on more risk
Only triggers 2-3 high-quality signals per week max, most of the times it is significantly less
Why 0.1% Commission?
Matches real-world brokerage fees:
IBKR: 0.08-0.12% for ETFs
Fidelity: 0.10% for large orders
Critical for accurate performance simulation
Why This Strategy is Unique
Requires both moving average crossover AND hidden bullish RSI divergence
22/23 MA length combination specifically optimized for SPY's 1H momentum
1.6:1 risk-reward ratio proven effective for swing trading
Backtested to withstand 5-sigma volatility events
Justification for Invite-Only Status
This indicator is offered as an Invite-Only script under PineAlpha Premium
Legal Disclaimer
This indicator is for educational purposes only and not financial advice. Trading involves high risk, and you may lose your capital. PineAlpha is not responsible for losses. Consult a financial advisor before trading.
Six-Vein Sword Energy (Concept)Used Ai to give an Eli5 for the indicator if needed.
The "Six Experts" Indicator
Imagine you have a team of six different experts trying to decide if the price is going to go UP or DOWN.
One expert is good at spotting speed (Momentum).
Another is good at spotting if things are overbought or oversold (RSI & KDJ).
Another is good at seeing if we're in a clear trend (MACD & BBI).
This indicator is just a simple scoreboard for your team of six experts.
How to Read the Scoreboard
1. The Six Rows of Arrows
Think of each row as one expert's vote.
A Red Up Arrow (↑) means that expert gives a "Thumbs Up" 👍. They think the price looks strong and might go up.
A Green Down Arrow (↓) means that expert gives a "Thumbs Down" 👎. They think the price looks weak and might go down.
Sometimes, you'll see a column with both red and green arrows. That's because your experts don't always agree! Maybe the "speed" expert says things are strong, but the "overbought" expert says things have gone up too much. This is totally normal.
2. The Jagged White Line
This white line is the final score. It simply counts how many "Thumbs Ups" (red arrows) there are.
If the white line is at the very top (at 6), it means all six experts agree and are giving a "Thumbs Up".
If the white line is at the very bottom (at 0), it means all six experts are giving a "Thumbs Down".
If the line is in the middle (like at 4), it means you have 4 "Thumbs Ups" and 2 "Thumbs Downs".
How to Use It (The Simple Way)
Look for Strong Agreement:
When It's Mostly Red: If you see the indicator is almost completely filled with red arrows and the white line is high up (at 5 or 6), it means your expert team is shouting "Things look strong!". This is a good confirmation for looking to buy.
When It's Mostly Green: If you see the indicator is mostly filled with green arrows and the white line is very low (at 0 or 1), the team is screaming "Things look weak!". This is a good confirmation for looking to sell.
Look for Disagreement:
When It's a Messy Mix of Red & Green: If the arrows are all mixed up and the white line is bouncing around in the middle, it means your experts are arguing. The market is choppy and undecided. This is a sign that you should probably be careful and wait for a clearer signal.
The Golden Rule: This indicator is a helper. Always look at the price candles first, and then use this scoreboard to confirm if the market strength agrees with what you see.
ZenAlpha AI Strategy⚡ ZenAlpha AI Strategy
ZenAlpha AI Strategy is a precision-built, invite-only trading system powered by machine learning logic and institutional-level smart money concepts. Designed for serious traders, this AI-enhanced strategy identifies high-probability breakout zones and trend continuation setups across major Forex, Crypto, and Index markets.
✅ Key Features:
Smart Money Concept (SMC) based order block detection
Dynamic session-based breakout logic (Tokyo, London, New York) and work good with Indian Stock Market as well
Built-in AI filters to avoid false breakouts and trap zones
Adjustable Risk-Reward & Auto Stop Loss / Take Profit
Works Best on 15min, and 1H timeframes
🔐 Access:
This is a private invite-only strategy. Access is granted manually to approved traders.
📬 To request access or learn more about ZenAlpha AI Strategy, please contact us via TradingView DM or through our website/social media.
⚠️ Disclaimer:
This strategy is for educational and informational purposes only. Trading carries risk. Past performance does not guarantee future results. Use proper risk management and always test in a demo environment before going live.
Opening Range Breakout - ORB 15📈 Opening Range Breakout - ORB 15 v1.68
This indicator is based on the Opening Range Breakout (ORB) strategy, specifically tuned for the first 15 minutes of the trading session. It identifies and visualizes the ORB range, key levels, and alerts for breakouts during and shortly after the ORB window.
🔍 Features
Automatically detects the high and low during the ORB session (default 08:30–08:45).
Plots ORB High/Low lines with optional middle zone levels.
Fills the breakout zones with color shading.
Real-time and confirmed candle-close breakout alerts.
Optional on-chart label showing the size of the ORB range in points.
Label customization: background color, text color, text size.
Alert control: Only receive alerts within a user-defined time window after session start.
⚙️ Settings
ORB Session Time – Define the start and end of the opening range.
Alert Active Time (Hours) – Controls how long after the session alerts are allowed.
Show ORB Range Label – Toggle the on-chart label.
Label Styling Options – Adjust text size, color, and background.
🔔 Alerts
Break Above/Below ORB (real-time intrabar break)
Candle Closed Above/Below ORB (confirmed close outside the range)
✅ Use Cases
Scalping and intraday breakout strategies.
Morning volatility tracking.
Zone-based entries and stop placement.
Developed with performance and clarity in mind, this script gives traders a precise visual and alert-based system for trading early-session breakouts.
Let me know if you’d like a shorter version for the "short description" field too.