SNIPERKILLS-IB-HIGH-LOW+Exp-Move[D/W/M]Script Feature Checklist (Updated):
Initial Balance (IB) Calculation
Tracks IB High and IB Low during a user-defined session (default 9:30–10:30)
Plots IB High (blue), IB Low (red), and IB Midpoint (orange)
Expected Movement (EM) Calculation Using VIX
Calculates expected price move range based on VIX volatility index and previous close
Plots EM upper (EM+) and lower (EM-) levels (purple lines)
Optional rounding of levels to nearest multiple (spread input)
Displays two deviation levels (% deviations from EM):
First deviation (default 68%, orange dashed lines)
Second deviation (default 90%, blue dashed lines)
Labels for EM levels and deviations on chart
Summary table with Period, EM, VIX, Previous Close
Measured Move Targets Based on IB Range
Defines 3 long targets above IB High (multiples 1x, 2x, 3x)
Defines 3 short targets below IB Low (multiples 1x, 2x, 3x)
Plots these targets in green (long) and red (short)
Liquidity Sweeps Detection
Detects when price breaks/sweeps below IB Low or above IB High (liquidity grab)
Plots triangle shapes on bars showing IB Low Sweep (red) or IB High Sweep (blue)
Market Structure Shift (MSS) Detection
Detects bearish MSS (higher high + close lower) above IB High
Detects bullish MSS (lower low + close higher) below IB Low
Marks MSS signals with crosses: orange (bearish), green (bullish)
Trade Entry Markers Based on MSS
Short entry trigger if bearish MSS confirmed and close below previous low
Long entry trigger if bullish MSS confirmed and close above previous high
Plots labeled arrows: "AMD SHORT" (black label down), "AMD LONG" (lime label up)
Fair Value Gap (FVG) Detection
Detects potential Fair Value Gaps up and down
Plots small squares: green below bars (FVG Up), red above bars (FVG Down)
Simple Risk/Reward Levels
Defines take profit (TP) and stop loss (SL) levels for short and long entries based on fixed pip multiples
Plots TP and SL with colored circles on the chart
Alerts for Key Events
Alerts for IB Low Sweep and IB High Sweep
Alerts for MSS Bearish and MSS Bullish
Alerts for Short and Long entries
Order Block (OB) / CISD Candle Highlight
Detects large bearish displacement candle following bullish candle (CISD)
Highlights the previous candle (order block candle) in purple
Allows traders to anticipate potential reversals by visually identifying these order blocks
Wave Analysis
📈 Smart Alert System — EMA/MA/Volume/SMC AlertsHere's a detailed description of your custom TradingView **Pine Script v6**:
---
### 📌 **Title**: Smart Alert System — Webhook Ready (with EMA, MA, Volume, and SMC)
This script is designed to **monitor price behavior**, detect important **technical analysis events**, and **send real-time alerts via webhook to a Telegram bot**.
---
## 🔧 SETTINGS
| Setting | Description |
| ----------------------- | ------------------------------------------------------------------------------ |
| `volumeSpikeMultiplier` | Multiplier to determine a volume spike compared to the 20-bar average volume |
| `testAlert` | If `true`, sends a test alert when the indicator is first applied to the chart |
---
## 🔍 COMPONENT BREAKDOWN
### 1. **EMA & MA Calculations**
These indicators are calculated and plotted on the chart:
* **EMAs**: 13, 25, 30, 200 — used for trend and touch detection
* **MAs**: 100, 300 — used for break and retest detection
```pinescript
ema_13 = ta.ema(close, 13)
ema_200 = ta.ema(close, 200)
ma_100 = ta.sma(close, 100)
```
---
### 2. **📈 Volume Spike Detection**
* A volume spike is identified when the current bar's volume is **2x (default)** greater than the 20-period average.
* A red triangle is plotted above such candles.
* A **JSON alert** is triggered.
```pinescript
volSpike = volume > avgVol * volumeSpikeMultiplier
```
---
### 3. **📊 EMA Touch Alerts**
* The script checks if the current close is:
* Within 0.1% of an EMA value **OR**
* Has crossed above/below it.
* If so, it sends an alert with the EMA name.
```pinescript
touch(val, crossed) =>
math.abs(close - val) / val < 0.001 or crossed
```
---
### 4. **📉 MA Break and Retest Alerts**
* A **break** is when price falls **below** a moving average.
* A **retest** is when price climbs **above** the same average after breaking below.
```pinescript
breakBelow(ma) => close > ma and close < ma
```
---
### 5. 🧠 **SMC Alerts (Break of Structure \ & Change of Character \ )**
These follow **Smart Money Concepts (SMC)**. The script identifies:
* **BOS**: New higher high in uptrend or lower low in downtrend
* **CHOCH**: Opposite of trend, e.g. lower low in uptrend or higher high in downtrend
```pinescript
bos = (high > high ) and (low > low ) and (low > low )
choch = (low < low ) and (high < high ) and (high < high )
```
---
### 6. 🧪 Dummy Test Alert (1-time fire)
* Sends a `"✅ Test Alert Fired"` to verify setup
* Executes **once only** after adding the indicator
```pinescript
var bool sentTest = false
if testAlert and not sentTest
```
---
### 7. 🚀 Alert Delivery (Webhook JSON)
All alerts are sent as a JSON payload that looks like this:
```json
{
"pair": "BTCUSD",
"event": "🔺 Volume Spike",
"timeframe": "15",
"timestamp": "2024-06-29T12:00:00Z",
"volume": "654000"
}
```
This format makes it compatible with your **Telegram webhook server**.
---
### 🔔 Alerts You Can Create in TradingView
* Set **Webhook URL** to your `https://xxxx.ngrok-free.app/tradingview-webhook`
* Use alert condition: `"Any alert()`" — because all logic is internal.
* Select **"Webhook URL"** and leave the message body blank.
---
### 🛠️ Use Cases
* Notify yourself on **EMA interaction**
* Detect **trend shifts or retests**
* Spot **volume-based market interest**
* Get real-time **BOS/CHOCH alerts** for Smart Money strategies
* Alert through **Telegram using your Node.js webhook server**
---
Would you like me to break down the full Pine Script block-by-block as well?
TradeCrafted - "M" & "W" Pattern Detector for intraday traders🔍 TradeCrafted – “M” & “W” Pattern Detector for Intraday Traders
Spot Key Reversal Patterns. React Before the Crowd.
Chart patterns aren't just theory — they’re the visual footprints of market psychology. Among them, the “M” (double top) and “W” (double bottom) formations are some of the most powerful and time-tested signals used by professionals to anticipate trend reversals and breakout setups.
This premium intraday tool detects these crucial structures in real time, helping you:
🧠 Stay ahead of major intraday pivots.
⚠️ Avoid false breakouts by reading the market’s rhythm.
📊 Time your entries and exits around high-probability zones.
Unlike noisy oscillators or delayed signals, this pattern detector focuses on structural clarity, ensuring you're trading with the rhythm of the market, not against it.
✅ Why Traders Use It:
Helps confirm tops and bottoms with visual confidence.
Excellent for intraday scalping and reversal strategies.
Reduces overtrading by filtering out indecision zones.
Reinforces discipline by only acting when the pattern is confirmed.
⚡️ For Genuine & Serious Traders:
This is a premium script developed for disciplined intraday professionals.
📩 Interested in a trial? Send your TradingView username to:
📧 tradecrafted21@gmail.com
Trust the patterns. Respect the process.
TradeCrafted — where precision meets price action.
StockWhale Top/Bottom Finder Indicator🧭 StockWhale Top/Bottom Finder Indicator
A systematic signal framework for extreme market conditions
---
Executive Summary
The StockWhale Top/Bottom Finder Indicator is designed to identify **critical inflection points** in price action where markets demonstrate statistically significant deviation from normal conditions. Its primary purpose is to equip traders and investors with a **disciplined signal framework** for navigating extended market behavior—both at the base and peak of price cycles.
This tool enables structured decision-making during **temporary market mispricings**, whether they manifest as compressed pullbacks or overbought rallies, helping users capture edge without relying on conventional indicators.
---
Key Functional Benefits
What differentiates the StockWhale Top/Bottom Finder:
- Asymmetry Scanning : Flags signals only when price exhibits extreme deviation from recent structural norms
- Volatility-Adaptive Filtering : Adjusts to trending and mean-reverting conditions without manual tuning
- Cooldown Enforcement : Implements a smart delay after signals to avoid overlapping or impulse trades
- Precision Visual Cues : Color-coded candles and minimal labels make interpretation fast and actionable
- Macro-Aligned Structure : Respects long-term trend orientation to prevent countertrend noise
---
Deployment Guidelines
To maximize reliability and utility, use the following protocol:
1. Trade Entry
- When the Buy label appears , it reflects high-likelihood price undervaluation aligned with broader structure
- Entries should be executed promptly upon signal appearance on the chart
- For convenience, users can set an alert using the built-in `"StockWhale BUY Alert"` condition for favored tickers
2. Exit Management
- The TP (Take Profit) label designates a potential peak in pricing efficiency, often signaling pullbacks or slowdowns
- Choose one of two risk-aligned exit approaches:
- Full Exit : Immediately close the position upon TP signal appearance
- Scaled Exit : Gradually reduce exposure in stages, particularly in trending markets or layered positions
3. Strategy Context
The indicator performs exceptionally well when integrated with:
- Prior horizontal levels or high-volume zones
- Trend confirmation indicators (e.g., moving averages)
- Order flow or volume analysis overlays
4. Alert Setup
To automate decisions:
- Apply the indicator to watchlist tickers (e.g., V for Visa)
- Go to TradingView > Alerts > “Condition” > *StockWhale Top/Bottom Finder Indicator* > *StockWhale BUY Alert*
- Customize delivery and frequency as needed
---
Suggested Use Cases
- Identify undervalued pullbacks : Spot reentry opportunities during controlled corrections within established uptrends.
- Preempt peak exhaustion : Detect signs of overextension before momentum falters, enabling smart profit timing.
- Layer precision into portfolios : Improve cost basis and exit targeting when scaling positions across multiple assets.
- Risk-manage sentiment extremes : Maintain strategic discipline during news-driven volatility or emotional price spikes.
---
Final Perspective
The StockWhale Top/Bottom Finder isn’t about chasing every price blip—it’s built to highlight where price has structurally overcommitted . It’s engineered for professionals and serious retail traders who want to navigate volatility with intent, not emotion.
> When markets stretch too far in one direction, this tool doesn’t predict—it illuminates.
BB + Supertrend with One-Time 100 USD Half ExitUse these signals for 4 hour and above time frames. It shows an exit of 50% of your trade after 100 pip profit. This is best for crypto. For gold I would suggest exit half the position at 50 pips profit. You can then trail the rest of manage manually.
Works best with crypto and gold
Premium RSI Combo: CrossOverloadPremium RSI COMBO Indicator
!!! ONLY FOR CRYPTO ASSETS!!!
!!! Только для крипто-активов!!!
🌎 Types of Signals & System Logic
• Ticker Signal🔻(small red and green arrows) — local signal on a specific asset. This is the most frequent type, capturing short-term shifts in demand/supply pressure.
• Market Signal ⬇️(blue bidirectional arrows)— derived from USDT.D dominance, alt weakness, and the liquidity vector.
• COMBO Signal 🔽🔼 (large red and green arrows)— occurs when both above signals align. This is the strongest type.
👑 Premium ($65/month)
• Real-time signals
• All timeframes
• All signals + per-ticker sensitivity
• Custom webhook (with ID + TF)
• Full signal history
• Priority support (Telegram)
• Beta feature access
📝 Parameter Highlights
• Alerts — respond fast to entry/exit signals
• Market Signal — gauge overall trend
• Custom Signals (Premium) — quickly add alerts for all signal types across unlimited tickers, no need to manually enter ticker names or timeframes. Especially useful when tracking many assets — activate once, and alerts will flow automatically.
• Sensitivity Tuning (Pro/Premium) — allows you to adapt indicator behavior to each specific ticker. We've analyzed hundreds of altcoin charts to derive optimal average parameters, but each asset has unique structure, volatility, and dynamics. Fine-tuning gives traders more accurate and relevant signals.
PRO RSI Combo: CrossOverloadProfessional RSI COMBO Indicator
🌎 Types of Signals & System Logic
• Ticker Signal🔻(small red and green arrows) — local signal on a specific asset. This is the most frequent type, capturing short-term shifts in demand/supply pressure.
• Market Signal ⬇️(blue bidirectional arrows)— derived from USDT.D dominance, alt weakness, and the liquidity vector.
• COMBO Signal 🔽🔼 (large red and green arrows)— occurs when both above signals align. This is the strongest type.
📊 Professional ($40/month)
• Real-time signals
• All timeframes
• Full signal package
• Advanced webhook templates
• Signal history: 2500 bars
• No support, no extras
• Alerts — respond fast to entry/exit signals
• Market Signal — gauge overall trend
• Custom Signals (Premium) — quickly add alerts for all signal types across unlimited tickers, no need to manually enter ticker names or timeframes. Especially useful when tracking many assets — activate once, and alerts will flow automatically.
• Sensitivity Tuning (Pro/Premium) — allows you to adapt indicator behavior to each specific ticker. We've analyzed hundreds of altcoin charts to derive optimal average parameters, but each asset has unique structure, volatility, and dynamics. Fine-tuning gives traders more accurate and relevant signals.
Dow Theory Trend IndicatorIdentifies bullish (Higher Highs/Lows) and bearish (Lower Highs/Lows) trends using Dow Theory principles, with dynamic volume confirmation.
Displays the current trend status ("Bull", "Bear", or "Neutral")
HalfTrend with Cross SignalsKey Features:
HalfTrend Calculation:
Uses amplitude value (default 100)
Calculates based on highest/lowest prices and smoothed moving averages
Includes volatility adjustment using ATR
Signal Detection:
Buy signals when price closes ABOVE HalfTrend line
Sell signals when price closes BELOW HalfTrend line
Uses actual candle close prices for reliable signals
Visual Elements:
Plots HalfTrend line in blue
Shows green "BUY" labels below bars
Shows red "SELL" labels above bars
Alerts created for both signal types
Input Customization:
Adjustable amplitude parameter
Min value constrained to 1
Usage:
Apply to any chart
Signals appear at the close of the candle that crosses the HalfTrend line
Alerts can be set for automated notifications
S.E.A.L. by NightPoetsch V2.1SEAL Advanced Signal Entry Suite 🚩
Invite-Only | Multi-Confluence Trade Planner
1 · What It Does — Plain English
SEAL stacks up to nine filters on top of a WaveTrend buy/sell dot to create two classes of alerts:
• Sniper = all selected filters pass (A-grade entry)
• Potential = primary trend filters pass, a secondary filter fails (setup)
When any chosen alert fires, the script instantly plots user-defined Take-Profit 1-3 and Stop-Loss levels so you have a complete trade plan before clicking “Buy”.
2 · Classic Components (with our twists)
VuManchu Cipher B WaveTrend + MFI — added Sniper/Potential toggles & dot-offset slider
Three EMAs — any timeframe & length, dashboard shows bull/bear stack
RSI filter — threshold input, optional “RSI > MA” check
MACD filter — bull/bear cross must occur within last N candles
VWAP filter — price relation to VWAP & WaveTrend zero-line
Volume pulse — current bar volume must exceed VMA-20 when enabled
Session boxes & session-to-session range shading (Tokyo, Sydney, London, New York)
Risk-map module — plots TP1-TP3 & SL from % inputs
3 · Original Confluence Engine (Step-By-Step)
1. WaveTrend prints a dot (green = bullish, red = bearish).
2. Script checks your Look-Back Window (1-25 candles).
3. Within that window it cascades each ON filter:
• Time-of-day session
• RSI threshold
• MACD recent cross
• VWAP & MFI bias
• EMA stack confirmation
• Volume spike vs VMA-20
4. If criteria pass, it labels the bar (Sniper triangle or Potential arrow).
5. Entry, TP1/2/3, SL are projected and included in the alert message.
4 · Inputs & Workflow (Key Fields)
Signal type toggle: Sniper / Potential / Both
Look-Back Window: 1-25 candles
Session selector: Tokyo · Sydney · London · New York
Filter switches: RSI level · MACD window · VWAP bias · MFI · Volume pulse
EMA dashboard: timeframe & length for short / mid / long EMAs
Risk plan: TP1-TP3 % and SL %
Alerts: three ready presets; uses {{ticker}} in the message
Quick-start-tip: keep every filter ON (Sniper) and a 10-candle window, then loosen as you experiment.
5 · Why Traders Pay for SEAL
Speed – one click replaces multi-chart confluence-checking.
Consistency – mechanical rules reduce emotional errors.
Context – session boxes, EMA heat-map & risk bands keep the big picture in view.
The suite comes with a full video course, eBook and Discord mentorship so you understand every rule before risking capital.
6 · Credits & Open-Source Acknowledgements
WaveTrend/MFI logic adapted from VuManchu Cipher B (© VuManchu, GPL-3).
RSI, MACD, VWAP, EMA & Volume functions use TradingView built-ins.
Reused code is < 15 % of total and heavily extended with proprietary filtering, session handling and risk-plot modules.
7 · Disclaimer
For educational purposes only. SEAL Trading Systems is not a licensed financial adviser. Nothing here is financial advice or a recommendation. Past performance ≠ future results. Always do your own research and manage risk.
Screenshots
Sniper Entry with take profit, entry and stop loss points. All those points were set automatically based on the users selected values. In this case, it was a stop loss of 1%, Take Profit when price increased by 2%, Take Profit increase of 3% and Take Profit 3 increase by 4%.
Potential entry as per individual criteria set by the user.
No entry as yet but we will need to look for more confluences to consider entry and increase the chances for a successful trade. As you can see, the trend is bearish and this would also have been a successful trade. Confluences are discussed, demonstrated and taught in our private discord channel, in the eBook and also in the User Video.
Shortly we will also upload screenshots where you can see all the settings you can individually toggle on and off etc.
S.E.A.L. by NightPoetsch V2.1SEAL Advanced Signal Entry Suite 🚩
Invite-Only | Multi-Confluence Trade Planner
1 · What It Does — Plain English
SEAL stacks up to nine filters on top of a WaveTrend buy/sell dot to create two classes of alerts:
• Sniper = all selected filters pass (A-grade entry)
• Potential = primary trend filters pass, a secondary filter fails (setup)
When any chosen alert fires, the script instantly plots user-defined Take-Profit 1-3 and Stop-Loss levels so you have a complete trade plan before clicking “Buy”.
2 · Classic Components (with our twists)
VuManchu Cipher B WaveTrend + MFI — added Sniper/Potential toggles & dot-offset slider
Three EMAs — any timeframe & length, dashboard shows bull/bear stack
RSI filter — threshold input, optional “RSI > MA” check
MACD filter — bull/bear cross must occur within last N candles
VWAP filter — price relation to VWAP & WaveTrend zero-line
Volume pulse — current bar volume must exceed VMA-20 when enabled
Session boxes & session-to-session range shading (Tokyo, Sydney, London, New York)
Risk-map module — plots TP1-TP3 & SL from % inputs
3 · Original Confluence Engine (Step-By-Step)
1. WaveTrend prints a dot (green = bullish, red = bearish).
2. Script checks your Look-Back Window (1-25 candles).
3. Within that window it cascades each ON filter:
• Time-of-day session
• RSI threshold
• MACD recent cross
• VWAP & MFI bias
• EMA stack confirmation
• Volume spike vs VMA-20
4. If criteria pass, it labels the bar (Sniper triangle or Potential arrow).
5. Entry, TP1/2/3, SL are projected and included in the alert message.
4 · Inputs & Workflow (Key Fields)
Signal type toggle: Sniper / Potential / Both
Look-Back Window: 1-25 candles
Session selector: Tokyo · Sydney · London · New York
Filter switches: RSI level · MACD window · VWAP bias · MFI · Volume pulse
EMA dashboard: timeframe & length for short / mid / long EMAs
Risk plan: TP1-TP3 % and SL %
Alerts: three ready presets; uses {{ticker}} in the message
Quick-start-tip: keep every filter ON (Sniper) and a 10-candle window, then loosen as you experiment.
5 · Why Traders Pay for SEAL
Speed – one click replaces multi-chart confluence-checking.
Consistency – mechanical rules reduce emotional errors.
Context – session boxes, EMA heat-map & risk bands keep the big picture in view.
The suite comes with a full video course, eBook and Discord mentorship so you understand every rule before risking capital.
6 · Credits & Open-Source Acknowledgements
WaveTrend/MFI logic adapted from VuManchu Cipher B (© VuManchu, GPL-3).
RSI, MACD, VWAP, EMA & Volume functions use TradingView built-ins.
Reused code is < 15 % of total and heavily extended with proprietary filtering, session handling and risk-plot modules.
7 · Disclaimer
For educational purposes only. SEAL Trading Systems is not a licensed financial adviser. Nothing here is financial advice or a recommendation. Past performance ≠ future results. Always do your own research and manage risk.
Request Access
Send a private message or visit sealtradingsystems.com to join the Discord community and unlock the script.
ZY Legend StrategyZY Legend Strategy indicator follows the trend, sets up transactions and clearly shows the transactions it opens on the chart. SL is not used in the strategy, instead, additions are made to positions.
EMA CCI SSL BUY SELL Signal [CongTrader]📌 Indicator Description
EMA CCI SSL BUY SELL Signal is a powerful trading tool that combines HTF SSL Channel, EMA trend filtering, and precise crossover-based signals to generate high-probability BUY and SELL entries.
It is designed to work effectively in crypto, forex, and stock markets, especially on 15m, 1H, and 4H timeframes.
🔍 Key Features:
✅ Clear BUY / SELL labels with visual markers.
📈 EMA trend filter helps eliminate false signals in sideways or weak trend markets.
⏫ SSL Channel is calculated from higher timeframe data for increased accuracy.
🔔 Built-in alerts to notify you when a new signal is triggered.
🧠 Informative price & percentage change table shown directly on the chart.
📊 Regression channel included to help analyze trend direction visually.
🧾 How to Use
Add the indicator to your chart and choose your preferred timeframe (recommended: 15min, 1H, or 4H).
Customize the EMA length and switch between Auto / Manual HTF Mode to suit your strategy.
Watch for:
BUY signals with green “BUY” labels and upward arrows.
SELL signals with red “SELL” labels and downward arrows.
Signal table showing entry price and % change since signal.
Enable alerts to be notified of new BUY/SELL signals.
For best results, combine this tool with your own price action analysis and risk management strategy.
🙏 Thank You
Thank you for using the CongTrader indicator!
We strive to provide useful and easy-to-understand trading tools to help traders across different markets.
If you find this indicator helpful, please consider leaving a like ❤️, sharing your feedback, or recommending it to others in the community!
⚠️ Disclaimer
This is a technical analysis tool intended for educational and informational purposes only.
It does not constitute financial or investment advice.
Past performance is not indicative of future results. Always trade responsibly and use proper risk management.
EMA Buy Sell Signal, SSL Channel Indicator, HTF Trend Filter, Crypto Signal Tool, Forex Buy Sell Alert, CongTrader Indicator, TradingView Signal Script, EMA Crossover Strategy, Regression Channel, Best TradingView Indicator.
Sena Zigzag Swing High-Low MarkerSena Zigzag Swing High-Low Marker analyzes price movements to detect swing points such as highs and lows, then connects them using a zigzag structure for clear market visualization. It’s a powerful visual tool for traders who focus on price structure and turning points.
What It Does:
Identifies swing structures including:
Swing High (Higher High – HH)
Swing Low (Lower Low – LL)
Lower High (LH)
Higher Low (HL)
Marks these points on the chart using color-coded labels:
🟩 Green: Higher Highs and Higher Lows
🟥 Red: Lower Highs and Lower Lows
Connects swing points with zigzag lines to reveal wave formations and market structure.
Where It’s Useful:
In price action strategies
For identifying trend direction and trend reversals
To determine support and resistance levels
In detecting classical chart patterns like head and shoulders, wedges, triangles, etc.
Settings & Customization:
The zigzag depth parameter can be adjusted to better fit different timeframes.
Users should optimize settings (depth, sensitivity) based on their preferred chart and trading style.
It is flexible and adaptable for multi-timeframe use.
Important Notes:
This indicator is developed for educational and technical analysis purposes only.
It does not generate buy or sell signals.
As it relies on a rule-based algorithm, it cannot interpret context like the human eye.
Final decisions should always be supported by manual analysis.
I hope this tool helps you improve your price structure analysis and chart reading skills.
— Developer: C. İnanç ÖZYALIM | Dedicated to Sena ❤️
Breakouts with Trailing Stops V6 + AlertsBreakouts with Trailing Stops in Trading
Breakout trading is a strategy where traders aim to profit from an asset's price moving outside a defined support or resistance level, signaling a potential new trend. Trailing stops are a key risk management tool often used with breakouts to protect profits and limit potential losses.
What is a breakout?
A breakout occurs when an asset's price moves decisively above a resistance level (for a bullish breakout) or below a support level (for a bearish breakdown). This often signals increased momentum and potential for a significant price movement in the direction of the breakout.
Why use trailing stops with breakouts?
Trailing stops are particularly useful in breakout trading because they allow traders to capture potential profits as the price moves in their favor, while automatically adjusting to protect against sudden reversals.
How do trailing stops work with breakouts?
Initial Stop-Loss: When entering a breakout trade, a traditional stop-loss order is placed at a predetermined level to limit potential losses if the price reverses. For example, in a long position after a resistance breakout, the initial stop-loss might be placed below the former resistance level (which can now act as support).
Trailing Stop Activation: Once the price moves a favorable distance beyond the entry point, the trailing stop loss is activated. As highlighted by StoneX, it is a dynamic order that follows the price as it continues to move in the desired direction, maintaining a set distance below (for a long position) or above (for a short position) the current market price.
Profit Locking: If the price continues to rise (or fall for a short position), the trailing stop will move with it, "locking in" profits by raising the stop-loss level.
Exit Strategy: If the price reverses and hits the trailing stop, the position is automatically closed, ensuring that the trader retains a portion of the gains made while in the trade.
Advantages of using trailing stops with breakouts:
Locks in profits: Trailing stops help protect profits generated from successful breakout trades.
Automates exits: They automate the exit process, helping traders avoid emotional decision-making when the price reverses.
Allows for potential gains: They allow traders to stay in profitable trades as long as the trend continues.
Disadvantages of using trailing stops with breakouts:
Whipsaw risk: In volatile markets, the trailing stop may be triggered prematurely by minor price fluctuations.
Potential for missed gains: If the trailing stop is set too tightly, it may prevent the trader from capturing the maximum potential gains if the price experiences a minor pullback before continuing in the desired direction.
Tips for using trailing stops with breakouts:
Consider the asset's volatility: Adjust the trailing stop distance based on the asset's volatility to minimize the risk of premature stops.
Test different trailing stop methods: Experiment with different trailing stop methods to find what works best for your trading style and the specific asset you are trading.
Backtest your strategy: Before applying a trailing stop strategy to live trading, backtest it on historical data to evaluate its performance under different market conditions.
Combine with other indicators: Use other technical indicators, such as volume or momentum oscillators, to confirm the validity of breakouts and improve the effectiveness of your trailing stop strategy.
By carefully considering the market dynamics, using appropriate indicators, and implementing proper risk management techniques, traders can effectively utilize trailing stops with breakouts to capture potential profits while minimizing risk.
Have a good trade.
Trend Direction (OTC)Trend Direction (OTC)
Welcome, and thank you for your interest in the Trend Direction (OTC) indicator. This is a private, invite-only tool designed to provide a clear and objective view of market structure and trend dynamics.
Overview
The primary goal of Trend Direction (OTC) is to declutter your charts and help you visually identify the prevailing market trend through a sophisticated analysis of swing points. By automatically plotting key structural points in the market, it helps traders see the bigger picture and make more informed decisions based on classic price action principles.
This indicator is suitable for all markets (Forex, Crypto, Stocks, Indices) and works on any timeframe.
Features
Intelligent Swing Detection: Automatically identifies and plots significant market swing points.
Market Structure Labels (HH, LL, LH, HL): Get instant context on the trend's health. The indicator clearly labels swing points as Higher Highs (HH), Lower Lows (LL), Lower Highs (LH), and Higher Lows (HL), allowing you to see trend continuation and potential reversals at a glance.
Trend Dashboard: A simple, color-coded dashboard in the corner of your chart provides a real-time assessment of the trend, classifying it as "Confirmed," "Unconfirmed". This helps filter out market noise and provides an extra layer of confirmation.
Customizable Display: You have full control over the visual elements.
Adjust the sensitivity of the swing detection to focus on either short-term or long-term trends.
Toggle the visibility of trend lines and labels.
Limit the number of historical swings shown on the chart to keep your workspace clean.
Customize all colors to match your chart's theme.
How to Use
The Trend Direction (OTC) indicator is designed to be intuitive. Here’s a simple guide to interpreting its signals:
Identifying an Uptrend: Look for a consistent series of HH (Higher Highs) and HL (Higher Lows). The dashboard will likely show a "Bullish" status. A break of this pattern (e.g., the formation of an LH or LL) could signal a potential change in trend.
Identifying a Downtrend: Look for a consistent series of LH (Lower Highs) and LL (Lower Lows). The dashboard will likely show a "Bearish" status. A break of this pattern (e.g., the formation of an HL or HH) could signal that the downtrend is weakening.
Ranging or Choppy Markets: In sideways markets, you will see an alternating series of swings without clear direction. The dashboard will likely read "Neutral" or flip between "Unconfirmed" states. This can be useful for avoiding low-probability setups.
Settings
Swing Detection:
Pivot Lookback: The core setting for sensitivity. Higher values = less sensitive (major swings). Lower values = more sensitive (minor swings).
Display Options:
Show Swing Labels: Toggles the HH/LL/etc. labels.
Show Trend Lines: Toggles the zig-zag lines connecting the swings.
Show Last Swings: Set to 0 to see all historical swings, or enter a number to see only the most recent ones.
Color Settings: Customize the colors of all lines and labels to your preference.
Disclaimer: The Trend Direction (OTC) indicator is a tool for analysis and should not be considered financial advice. It is designed to assist in your trading decisions, not to make them for you. Always use proper risk management. Past performance is not indicative of future results.
ICT Setup 04 [TradingFinder] SFP Sweep Liquidity Fake CHoCH/BOS🔵 Introduction
In smart money and ICT based trading, liquidity is never random. Some of the most meaningful market moves begin with a liquidity sweep where price intentionally hunts a previous swing high or swing low to trigger stop loss orders and absorb volume.
This manipulation is often followed by a sharp reversal from a reaction zone, creating ideal conditions for a high probability entry. This indicator is built to detect exactly that. It identifies a valid swing point and defines a reaction zone where price is likely to react.
For short setups, the zone lies between the swing high and the maximum of the candle’s open or close. For long setups, it’s drawn from the swing low to the minimum of the open or close.
When price returns to this zone and forms a qualified confirmation candle typically a doji or a small bodied candle that closes inside the zone while sweeping the liquidity this is a potential sign of reversal.
The candle must show both the sweep and the inability to hold above or below the key level, signaling a fake breakout or failed move. By combining elements of liquidity hunt, reaction zone rejection, and candle based entry confirmation, this tool highlights sniper entry points used by smart money to trap retail traders and reverse the trend. It helps filter out noise and enhances timing, making it ideal for trading in alignment with institutional order flow.
Long Position :
Short Position :
🔵 How to Use
This indicator is designed to highlight precise moments where price sweeps liquidity and reacts within a high probability reversal zone. By identifying clean swing highs and lows and defining a smart reaction zone around them, it filters out weak fakeouts and focuses only on setups with strong institutional footprints.
The tool works best when combined with market structure analysis and is suitable for both scalping and intraday trading. Below is a breakdown of how to interpret the signals for long and short positions based on the visual setups provided.
🟣 Long Setup
In a long setup, the indicator first detects a valid swing low where liquidity has likely accumulated below. A reaction zone is then drawn between the swing low and the minimum of the open or close of the swing candle.
When price returns to this zone, it must sweep the previous low and form a precise confirmation candle, such as a doji or a small bodied candle, that closes inside the zone. This candle must also reject the lower level, showing failure to continue downward.
As shown in the chart, once the liquidity grab is complete and the confirmation candle forms, a clean long signal is issued, indicating a potential bullish reversal backed by smart money behavior.
🟣 Short Setup
In a short setup, the indicator identifies a swing high where buy-side liquidity is resting. It then constructs a reaction zone between the high and the maximum of the open or close of the swing candle. Price must return to this zone, sweep the swing high, and form a bearish confirmation candle inside the zone.
A classic example is a doji or rejection candle that traps breakout buyers and fails to hold above the previous high. In the provided chart, the price aggressively hunts the liquidity above the swing high, but the close within the reaction zone signals exhaustion, prompting a short signal with high reversal probability.
These setups represent moments where price action, liquidity behavior, and candle structure align to offer strong entries. By focusing on clean sweeps and reactive confirmations, the indicator helps traders stay on the side of smart money and avoid common breakout traps.
🔵 Settings
🟣 Logical settings
Swing period : You can set the swing detection period.
Max Swing Back Method : It is in two modes "All" and "Custom". If it is in "All" mode, it will check all swings, and if it is in "Custom" mode, it will check the swings to the extent you determine.
Max Swing Back : You can set the number of swings that will go back for checking.
Maximum Distance Between Swing and Signal :The maximum number of candles allowed between the swing point and the potential signal. The default value is 50, ensuring that only recent and relevant price reactions are considered valid.
🟣 Display settings
Displaying or not displaying swings and setting the color of labels and lines.
🟣 Alert Settings
Alert SFP : Enables alerts for Swing Failure Pattern.
Message Frequency : Determines the frequency of alerts. Options include 'All' (every function call), 'Once Per Bar' (first call within the bar), and 'Once Per Bar Close' (final script execution of the real-time bar). Default is 'Once per Bar'.
Show Alert Time by Time Zone : Configures the time zone for alert messages. Default is 'UTC'.
🔵 Conclusion
This indicator is built for traders who rely on liquidity driven setups and smart money principles. By combining swing structure analysis with precision reaction zones and strict entry confirmation, it isolates the exact moments where price sweeps liquidity and fails to continue. These are high value points where institutional activity often reveals itself, and retail traps unfold.
Unlike generic breakout tools, this script focuses on quality over quantity by requiring both a sweep of a swing high or low and a confirmed rejection candle that closes inside a predefined zone. With customizable swing depth, proximity filters, visual highlights, and alert functions, it offers a complete framework for identifying and acting on fake breakouts with confidence. Whether you trade forex, crypto, or indices, this tool enhances your ability to align with true order flow and take entries where liquidity is most likely to shift.
🕵️ Spy StepRange Hybrid v2.0NOW THATS I WANT! OH yaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaa
TZADIKAOT - Triple Convergence🚀 *TZADIK – Triple Convergence*
The ultimate convergence indicator that brings clarity through the power of consensus.
*What’s Inside?*
A smart fusion of *3 powerful momentum-based indicators*:
* *SMI (Stochastic Momentum Index)*
* *Stochastic RSI*
* *CCI Stochastic*
📊 Each one generates its own buy/sell signal — and TZADIKAOT combines them into a clear, unified consensus:
* ✅ *3/3 BUY / SELL* – Strong entry signals
* ⚠ *2/3 BUY / SELL* – Moderate signals worth watching
* ⚪ *Neutral* – No consensus yet
🎯 *Features*:
✔ Dynamic score histogram
✔ Color-coded background zones
✔ Visual arrows + status labels
✔ Real-time signal table
✔ Built-in alerts for full consensus
*Who is it for?*
Traders who want structured, data-driven signals instead of noise — and a single, trustworthy indicator to guide their decisions.
💡 Designed for clarity, precision, and ease of use on *any timeframe*. No more guesswork. Just signals that matter.
The Dow Theory - Linear Regression Channel - Minor TrendI've seen many indicators using the linear regression channel. However, their main drawback is that they average price over a fixed number of candles. The channel lines themselves are based on smoothed prices and a smoothed calculation of the width.
I didn’t want to follow the same approach — I wanted something that doesn’t rely on price averages. Something that can read the market segment by segment.
So I switched to a different approach, and that’s when I discovered Dow Theory.
I began by analyzing the smallest wave that can be meaningfully studied — and this is it: the minor trend of Dow Theory.
All market phases are present, even within a minor trend.
Accumulation and distribution phases are represented by black lines, while wave up or down movements are marked with orange or blue (you can customize these colors).
Main Features:
Continuous linear regressions with no gaps. No repainting. No price smoothing used.
Customizable colors for uptrend, downtrend, and sideways phases.
Can be used to identify structure alignment across minor, intermediate, and primary trends.
Enjoy.
Single Line Fibs with Strict Overlap CheckSingle Line Fibs with Strict Overlap Check
Overview:
The "Single Line Fibs with Strict Overlap Check" indicator is a sophisticated tool designed for technical analysts and traders focusing on Elliott Wave theory. This indicator overlays Fibonacci retracement and extension levels on a price chart, specifically tailored for a single zigzag line (Line 2), to identify potential support, resistance, and impulse wave targets. It incorporates a strict overlap check to ensure valid impulse waves, adhering to Elliott Wave principles.
Key Features:
Zigzag Detection: Utilizes pivot highs and lows based on customizable lengths (White ZigZag: 2 bars, Yellow ZigZag: 15 bars) to construct a zigzag pattern.
Fibonacci Levels:
Retracements: 0.236, 0.382, 0.5, 0.618, 0.786 (gray, 50% transparency).
B Wave Extensions: 1.236, 1.386 (orange, 50% transparency).
Impulse Extensions: 1.0, 1.236, 1.386, 1.618 (green, 50% transparency), drawn from the next pivot low if valid.
Wave Count Filter: Displays Fibonacci levels only when the internal wave count from Line 1 reaches or exceeds a user-defined threshold (default: 5).
Overlap Validation: Implements a strict overlap check per Elliott Wave rules. If the next pivot low overlaps the previous high, no Impulse extensions are drawn, and a red 'X' (50% transparency) marks the invalid pivot low.
Customization:
White ZigZag Length: Adjusts the sensitivity of the initial pivot detection.
Yellow ZigZag Length: Sets the primary zigzag length.
Min Line 1 Waves for Line 2 Fib: Defines the minimum wave count threshold.
Enable Overlap Removal: Toggles the overlap validation feature.
Usage:
Apply the indicator to your chart (e.g., 30-minute timeframe).
Adjust input parameters to match your trading strategy (e.g., length2 = 15, waveThreshold12 = 5).
Observe Fibonacci levels appearing at pivot highs when the wave count threshold is met. Impulse extensions will only plot after a valid pivot low below the previous high.
Use the red 'X' as an alert for invalid impulse waves, indicating potential trend reversals or corrections.
Interpretation:
Retracements: Identify potential support levels within the upwave.
B Wave Extensions: Highlight extended correction targets.
Impulse Extensions: Project potential price targets for the next wave, valid only if the overlap check passes.
Red 'X': Signals an invalid impulse wave, suggesting a review of wave structure.
Limitations:
Designed for a single zigzag line; multi-line analysis requires additional customization.
Performance may vary with highly volatile instruments or short timeframes due to pivot sensitivity.
Author: Developed by ScottDog for TradingView users, this indicator leverages advanced Pine Script v6 features for precise wave analysis.
Version: 1.0 (Fail-Safe)
Last Updated: June 24, 2025
TS Multi-Indicator Trend Detector📌 TS Multi-Indicator Trend Detector
This indicator is built for traders who want trend confirmation from multiple technical signals before making a move. It combines 5 powerful trend indicators—EMA, RSI, MACD, ADX, and DMI—into a single score system.
🔍 How It Works
If at least 3 of the 5 indicators confirm a trend, the script plots a floating trend line above the price:
• Yellow Line = Bullish Trend Detected
• Blue Line = Bearish Trend Detected
This makes it easier to visually identify trend bias and filter noise from the market.
🧠 Why It’s Useful
• Helps avoid false signals by requiring confirmation from multiple sources
• Works on any timeframe and instrument
• No repainting
• Fully customizable input values
• Designed for traders who prefer confirmation-based strategies
⸻
✅ Step 3: Screenshots for Publishing
Take 2–3 screenshots on different chart types and timeframes, for example:
1. 1-hour chart on NASDAQ
2. Daily chart on EUR/USD
3. 15-min chart on BTC/USD
Make sure both yellow (bullish) and blue (bearish) lines are shown if possible.