Pro Day Trader (v6)The Pro Day Trader (v6) is a comprehensive overlay indicator designed for intraday trading on TradingView. It generates buy and sell signals based on trend, momentum, and volatility filters, while incorporating session-based levels and risk management tools. Optimized for stocks and futures, it features auto-profiling to adapt settings by asset type and price range, ensuring reliable performance across various markets. Signals are plotted as triangles with stops and targets, supported by visual aids like a dashboard and alert conditions.
Key Features
Trend and Momentum Detection: Utilizes fast and slow EMAs (default 9/21) for crossovers, combined with RSI (default length 14) thresholds to confirm momentum. Optional higher-timeframe (HTF) EMA filter (default 200-period on 60m) aligns trades with broader trends.
Volatility and Risk Controls: Employs ATR (default length 14, multiple 1.5) for dynamic stops (Chandelier or offset modes) and targets (default 2R). Includes a minimum ATR floor to filter low-volatility conditions, with auto-tuning for sub-5m charts.
Session and Time Filters: Restricts signals to Regular Trading Hours (RTH, customizable), with options to avoid lunch periods or include extended hours for stocks. Anchors VWAP to RTH sessions, with SMA fallback for volume-unavailable feeds.
Levels and Ranges: Plots Opening Range (OR, default 30 minutes), previous high/low/close, pivots (PP, R1/S1, R2/S2), and Central Pivot Range (CPR) for support/resistance visualization.
Auto-Profiling and EZ Mode: Automatically adjusts parameters based on symbol type (stocks, futures, or other) and price level. EZ Mode simplifies configuration via a single "Signal Intensity" slider (1-5), overriding presets for conservative to aggressive trading.
Visuals and Diagnostics: Colors bars by regime, displays a customizable dashboard with key metrics (e.g., ATR, HTF trend, VWAP side), and optional debug pins to identify missed signals due to filters.
Alerts: Triggers for long/short entries, plus crossovers of OR highs/lows and pivot points.
How It Works
Signals occur on EMA crossovers filtered by RSI gates (e.g., RSI ≥52 for longs), gate modes (HTF and/or VWAP alignment), ATR thresholds, and time windows. Long signals require an upward trend, bullish momentum, and sufficient volatility; shorts follow inverse logic. Stops and targets are calculated dynamically, with risk expressed in points or dollars (accounting for point value, e.g., 50 for ES futures).
Customization
Inputs are grouped for ease:
Trend & Momentum: Adjust EMAs, HTF filter, RSI levels, and gate modes ("Both", "Either", or "None" for HTF/VWAP requirements).
Volatility & Risk: Tune ATR settings, stop modes, and target R-multiple.
Session, VWAP & Opening Range: Define RTH sessions, avoid periods, OR duration, and VWAP options.
Levels: Pivots & Previous: Toggle visibility of pivots, CPR, and prior session levels.
Auto Profile: Enable auto-detection or manual overrides; auto-tunes RSI for stocks based on price.
EZ Controls: Activate for simplified intensity-based presets (overrides other modes for quick setup).
Visuals & Alerts: Control bar coloring, dashboard compactness, stop/target plots, diagnostics, and alerts.
Usage Tips
Best suited for intraday charts (1m-15m) on US stocks or futures like ES/NQ. For non-US assets, disable auto-profile and set manual market type.
Use EZ Mode for beginners: Intensity 1-2 for fewer, higher-quality signals; 4-5 for scalping.
Monitor the dashboard for real-time context, and enable diagnostics to understand filter impacts.
Backtest on historical data to refine inputs; note that signals are non-repainting due to lookahead_off in security calls.
Requires volume data for accurate VWAP; fallback SMA ensures functionality on thin feeds.
This indicator promotes disciplined trading by combining multiple filters, reducing noise while highlighting high-probability setups. For support or feedback, refer to TradingView's community discussions.
移動平均線
Amazin FX Bot 2What this strategy does
This strategy implements a UT-style ATR trailing stop with a simple flip logic:
Long bias when price is above the dynamic ATR stop and a 1-period EMA crosses above the stop.
Short bias when price is below the stop and the 1-EMA crosses below it.
Once in a position, the script attaches a bracket: stop-loss and take-profit expressed in ticks from the average fill price.
Optional Heikin-Ashi source can be used to smooth signals (calculated via request.security() — no lookahead).
It’s designed to be simple, reproducible, and easy to optimize on intraday charts.
How to use
Add to chart (any market/timeframe). Default settings are conservative.
Choose source:
Keep Heikin-Ashi = off to use the regular chart price, or
Turn Heikin-Ashi = on to compute signals from HA close (entries/exits can shift vs. regular candles—this is expected).
Set your brackets in ticks:
Stop Loss (ticks)
Take Profit (ticks)
These are multiplied by the symbol’s syminfo.mintick.
Position sizing:
Contracts per trade controls fixed size. (Pyramiding is off—one position per side.)
Backtest window:
Use From and To dates to constrain the test to a specific period.
Run the backtest and tune inputs.
Alerts (optional): create a strategy alert with “Order fills only” to be notified on entries/exits.
自适应移动平均线通道策略(成交量加权+权重平滑)Signal Generation: Buy Signal: Price crosses above the upper band (▲).
Sell Signal: Price crosses below the lower band (▼).
Trading Logic: Long Entry: Opens a position on upper band breakout.
Close Position: Closes on lower band breakout or 3% stop-loss trigger.
Visualization: FRAMA Line: Green for bullish, orange for bearish trends.
Candle Coloring: Green for bullish, red for bearish.
Upper/Lower Bands: Semi-transparent green (upper) and orange (lower).
Signal Markers: Buy (green ▲ below bars), sell (red ▼ above bars).
Use Cases Ideal for trending markets (e.g., stocks, futures, forex), especially where volume drives price action.
Suitable for various timeframes (e.g., 1-minute, 1-hour, daily), with parameter tuning advised.
Operating InstructionsAdding the Strategy Copy and paste the code into TradingView’s Pine Script editor (version 6) and save.
Add to chart: Click “Add to Chart” to overlay on the price chart.
Parameter Settings Source: Select price data type (e.g., “close,” “hl2,” default: “close”).
Average Length: Set FRAMA period (default: 50, adjust for timeframe).
Base RAA Multiplier: Base channel width multiplier (default: 1.15, higher values widen channels).
Weight Smoothing Period: EMA period for volume weight smoothing (default: 50).
Show Trend Signals: Enable to display buy/sell signals (default: enabled).
Color Candles Based on Trend: Enable candle coloring by trend (default: enabled).
Bullish/Bearish Candle Color: Customize colors (default: green for bullish, red for bearish).
Chart Output FRAMA Line: Adaptive average, green for bullish, orange for bearish.
Upper/Lower Bands: Semi-transparent green/orange, volume-adjusted.
Signal Markers: Buy (green ▲ below bars), sell (red ▼ above bars).
Candle Coloring: Bullish candles green, bearish red.
Trading Execution Automated Trading: Enable in Strategy Tester for automatic trade execution.
Stop-Loss: Fixed at 3% below entry price.
Initial Capital: Default 100,000 (adjustable).
Backtesting and Optimization Review metrics (win rate, profit factor, drawdown) in Strategy Tester.
Optimization tips: Short timeframes (e.g., 1-minute): Reduce length (e.g., 10–20) and weight_smooth (e.g., 10–20).
Volatile markets: Increase raa_mult_base (e.g., 1.5–2.0).
自适应移动平均线通道策略This strategy leverages the Fractal Adaptive Moving Average (FRAMA) to construct dynamic price channels, generating buy (long) and sell (short) signals based on price breakouts.
Signal Generation: Buy Signal: Triggered when price crosses above the upper band (▲).
Sell Signal: Triggered when price crosses below the lower band (▼).
Trading Logic: Long Entry: Opens a position when price breaks above the upper band.
Close Position: Closes long position on a short signal or when the 3% stop-loss is hit.
Visualization: FRAMA line displayed in green (bullish) or orange (bearish).
Candles colored based on trend (green for bullish, red for bearish).
Upper and lower bands plotted in semi-transparent green/orange.
Buy/sell signals marked with arrows (▲ for buy, ▼ for sell).
Use Cases Ideal for trending markets (e.g., stocks, futures, forex).
Applicable across timeframes (e.g., 1-minute, 1-hour, daily), with parameter tuning recommended.
Operating InstructionsAdding the Strategy Copy and paste the code into TradingView’s Pine Script editor and save.
Add to chart: Click “Add to Chart” to overlay the strategy on the price chart.
Parameter Settings Source: Select the price data type (e.g., “close,” “hl2,” default: “close”).
Average Length: Set the FRAMA calculation period (default: 50, adjust based on timeframe).
RAA Multiplier: Controls channel width (default: 1.15, higher values widen the channel).
Show Trend Signals: Enable to display buy/sell signals on the chart (default: enabled).
Color Candles Based on Trend: Enable to color candles by trend (default: enabled).
Bullish/Bearish Candle Color: Customize candle colors (default: green for bullish, red for bearish).
Chart Output FRAMA Line: Shows the adaptive average, green for bullish trends, orange for bearish.
Upper/Lower Bands: Semi-transparent green (upper) and orange (lower) bands indicate price range.
Signal Markers: Buy signals (green ▲ below bars) and sell signals (red ▼ above bars).
Candle Coloring: Bullish candles in green, bearish in red.
Trading Execution Automated Trading: Enable in TradingView’s Strategy Tester to execute trades based on signals.
Stop-Loss: Fixed at 3% below entry price for long positions.
Initial Capital: Default set to 100,000 (adjustable as needed).
Backtesting and Optimization Review performance metrics (win rate, profit factor, drawdown) in the Strategy Tester.
Optimize parameters based on market and timeframe: Short timeframes (e.g., 1-minute): Reduce length (e.g., 10–20).
High-volatility markets: Increase raa_mult (e.g., 1.5–2.0).
EMA and BB Analysis for US100 V250825This TradingView strategy generates buy and sell signals based on exponential moving average (EMA) crossovers, limited by other factors such as Bollinger Bands, volume, and EMA distance.
It uses EMAs of 16, 24, 32, and 64 periods, as well as the angles of each of these EMAs.
Entry Conditions:
EMA Crossover Entry:
When EMA16 crosses EMA64 and the following conditions are met:
EMA16, EMA24, EMA32 are aligned — for a buy signal:
EMA16 > EMA24
EMA24 > EMA32
EMA32 > EMA48
(and the opposite for a sell signal)
EMA Angles:
The angles of the EMAs must also follow the same alignment.
Divergence Entry:
When the distance between EMAs 16, 24, 32, and 48 increases.
Entry Limitations:
Once an entry is detected, it is filtered by several conditions:
When the distance between the entry candle and EMA96 is more than two candles of the maximum size over three periods.
The stop loss is set as two candles of the maximum size over three periods. If this stop loss exceeds 6,000 points (adjustable parameter), the entry is invalid.
When the price is at the edge of the Bollinger Band with a 1200-period setting (equivalent to a 1-hour Bollinger Band).
When the Bollinger Band's middle line is descending and a buy signal is triggered (and vice versa).
When volume drops below a certain threshold.
When a sideways market movement is detected.
All these entry limitations are configurable parameters and can be enabled or disabled.
GRANDEFAKO2"This indicator allows you to select different EMAs (14/34/55), choose RSI and MACD on daily or weekly basis, and highlights candles with color signals. It also shows 'Caution' labels when RSI reaches overbought levels (70–90) and 'Buy Opportunity' when RSI drops below 30."
Trend Pro - @CRYPTIK1Introduction: What is Trend Pro?
Trend Pro is a comprehensive trend analysis tool designed to give you a clear, at-a-glance understanding of the market's direction across multiple timeframes. In a noisy market, the single most important factor is the dominant trend. This indicator filters out the noise by focusing on one core principle: trading with the primary momentum of the market.
Instead of cluttering your chart with confusing signals, Trend Pro provides a clean, visual representation of the trend, helping you make more confident and informed trading decisions.
The Core Concept: The Power of Confluence
The strength of any trading decision comes from confluence—when multiple factors align to point in the same direction. Trend Pro is built on this idea. It uses a long-term moving average (200-period by default) to define the primary trend on your current chart and then pulls in data from three higher timeframes to confirm whether the broader market agrees with your analysis.
When your current timeframe and the higher timeframes are all aligned, you have a state of "confluence," which represents a higher-probability environment for trend-following trades.
This tool is designed to be a foundational layer for your trading system, providing the essential context you need before entering any trade.
Key Features
1. The Dynamic Trend MA:
The main moving average on your chart acts as your primary guide. Its color dynamically changes to give you an instant read on the market.
Green MA: The price is in a confirmed uptrend (trading above the MA).
Red MA: The price is in a confirmed downtrend (trading below the MA).
2. The Multi-Timeframe (MTF) Trend Dashboard:
Located discreetly in the bottom-right corner, this dashboard is your window into the broader market sentiment. It shows you the trend status (Up, Down, or Neutral) on three customizable higher timeframes.
Green Box: The trend is UP on that timeframe.
Red Box: The trend is DOWN on that timeframe.
Gray Box: The price is neutral or at the MA on that timeframe.
How to Use Trend Pro: A Simple Framework
Step 1: Identify the Primary Trend
Look at the color of the MA on your main chart. This is your starting point. If it's green, you should be looking for opportunities to go long. If it's red, you should be looking for opportunities to go short.
Step 2: Check for Confluence
Glance at the MTF Trend Dashboard.
Strong Confluence (High-Probability): If your main chart is in an uptrend (Green MA) and the dashboard shows all green boxes, the market is in a strong, unified uptrend. This is a high-probability environment to be a buyer.
Weak or No Confluence (Caution Zone): If your main chart is in an uptrend, but the dashboard shows red or gray boxes, it signals that the higher timeframes are not in agreement. This is a sign of market indecision and a lower-probability environment. It's often best to wait for the timeframes to align.
Best Practices & Settings
Timeframe Synergy: For the best results, use Trend Pro on a lower timeframe and set your dashboard to higher timeframes. For example, if you trade on the 1-hour chart, set your MTF dashboard to the 4-hour, 1-day, and 1-week to get a complete picture of the market.
Use as a Confirmation Tool: Trend Pro is not designed to be a standalone entry/exit system. Use it as the foundational layer of your analysis. First, confirm the trend with Trend Pro, then use your preferred entry method (e.g., support/resistance, chart patterns, or other indicators) to time your trade.
Intraday Scalping Trading System with Alerts# Flexible Buy/Sell Signals Source - Clean Labels & Volume Ranks Buy/Sell Only
**Description:**
This multi-featured indicator combines robust buy/sell signals from multiple popular sources with advanced volume labeling to highlight institutional activity and market momentum shifts.
## Key Features
- **Multi-Source Signal Options:**
Choose from EMA1/EMA2 crossover, EMA2/EMA3 crossover, price vs VWAP, or price vs SuperTrend for flexible signal generation matching diverse trading styles.
- **Clean Buy/Sell Labels:**
Displays clear buy and sell labels directly on the chart with customizable size, color, and offset to enhance entry/exit clarity.
- **Intraday Volume Ranking:**
Highlights the highest and 2nd highest volume bars of the day with bullish/bearish color-coded labels and vertical connection lines, aiding in identifying strong participation.
- **First Candle Range Visualization:**
Visualizes today’s first candle range on your preferred timeframe to help gauge initial market structure and early momentum.
- **VWAP & SuperTrend Integration:**
Optional plots for VWAP and SuperTrend lines add enhanced trend context and support decision making.
- **Previous OHLC Levels:**
Displays prior day, week, and month open, high, low, and close levels as lines and labels—vital reference points for support and resistance.
- **Highly Customizable:**
Each component includes toggle inputs for on/off control, allowing you to declutter and tailor the chart display to your preference.
- **Built-In Alerts:**
Includes alert conditions on buy and sell signals to enhance trading responsiveness.
## How to Use
1. Select the preferred buy/sell signal source from the dropdown input.
2. Enable and customize volume labels to identify key institutional volume candles.
3. Use first candle range, VWAP, and SuperTrend overlays optionally for confirmation.
4. Leverage prior OHLC levels for advanced support/resistance context.
5. Adjust label size, color, and positions for optimal visibility.
## Ideal For
Day traders, swing traders, and analysts seeking a clean, powerful toolkit to combine price action, institutional volume, and multiple indicator signals into actionable insights.
---
Trade responsibly and combine with your own analysis for best results.
Adaptive HMA Trendfilter & Profit SpikesShort Description
Adaptive trend-following filter using Hull Moving Average (HMA) slope.
Includes optional Keltner Channel entries/exits and dynamic spike-based take-profit markers (ATR/Z-Score).
Optional Fast HMA for early entry visualization (not included in logic).
USER GUIDE:
1) Quick Overview
Trend Filter: Slow HMA defines Bull / Bear / Sideways (via slope & direction).
Entries / Exits:
Entry: Color change of the slow HMA (red→green = Long, green→red = Short), optionally filtered by the Keltner basis.
Exit: Preferably via Keltner Band (Long: Close under Upper Band; Short: Close above Lower Band).
Fallback: exit on opposite HMA color change.
Take-Profit Spikes: Marks abnormal moves (ATR, Z-Score, or both) as discretionary TP signals.
Fast HMA (optional): Purely visual for early entry opportunities; not part of the core trading logic (see §5).
2) Adding & Basic Setup
Add the indicator to your chart.
Open Settings (gear icon) and configure:
HMA: Slow HMA Length = 55, Slope Lookback = 10, Slope Threshold = 0.20%.
Keltner: KC Length = 20, Multiplier = 1.5.
Spike-TP: Mode = ATR+Z, ATR Length = 14, Z Length = 20, Cooldown = 5.
Optionally: enable Fast HMA (e.g., length = 20).
3) Input Parameters – Key Controls
Slow HMA Length: Higher = smoother, fewer but cleaner signals.
Slope Lookback: How far back HMA slope is compared against.
Slope Threshold (%): Minimum slope to avoid “Sideways” regime.
KC Length / Multiplier: Width and reactivity of Keltner Channels.
Exits via KC Bands: Toggle on/off (recommended: on).
Entries only above/below KC Basis: Helps filter out chop.
Spike Mode: Choose ATR, Z, or ATR+Z (stricter, fewer signals).
Spikes only when in position: TP markers show only when you’re in a trade.
4) Entry & Exit Logic
Entries
Long: Slow HMA turns from red → green, and (if filter enabled) Close > KC Basis.
Short: Slow HMA turns from green → red, and (if filter enabled) Close < KC Basis.
Exits
KC Exit (recommended):
Long → crossunder(close, Upper KC) closes trade.
Short → crossover(close, Lower KC).
Fallback Exit: If KC Exits are off → exit on opposite HMA color change.
Spike-TP (Discretionary)
Marks unusually large deviations from HMA.
Use for partial profits or tightening stops.
⚠️ Not auto-traded — only marker/alert.
5) Early Entry Opportunities (Fast HMA Cross – visual only)
The script can optionally display a Fast HMA (e.g., 20) alongside the Slow HMA (e.g., 55).
Bullish early hint: Fast HMA crosses above Slow HMA, or stays above, before the Slow HMA officially turns green.
Bearish early hint: opposite.
⚠️ These signals are not part of the built-in logic — they are purely discretionary:
Advantage: Earlier entries, more profit potential.
Risk: Higher chance of whipsaws.
Practical workflow (early long entry):
Fast HMA crosses above Slow HMA AND Close > KC Basis.
Enter small position with tight stop (under KC Basis or HMA swing).
Once Slow HMA confirms green → add to position or trail stop tighter.
6) Recommended Presets
Crypto (1h/2h):
HMA: 55 / 10 / 0.20–0.30%
KC: 20 / 1.5–1.8
Spikes: ATR+Z, ATR=14, Z=20, Cooldown 5
FX (1h/4h):
HMA: 55 / 8–10 / 0.10–0.25%
KC: 20 / 1.2–1.5
Indices (15m/1h):
HMA: 50–60 / 8–12 / 0.15–0.30%
KC: 20 / 1.3–1.6
Fine-tuning:
Too noisy? → Raise slope threshold or increase HMA length.
Too sluggish? → Lower slope threshold or shorten HMA length.
7) Alerts – Best Practice
Long/Short Entry – get notified when trend color switches & KC filter is valid.
Long/Short Exit – for KC exits or fallback exits.
Long/Short Spike TP – for discretionary profit-taking.
Set via TradingView: Create Alert → Select this indicator → choose condition.
8) Common Pitfalls & Tips
Too many false signals?
Raise slope threshold (more “Sideways” filtering).
Enable KC filter for entries.
Entries too late?
Use Fast HMA cross for early discretionary entries.
Or lower slope threshold slightly.
Spikes too rare/frequent?
More frequent → ATR mode or lower ATR multiplier / Z-threshold.
Rarer but stronger → ATR+Z with higher thresholds.
9) Example Playbook (Long Trade)
Regime: Slow HMA still red, Fast HMA crosses upward (early hint).
Filter: Close > KC Basis.
Early Entry: Small size, stop below KC Basis or recent swing low.
Confirmation: Slow HMA turns green → scale up or trail stop.
Management: Partial profits at Spike-TP marker; full exit at KC upper band break.
EMA20/EMA100 RSI Cross – Simpler than SimpleThis indicator combines the clarity of EMA20–EMA100 crossovers with the strength of RSI confirmation, giving traders a straightforward yet effective tool for spotting momentum shifts.
Designed with simplicity in mind, it delivers clear visual signals and instant alerts whenever price conditions align, works perfectly well in every timeframe (my choice is 15M timeframe).
No clutter, no overcomplication – just clean, intuitive signals to help you stay on top of the market.
I want to give it back to Tradingview society, so feel free to try and experience.
Best,
Option Buying Indicator5-period Exponential Moving Average (EMA): A short-term average of price, giving more weight to recent data. It reacts quickly to price changes.
50-period Exponential Moving Average (EMA): A longer-term average of price, indicating the medium-term trend.
Volume-Weighted Average Price (VWAP): The average price of a stock during a specific period, weighted by the volume traded at each price level. VWAP is often used by large institutional traders to gauge entry and exit points.
Pivot Points: Technical analysis indicators used to determine the overall trend of the market over different time frames. They are calculated based on the previous day's high, low, and closing prices and are used to identify potential support and resistance levels.
EMA Confluence Bounce Strategy1 hour time frame.
10,20 and 50 EMA confluence.
touch and go the top EMA at the time.
5% target within 2 weeks
BIST/TL RSI MA Fibonacci TaramaThe indicator features multiple functions.
RSI
Different types Moving Averages of RSI
Fibonacci levels of RSI in specific timeframes
Two Moving Averages in the main panel
Moving Average and deviations of this average at 3.2 and 6.4 ATR
Scanning in 5 different conditions, including all BIST stocks
Manish's Momentum Indicator
Combines **Trend Highlighter** (GMMA + SMA89) with **Trend Power** (MFI + ATR Normalization) for a dual framework.
Auto-marks fresh **BULL/BEAR trend shifts** and momentum extremes (Overheated, Oversold, Volatile Reversals, Calm Distribution).
ATR is normalized (0–100 scale) to identify whether moves happen in calm or volatile conditions.
Optionally plots the **15-min opening range box** to highlight the day’s initial balance.
Background coloring distinguishes trend bias vs. momentum extremes for quick chart scanning.
Built-in info table shows live readings of MFI, ATR Normalization, Composite Signal, and Trend Signal.
All-in-one dashboard for fast assessment of trend alignment, volatility regime, and momentum strength.
MTF Adaptive Trendline Scalper (ATR + EMA System) By GouravThe MTF Adaptive Trendline Scalper is a precision-built trading tool designed for intraday scalpers and swing traders.
🔹 Core Features:
Adaptive Trendline Engine: Dynamically shifts trendline support/resistance using volatility (ATR) and Bollinger-band extremes.
Multi-Timeframe Mode: Calculate signals on your chosen higher timeframe or sync with the chart resolution.
Automatic Buy/Sell Signals: Clear trend reversal markers (💣 Buy / 🔨 Sell) for fast execution.
Volatility Filtering: ATR-based buffer reduces noise in choppy conditions.
Extra EMA Overlay: Plots 9 / 15 / 50 / 200 EMAs to help confirm trend bias and momentum.
🔹 How It Helps You Trade:
Catch scalping entries with trendline flips.
Trade trend-following continuations using EMA alignment.
Spot reversals when price pierces the adaptive channel.
Works on all assets (Forex, Crypto, Stocks, Indices) and any timeframe.
⚠️ Note: This is not financial advice. Always combine with your own risk management and strategy.
EMA Distance Risk Manager
An advanced risk management tool showing distance to the farthest EMA with precise monetary risk calculations and smart position sizing alerts.
🎯 What is EMA Distance Risk Manager?
The EMA Distance Risk Manager is a professional risk management indicator designed for traders who use EMAs as dynamic stop-loss levels. It calculates your exact monetary risk to the farthest EMA and provides intelligent position sizing recommendations.
⚡ Key Features
📊 Smart Risk Calculations
Measures distance to the farthest of 3 customizable EMAs (default: 8, 13, 21)
Converts distance to precise monetary risk in your account currency
Works with any instrument: Forex (pips), Futures (points/ticks), Stocks (points)
Handles complex futures contracts with automatic tick-to-point conversions
🚨 Advanced Risk Alerts
Visual color-coded warnings when risk exceeds your threshold
Automatic position sizing suggestions (e.g., "Reduce volume to 67% of current")
Customizable risk threshold in currency units (default: $10)
High-visibility alerts are impossible to miss
🎛️ Full Customization
Choose between Real Market Data or Chart Type Data (Heiken Ashi friendly)
4 table sizes: Tiny, Small, Normal, Large
9 position options: any corner or center location
Customizable display title and currency formatting
🔍 Professional Features
Shows 1 tick/pip/point value for position sizing calculations
Debug mode displays all EMA values and distances
Works with any chart type: Candles, Heiken Ashi, Line, Renko, Point & Figure
Real-time updates on every bar
💡 How It Works
EMA Calculation: Uses your choice of chart data or real market data
Distance Measurement: Finds the EMA farthest from the current price
Risk Calculation: Converts distance to monetary units using instrument specifications
Alert System: Warns when risk exceeds your threshold with position sizing advice
🎯 Perfect For
Swing Traders using EMAs as dynamic stop-losses
Risk Managers who need precise monetary risk calculations
Position Sizers requiring exact volume reduction suggestions
Multi-Timeframe Traders managing risk across different instruments
⚙️ Settings Overview
EMA Configuration
3 customizable EMA periods (default: 8, 13, 21)
Real OHLC vs Chart Type data selection
Show/hide EMA plots (style via TradingView's Style tab)
Risk Management
Risk threshold in currency units
Automatic volume reduction calculations
High-visibility warning system
Display Options
4 table sizes for different screen setups
9 positioning options
Custom title and formatting
Debug mode for troubleshooting
📈 Use Cases
Example 1: Forex Trading
EURUSD with a 20-pip distance to the farthest EMA
Risk threshold: $25
Shows: "Risk: $20.00 USD" (✅ Safe to trade)
Example 2: Futures Trading
ES with 15-point distance to the farthest EMA
Risk threshold: $50
Shows: "Risk: $75.00 USD" + "⚠️ Reduce volume to 67% of current"
🔧 Installation & Setup
Add an indicator to your chart
Set your risk threshold in currency units
Adjust EMA periods to match your strategy
Choose table size and position
Style EMAs via TradingView's Style tab if desired
📊 Works With All Instruments
Forex: Automatic pip calculations
Futures: Point/tick conversions (tested on ES, NQ, GC, etc.)
Stocks: Standard point calculations
Crypto: Precise decimal handling
⚠️ Risk Warning: This indicator is for informational purposes only. Always verify calculations and manage your risk appropriately. Past performance does not guarantee future results.
Demand and Supply by Stock Fusion 1.1Title: Demand and Supply by Stock Fusion 1.1
Description: The "Demand and Supply by Stock Fusion 1.1" indicator is designed to identify and visualize institutional demand and supply zones on a chart, helping traders spot potential areas of price reversal or continuation. It highlights key price levels based on specific candlestick patterns and Momentum volume characteristics, making it suitable for various trading styles such as intraday, swing, or positional trading. The indicator supports customizable settings for timeframes, zone styles, and visual elements, ensuring flexibility for both novice and experienced traders.
Key features include:
• Dynamic Zone Detection: Identifies demand (DZ- RBR, DBR) and supply (SZ- DBD, RBD) zones on user-selected lower timeframes (LTF) or the chart’s native timeframe.
• Candle Coloring: Highlights explosive bullish/bearish candles and accumulation/base candles to emphasize significant price movements or consolidation phases.
• Zone Visualization: Plots zones as colored boxes with optional right extensions and customizable labels for clarity.
• Zone Management: Automatically removes zones after price retests or mitigation, ensuring the chart remains uncluttered.
• Informative Table: Displays real-time data on the closest zone, including the symbol, last traded price (LTP), zone type, proximal/distal prices, and proximity percentage.
• Customizable Settings: Offers options for trading modes (Manual, Normal, Conservative, Study), timeframe selection, zone strength, colors, transparency, and more.
This indicator is ideal for traders seeking to analyze market structure through institutional price action and Explosive Momentum volume based zones, with a focus on clarity and usability.
Functional Overview
1. Input Configuration:
o Trading Mode: Users can select from "Manual," "Normal," "Conservative," or "Study" modes to adjust zone sensitivity and behavior.
o Timeframe Selection: Allows users to choose a lower timeframe (e.g., 1-minute to yearly) for zone detection or use the chart’s native timeframe.
o Zone Strength: Adjustable multiplier for lower timeframe zones to control sensitivity.
o Visual Customization: Options to toggle candle coloring, zone labels, borders, and right extensions, with customizable colors, transparency, and label sizes.
o Table Settings: Configurable table for displaying zone data, with options for position, background color, text color, and font size.
o Zone Removal: Features to automatically remove zones after price retests or full mitigation to keep the chart clean.
2. Zone Detection:
o Identifies demand zones (Rally-Base-Rally , Drop-Base-Rally ) and supply zones (Drop-Base-Drop , Rally-Base-Drop ) based on candlestick patterns, volume thresholds, and price action relative to a moving average.
o Uses a base candle range (1 to 3 candles by default) to detect consolidation periods before explosive price movements.
o Incorporates momentum volume analysis to ensure zones are formed during high-Low volume periods, enhancing reliability.
3. Candle Analysis:
o Explosive Candles: Detects bullish or bearish candles with large body-to-range ratios and high volatility (based on ATR) to highlight significant price movements.
o Boring/Accumulation Candles: Identifies candles with small body-to-range ratios to mark consolidation phases, often preceding breakouts.
o Colors candles based on user preferences to visually distinguish explosive and accumulation phases.
4. Zone Visualization:
o Plots demand and supply zones as colored boxes, with options for "Wick to Wick" or "Body to Wick" zone styles.
o Supports right-extended zones for better visibility of active levels.
o Adds labels to zones (e.g., "D-DZ" / "D-SZ" for daily demand zone) with customizable sizes and colors.
5. Zone Management:
o Automatically removes zones when price closes within or beyond them, depending on user settings for retest or second-leg mitigation.
o Tracks removed zones to prevent redundant plotting and maintain chart clarity.
6. Table Display:
o Displays a table summarizing the closest active zone, including the symbol, current price, zone type (DZ/SZ), proximal/distal prices, and proximity percentage.
o Updates dynamically based on price action and zone changes.
7. Performance Optimization:
o Uses arrays to manage zones, labels, and table data efficiently.
o Limits the number of plotted elements (boxes, labels, lines) to comply with resource constraints (e.g., max 500 boxes/labels).
o Supports dynamic requests to handle data across different timeframes.
Disclaimer:-
The Demand and Supply by Stock Fusion 1.1 indicator is intended solely for informational and technical analysis purposes and does not provide financial advice or trading recommendations. Trading carries significant risks, including the potential for substantial financial losses. Users are fully responsible for their trading decisions and should perform their own research, assess their risk tolerance, and consult a licensed financial advisor before making any trades. The indicator’s signals are derived from market data, and historical performance does not guarantee future results. The developers and providers of this indicator are not liable for any losses or damages resulting from its use.
All in One (5 MAs + Dynamic Cloud + OH/OL + Narrow Range)The indicator is an All In One indicator to show 5 MAs, Open=High/Low candle and to mark the expected narrow range of the candle.
RSI with TRENDLINEthis indicator calculate and draw trendline on rsi ,this is helpfull for those who tred with rsi
LEAP Put Edge — Top Risk Oscillator (v6, divergences + HTF)Pinpoint market tops with precision — a composite oscillator built to spot exhaustion, bearish divergences, and high-probability LEAP Put entry zones.
The LEAP Put Edge — Top Risk Oscillator is designed specifically to help identify high-probability entry points for long-dated Put options (LEAPs) by highlighting exhaustion at market tops. Unlike generic overbought/oversold tools, it combines slower MACD and DMI/ADX for trend quality, RSI and Stochastic RSI for momentum extremes, volume spike and upper-wick exhaustion signals for capitulation risk, and optional bearish divergences in RSI and MACD to confirm weakening strength. The output is a smoothed composite score scaled from -100 to +100, where higher values indicate rising top-risk and bearish edge conditions. Clear thresholds, color-coded plots, and built-in alerts make it straightforward and practical for traders seeking simple, actionable signals to time Put entries with confidence.
Wda Elite Sniper (Golden Duck Runner)Golden Duck Runner With Targets - Professional Trading Indicator
Overview
The "Golden Duck Runner With Targets" is a sophisticated technical analysis indicator designed for active traders seeking precise entry and exit points in trending markets. This indicator combines dual EMA trend analysis with pullback detection and implements a comprehensive fixed-tick risk management system with automatic position cleanup functionality.
Key Features
Dual EMA System
- Fast EMA (18-period): Golden line that tracks short-term price momentum
- Trend Filter EMA (111-period): Thick line for major trend identification
- Teal Color: Bullish trend (Fast EMA > Trend Filter EMA)
- Orange Color: Bearish trend (Fast EMA < Trend Filter EMA)
Advanced Signal Generation
The indicator employs a sophisticated pullback detection algorithm that ensures high-probability entries:
Long Signal Requirements:
- Market must be in uptrend (18 EMA > 111 EMA)
- Price must pull back below the 18 EMA while staying above the 111 EMA
- Price must then close back above the 18 EMA with bullish momentum
- No duplicate signals until position is closed
Short Signal Requirements:
- Market must be in downtrend (18 EMA < 111 EMA)
- Price must pull back above the 18 EMA while staying below the 111 EMA
- Price must then close back below the 18 EMA with bearish momentum
- No duplicate signals until position is closed
Fixed-Tick Risk Management System
The indicator uses predefined tick values for consistent risk management across all instruments:
Risk Levels (Fixed Tick Values):
- Stop Loss: 36 ticks (customizable)
- Take Profit 1: 30 ticks (1:0.83 risk-reward)
- Take Profit 2: 50 ticks (1:1.39 risk-reward)
- Take Profit 3: 75 ticks (1:2.08 risk-reward)
Automatic Position Management
Clean Chart Technology:
- Positions automatically close when TP3 or Stop Loss levels are hit
- All risk management lines are automatically removed upon trade completion
- Charts remain clean and focused on active opportunities only
- Maximum holding period of 20 bars prevents stale signals
Real-Time Monitoring:
- Live position tracking via information dashboard
- Hit detection for all take profit and stop loss levels
- Automatic line cleanup upon position exit
- Visual confirmation of level hits with checkmarks/X marks
Visual Elements
- Golden Entry Level: Clearly marks exact entry price
- Color-Coded Risk Lines: Dark red for stop loss, teal for TP1/TP2, gold for TP3
- Golden Arrow Signals: Easy-to-spot entry points with BUY/SELL labels
- Entry Candle Highlighting: Gold-colored candles mark signal bars
- Information Dashboard: Real-time display of trend, position, entry price, and duration
- Professional Color Scheme: Consistent golden theme throughout
Trading Applications
Best Suited For:
- Scalping on 1-5 minute charts
- Day trading on 15-minute to 1-hour charts
- Swing trading on 4-hour to daily charts
- All liquid markets: Forex, Stocks, Crypto, Commodities
Optimal Market Conditions:
- Trending markets with clear directional bias
- Moderate to high volatility environments
- Liquid instruments with tight spreads
- Active trading sessions with good volume
Technical Specifications
Pine Script Details:
- Version: Pine Script v5
- Chart Type: Overlay indicator
- Non-repainting signals (confirmed on bar close)
- Real-time updates with live dashboard
- Full TradingView alert support
- Resource optimized for smooth performance
Customizable Parameters:
- Fast EMA period (default: 18)
- Trend Filter EMA period (default: 111)
- Stop Loss ticks (default: 36)
- Take Profit levels in ticks (30, 50, 75)
- Display toggles for all visual elements
Usage Instructions
Setup
1. Apply indicator to your preferred timeframe
2. Verify EMA periods suit your trading style
3. Adjust tick values if needed for your instrument
4. Enable TradingView alerts for signal notifications
#Signal Identification
1. Trend Confirmation: Monitor EMA positioning and colors
2. **Pullback Recognition: Wait for price to test 18 EMA level
3. Entry Signal: Golden arrow confirms valid setup completion
Position Management
1. Enter at signal candle close
2. Use provided stop loss level (dark red line)
3. Scale out at take profit levels (teal and gold lines)
4. Monitor dashboard for trade status
Educational Value
This indicator serves as an excellent learning tool for:
Technical Analysis:
- EMA trend following strategies
- Pullback trading methodology
- Support and resistance concepts
- Risk-reward optimization
Trading Discipline:
- Systematic entry and exit rules
- Patient setup selection
- Proper risk management practices
- Emotional control through automation
Performance Features
Signal Quality Control:
- Trend structure validation
- Momentum confirmation requirements
- Anti-whipsaw protection
- Duplicate signal prevention
Risk Management:
- Consistent tick-based calculations
- Multiple profit-taking opportunities
- Automatic position cleanup
- Time-based exit rules (20 bars maximum)
Alert Integration
Built-in alert conditions for:
- Long entry signals
- Short entry signals
- Take Profit 1 hits
- Take Profit 2 hits
- Take Profit 3 hits
- Stop Loss hits
Customization Options
Display Controls:
- Toggle EMA visibility
- Show/hide signal arrows
- Enable/disable information dashboard
Parameter Adjustment:
- Modify EMA periods
- Adjust risk levels in ticks
- Customize visual styling
Important Considerations
Market Suitability:
- Works best in trending market conditions
- Less effective in sideways/choppy markets
- Requires adequate volatility for tick-based targets
Risk Management:
- Always use appropriate position sizing
- Consider instrument characteristics when setting tick values
- Monitor correlation when trading multiple signals
- Maintain detailed trading records
Backtesting Recommendations
Users should conduct thorough testing across:
- Different timeframes
- Various market conditions
- Multiple asset classes
- Extended historical periods
Disclaimer
Educational Purpose: This indicator is designed for educational and analytical purposes. It provides technical analysis signals based on moving average relationships and pullback patterns.
Risk Warning: Trading involves substantial risk of loss. Past performance does not guarantee future results. Users should conduct their own analysis and risk assessment before making trading decisions.
No Investment Advice: This tool provides technical analysis, not investment advice. Users are solely responsible for their trading decisions and outcomes.
Conclusion
The Golden Duck Runner With Targets offers a comprehensive approach to trend-following with precise entry timing and systematic risk management. Its clean visual design, automatic cleanup features, and educational value make it suitable for traders seeking a professional-grade analytical tool.
The fixed-tick risk management system provides consistency across different instruments while the dual EMA framework ensures trades align with the prevailing trend direction. Combined with sophisticated pullback detection, this indicator helps traders develop disciplined approaches to market analysis and position management.
Developed for traders who demand precision, reliability, and professional-grade technical analysis with clean, automated chart management.