David Dang - Scalp M15/H1 ETH/USDT (Free3day)Sử dụng miễn phí trong 3 ngày và sẽ gia hạn đăng kí liên hệ cho Daivd
WhatsApp 0818283198
頻帶和通道
mara Dynamic RangeUpdated pp dynamic zone indicator, which helps to provide support/resistance for intra day and swing trade
Multi-Exchange VWAP Aggregator (Crypto)Description:
This advanced VWAP indicator aggregates volume data from up to 9 cryptocurrency exchanges simultaneously, providing a more accurate volume-weighted average price than single-exchange VWAP calculations.
Key Features:
Multi-Exchange Aggregation - Combines volume from Binance, Coinbase, Bybit, Bitfinex, Bitstamp, Deribit, OKEx, Phemex, and FTX
Flexible Currency Pairs - Supports both spot (USD, USDT, EUR, USDC, BUSD, DAI) and perpetual futures contracts
Standard Deviation Bands - Includes customizable 1σ, 2σ, and 3σ bands for identifying overbought/oversold levels
Multiple Reset Periods - Daily, Weekly, Monthly, or Session-based VWAP calculations
Volume Calculation Options - Choose between SUM, AVG, MEDIAN, or VARIANCE for volume aggregation
Why Use This?
Traditional VWAP indicators only use volume from a single exchange, which can be misleading in fragmented crypto markets. This indicator provides a comprehensive market-wide VWAP by aggregating volume across major exchanges, giving you a more reliable benchmark for entries, exits, and institutional price levels.
Perfect for traders who want to see where the real volume-weighted price sits across the entire crypto market, not just one exchange.
Multi EMA Pack (Full, Custom Multi-Cross)Exponential Moving Average (EMA) is a trend-following indicator that smooths price data by applying more weight to recent prices. It reacts faster to market changes than a Simple Moving Average (SMA). Traders often use multiple EMAs with different lengths to identify trend direction, spot crossovers as trade signals, and define dynamic support or resistance zones.
Mid-Body 50% Candles – Support/Resistance with ConfirmationHow it works:
– Calculates the mid-body (open+close)/2 of the previous candle.
– Bullish candle → potential SUP level.
– Bearish candle → potential RES level.
– Optional next-bar confirmation (close above/below the mid-body).
– Filters available: ATR size, swing detection, upper/lower wick %.
– Lines extend until broken or removed.
– Alerts available for: level creation, touch and break.
Use cases:
– Confirm candle rejections (pin bars).
– Filter false breakouts.
– Refine entries/exits for scalping or swing trading.
What makes it unique:
Unlike generic Fibonacci or candle tools, this script focuses exclusively on the 50% body level with confirmations and multiple filters, making it more precise for price action decision points.
TA Darvas Box Test🎯 Core Logic
1-Darvas Box Breakouts/Breakdowns → Entry when price crosses above the Top Box (long) or below the Bottom Box (short).
2-Trend Filter (MavilimW) → Longs only when price is above MAVW, shorts only when below.
3-Momentum Confirmations → ATR spike and Volume spike must confirm breakout strength.
🛠 Position Sizing (MaTriangle – Martingale by Qty)
1-Starts with Base Qty.
2-On losing trades → step-up size using Qty Multiplier, capped by Max Steps & Max Qty Cap.
3-On winning trades → optional reset back to Base Qty.
⚠️ Martingale sizing can increase drawdowns — use carefully.
⏱ Trade Gating
1-Backtest Window: Only trades between selected From – To dates.
2-Trade Cap: Limit trades Per Day / Per Week / Per Month (auto reset).
3-One Position at a Time (pyramiding = 0).
📉 Exit Rules
1-Protective Stops:
2-Long → Stop at Bottom Box.
3-Short → Stop at Top Box.
Profit Safeguard: If in profit, exit when RVI crosses against trade.
1-No fixed TP → trades ride until Box stop or RVI exit.
🔔 Alerts (Options Workflow)
1-Static Alerts: Fire on confirmed long/short signals (compile-safe).
2-Dynamic Alerts: Send ATM strike info, Qty, and Martingale step.
3-Auto ATM Mapping: BANKNIFTY, NIFTY, FINNIFTY, MIDCPNIFTY detected automatically; fallback to manual step.
⚙️ Suggested Defaults
Darvas Box Length = 5
ATR Len = 14, ATR SMA = 14, Mult = 1.0–1.5
Volume SMA = 20, Mult = 1.5–2.0
Base Qty = 1, Mult = 2.0, Max Steps = 3
Trade Cap = Per Day, 10–30 trades
✅ Works on any symbol/timeframe.
⚠️ High-risk position sizing (Martingale). Backtest thoroughly and use with caution.
AKTProfessional Style
“This tool helps in marking lines for options and forex, making trading easier and more effective for you.”
“We apply it to mark key lines in options and forex markets, and it provides great value for traders like you.”
“Used for marking support and resistance lines in options and forex, it’s a highly useful tool for your trades.”
🔹 Simple & Direct Style
“We use it to mark lines in options and forex — very useful for you.”
“It helps mark lines for options and forex, making it useful in your trading.”
“A handy way to mark lines in options and forex, and it’s very useful for you.”
7 AM Box XAUUSDDescription
7 A.M. Session Box – Invite Only
This indicator automatically plots the 7 a.m. box (กรอบ 7 โมงเช้า) to highlight the most important market range of the day.
Why 7 a.m.?
The 7 a.m. candle often defines the daily high–low range and provides a key reference for intraday trading.
Breakouts or retests of this box frequently lead to high-probability setups.
Key Features:
Automatically draws the 7 a.m. box with adjustable session times.
Highlights potential breakout zones for intraday trades.
Simple and clean design for fast decision-making.
Works on multiple timeframes (recommended M5–H1).
This tool is designed for traders who want to focus on London/Asian session transitions and use the 7 a.m. range as a tactical advantage.
Disclaimer: This indicator is for educational purposes only. Trading involves risk – use proper risk management.
Peshraw strategy 1//@version=5
indicator("Peshraw strategy 1", overlay=false)
// --- Stochastic Settings
kPeriod = 100
dPeriod = 3
slowing = 3
k = ta.sma(ta.stoch(close, high, low, kPeriod), slowing)
d = ta.sma(k, dPeriod)
// --- Moving Average on Stochastic %K
maLength = 2
maOnK = ta.sma(k, maLength)
// --- Plot Stochastic
plot(k, color=color.blue, title="%K")
plot(d, color=color.orange, title="%D")
// --- Plot MA(2) on %K
plot(maOnK, color=color.red, title="MA(2) on %K")
// --- Levels (fix hline error)
hline(9, "Level 9", color=color.gray, linestyle=hline.style_dotted)
hline(18, "Level 18", color=color.gray, linestyle=hline.style_dotted)
hline(27, "Level 27", color=color.gray, linestyle=hline.style_dotted)
hline(36, "Level 36", color=color.gray, linestyle=hline.style_dotted)
hline(45, "Level 45", color=color.gray, linestyle=hline.style_dotted)
hline(54, "Level 54", color=color.gray, linestyle=hline.style_dotted)
hline(63, "Level 63", color=color.gray, linestyle=hline.style_dotted)
hline(72, "Level 72", color=color.gray, linestyle=hline.style_dotted)
hline(81, "Level 81", color=color.gray, linestyle=hline.style_dotted)
hline(91, "Level 91", color=color.gray, linestyle=hline.style_dotted)
Weekly Setup Scanner (Trend + Momentum + Squeeze)Trend → price above weekly 20 EMA.
Momentum → weekly MACD bullish (MACD > Signal).
Volatility → weekly squeeze (Bollinger Bands inside Keltner Channels).
If all 3 conditions align → it flags the setup
KA IntradiaKA Intradia plots the current session’s Daily Open and symmetric micro-percent bands above and below it. It shows price only (no percent labels) and anchors values on the left price scale for a clean, unobtrusive read. Levels refresh automatically at the first bar of each new day and work on any symbol or timeframe. Use them to gauge intraday bias, likely reaction zones, and momentum stretches at a glance. Optional alerts fire when price crosses any active band.
KA_anualKA_anual — Annual Open % Levels
KA_anual plots the current year’s opening price and fixed percentage bands every 10% up to ±130%. The levels update automatically at the first bar of each new year. Lines are tied to the price scale and shown only for the current year, so they move with your chart without cluttering past history. Use them to gauge momentum, potential support/resistance, and stretch zones at a glance. Works on any symbol and timeframe; no inputs required.
PSDIGreen Zone → Potential Buy Area
Price is near support.
Red Zone → Potential Sell Area
Price is near resistance.
EMA Lines
Blue (EMA50) above Orange (EMA200): Trend up → favors buys.
Blue below Orange: Trend down → favors sells.
How to Use
Look at zones and trend.
Price near green + trend up → consider long.
Price near red + trend down → consider short.
NOTE: When in uptrend, only follow green zones. When in down trend only follow red zones.
BLOCK CHARTING GROUPED ALPHATREND V4BLOCK CHARTING GROUPED ALPHATREND V4 — Script Summary
Created by ChalkBoardAnalytics
Overview
This advanced multi-tool indicator combines Block Charting, Ghost Candles, Volume Spike/Dump Detection, and a fully customizable AlphaTrend system with dashboard tables. Designed for traders who want deep market structure insights, trend signals, and visual clarity.
Key Features
1. Block Charting
Divides price action into blocks (user-defined bar count).
Automatically detects and labels block patterns (like CAPOUT, DIP, DROP, DUMP, FLAT, CAPIN, LIFT, PUMP, SPIKE).
Draws block highs/lows, vertical boundaries, and live formation labels for current/incomplete blocks.
Color-codes patterns for quick visual analysis.
Block dashboard table shows last signal, prices, averages, and live pattern.
2. Moving Averages
Customizable fast/slow moving averages (SMA, EMA, WMA, RMA).
Buy/Sell signals based on MA crossovers.
Plots all moving averages for clarity.
3. Ghost Candle Overlay
Shows a “ghost” candle based on price/volume averages for the last N bars.
Volume-weighted option for more accuracy.
Dynamic transparency based on volume spikes.
Alerts for high volume events.
4. Volume Spike/Dump Sensor
Detects and labels volume spikes/dumps (both bullish and bearish).
Alerts for unusual volume activity.
5. AlphaTrend System
Customizable AlphaTrend lines (classic trend-following logic).
Trend direction determined by majority voting of selected signals:
RSI (threshold-based)
MFI (threshold-based)
Difference between two moving averages (user-selected lengths and type; replaces MACD logic)
Plots AlphaTrend and AlphaTrend lines with area fill.
Buy/Sell signals when AlphaTrend crosses AlphaTrend .
AlphaTrend dashboard table displays price, signals, ATR, and recent trend info.
6. Dashboard Tables
Two tables: Block Charting and AlphaTrend.
Show current signals, prices, averages, and recent trend signals.
Location is user-selectable.
Customization & Settings
Block size, colors, and line styles
MA types and lengths
Pattern label display switches
Ghost candle lookback and volume weighting
Volume spike/dump sensitivity
AlphaTrend period, coefficient, and signal voting
Table location and display options
Usage
Overlay on any chart or timeframe
Use block patterns for market structure analysis
Follow MA crossovers and AlphaTrend signals for entries/exits
Spot volume spikes/dumps and ghost candle anomalies
Monitor dashboard tables for quick decision-making
Alerts
Volume spike/dump alerts
AlphaTrend buy/sell alerts
How is this different?
Combines multiple professional-grade tools into one script
Block patterns are unique to this indicator
AlphaTrend voting is customizable and not limited to MACD
Two live dashboards for instant market overview
Victors - Opening Range (Today Only) + EMAs 9/20/200Victor Opening Range (15 min high/Low) with EMA's 9/20/200.
This marks the 15 min high/low for the day and also gives you the simple moving averages 9/20/200
Inakis-BB-Stoch-ATR-ADX StrategyStrategy Description
This advanced trading strategy combines multiple technical indicators to identify high-probability breakout opportunities in trending markets. The system uses a multi-layered filtering approach to ensure only the strongest signals trigger trades.
Key Components:
Primary Signals:
Bollinger Bands Breakout: Identifies price extremes when price breaks below the lower band (buy) or above the upper band (sell)
Stochastic Oscillator: Confirms oversold (<30) and overbought (>70) conditions
ADX Filter: Ensures sufficient trend strength is present (ADX > 20)
ATR Volatility Filter: Trades only during periods of adequate volatility
Advanced Features:
DMI Higher Timeframe Analysis: Incorporates directional movement from higher timeframes (default 1H) to align trades with the dominant trend
Volume Confirmation: Requires above-average volume for signal validation
Cooldown Period: Prevents overtrading by enforcing minimum bars between signals
Visual Feedback: Color-coded background based on higher timeframe trend direction
Risk Management:
Fixed position sizing with customizable contract size
Predefined Stop Loss (default 500 points) and Take Profit (default 1000 points) levels
Clear risk-reward ratio of 1:2
Trading Logic:
Long Entry: Price breaks below BB lower band + Stochastic < 30 + Higher TF bullish trend
Short Entry: Price breaks above BB upper band + Stochastic > 70 + Higher TF bearish trend
All entries require confirmation from ADX, ATR, and volume filters
Customization:
All parameters are fully adjustable through the input panel, allowing traders to optimize the strategy for different markets and timeframes. Each filter can be individually enabled/disabled for testing and optimization purposes.
This strategy is designed for trending markets and performs best on liquid instruments with clear directional moves.
KA Pivot Estricto (5L/5R)Indicator Name: KA Pivot Estricto (5L/5R)
Description:
This indicator identifies strict pivot highs and pivot lows on any timeframe. A pivot high is plotted when the current candle is strictly higher than the previous N candles on the left and the next N candles on the right. A pivot low is plotted when the current candle is strictly lower than the previous N candles on the left and the next N candles on the right.
The script draws a red triangle above bars for pivot highs and a green triangle below bars for pivot lows. Both markers stay attached to the price candles (they move with the chart).
Features:
Customizable lookback period (left and right bars).
Option to require strict pivots (no equal highs/lows allowed).
Clean visual markers (triangles only, no text).
Works across all timeframes.
Use case:
This tool is useful for traders who want to spot swing highs and lows, confirm potential reversal points, or build strategies that depend on confirmed pivot structures.
DSQ PremiumChỉ báo dựa theo 2 đường xu hướng EMA và MA để chúng ta dễ dàng nhận biết xu hướng hiện tại
Edge Algo📈 Indicator Features:
• Provides accurate trades with up to 90% success rate
• Works on all currencies, stocks, crypto, and even futures
• Compatible with all timeframes: 1m / 5m / 15m / 30m / 1h / 1d
• Built on an AI system that detects stop-hunt zones to avoid stop-loss hits
• Gives you entry points, stop-loss (SL), and take-profit (TP) levels