Grand Moving Average CycleThis system is a visual tool that divides the market into stages using three moving averages: short-term, mid-term, and long-term.
1. Basic Idea
- Short-term line (5-day average) → recent price moves → red
- Mid-term line (20-day average) → several weeks → green
- Long-term line (40-day average) → a few months → blue
How these three lines line up with each other determines which of the 6 cycles the market is currently in.
2. The 6 Cycles
- Cycle 1: Strong Uptrend
Short > Mid > Long → clear upward trend
- Cycle 2: Short-term Weakness
Short drops below Mid, but still above Long → short-term dip
- Cycle 3: Breakdown
Both Short and Mid fall below Long → long-term downshift
- Cycle 4: Strong Downtrend
Short < Mid < Long → clear downward trend
- Cycle 5: Short-term Bounce
Short rises above Mid, but still below Long → temporary rebound
- Cycle 6: Mid-term Recovery
Mid rises above Short, but Long is still on top → recovery, but not a full uptrend yet
3. Visual Cues
- Background color: changes automatically depending on the cycle, so you can see the phase at a glance.
- Line colors:
Red = Short (5-day)
Green = Mid (20-day)
Blue = Long (40-day)
- Shaded area between Mid and Long:
Green fill = Mid is above Long (positive)
Red fill = Mid is below Long (negative)
In short, this tool helps you quickly recognize whether the market is trending up, down, or just correcting, based on how the three moving averages are arranged.
Medie mobili
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.
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
EMA 1/8 Cross - Fixed Pip TP/SLEMA 1/8 Cross – Fixed Pip TP/SL
This strategy is based on the crossover between EMA 8 and EMA 14 as trading signals:
Long entry → when EMA 1 crosses above EMA 8
Short entry → when EMA 1 crosses below EMA 8
Features:
Fixed pip Take Profit (TP) and Stop Loss (SL), fully adjustable in the settings.
Customizable EMA Fast/Slow lengths for optimization.
Pip size input to match different broker definitions (e.g., XAUUSD often uses 0.10 as one pip).
Suitable for testing scalping or swing trading across multiple timeframes.
⚠️ Disclaimer:
This script is intended for backtesting and educational purposes only. Please optimize parameters and apply proper risk management before using it on live accounts.
Fear & Greed Oscillator — LEAP Puts (v6, manual DMI/ADX)Fear & Greed Oscillator — LEAP Puts (v6, manual DMI/ADX) is a Puts-focused mirror of the Calls version, built to flag top risk and momentum rollovers for timing LEAP Put entries. It outputs a smoothed composite from −100 to +100 using slower MACD, manual DMI/ADX (Wilder), RSI and Stoch RSI extremes, OBV distribution vs. accumulation, and volume spike & direction, with optional Put/Call Ratio and IV Rank inputs. All thresholds, weights, and smoothing match the Calls script for 1:1 customization, and a component table shows what’s driving the score. Reading is simple: higher values = rising top-risk (red shading above “Top-Risk”); lower values = deep dip / bounce risk (green shading). Built-in alerts cover Top-Risk, Deep Dip, and zero-line crosses for clear, actionable cues.
ICT GMMA VegasHigh-Level Summary
This indicator blends:
ICT concepts (Market Structure Shift, Break of Structure, Order Blocks, Liquidity Pools, Fair Value Gaps, Killzones, etc.).
GMMA (Guppy Multiple Moving Averages) to visualize short, medium, and long trend strength.
Vegas Tunnels (EMA channels 144/169 and 576/676, plus optional 288/388 mid-tunnels).
Vegas Touch entry module with candlestick patterns (Pin Bar 40%, Engulfing 60%).
Extra slope EMAs (EMA60 & EMA200 with color change by slope).
It not only shows the structure (OB, Liquidity, FVGs) but also plots entry arrows and alerts when Vegas Touch + GMMA align.
⚙️ Script Components
1. GMMA Visualization
Short-term EMAs (3–15, green).
Medium-term EMAs (30–60, red).
Long-term EMAs (100–250, blue).
Used to measure crowd sentiment: short EMAs = traders, long EMAs = investors.
The script counts how many EMAs the close is above/below:
If close above ≥17 → possible buy trend.
If close below ≥17 → possible sell trend.
Plots arrows for buy/sell flips.
2. Vegas Tunnels
Short-term tunnel → EMA144 & EMA169.
Long-term tunnel → EMA576 & EMA676.
Mid-tunnels → EMA288 & EMA388.
Plotted as orange/fuchsia/magenta bands.
Conditions:
Breakout checks → if close crosses above/below these EMAs compared to prior bar.
3. ICT Toolkit
Market Structure Shift (MSS) & BOS (Break of Structure): labels & dotted lines when price shifts trend.
Liquidity zones (Buy/Sell): boxes drawn around swing highs/lows with clustering.
Fair Value Gaps (FVG/IFVG): automatic box drawing, showing break status.
Order Blocks (OB): bullish/bearish blocks, breaker OB recognition.
Killzones: highlights NY open, London open/close, Asia session with background shading.
Displacement: plots arrows on large impulse candles.
NWOG/NDOG: Weekly/Monday Open Gaps.
Basically, this section gives a full ICT price action map on the chart.
4. Vegas Touch Entry Module (Pin40/Eng60 + EMA12 switch)
This is the custom entry system you added:
Logic:
If EMA12 > EMA169, use Tunnel (144/169) as reference.
If EMA12 ≤ EMA169, use Base (576/676).
Hard lock: no longs if EMA12 < EMA676; no shorts if EMA12 > EMA676.
Touch condition:
Long → price touches lower band (Tunnel/Base).
Short → price touches upper band (Tunnel/Base).
With ATR/Percent tolerance.
Trend filter:
Must also align with long-term Vegas direction (144/169 vs 576/676 cross).
Close must be on the outer side of the band.
Candlestick filter:
Pin Bar (≥40% wick) or
Engulfing (≥60% bigger body than previous).
Cooldown: avoids multiple signals in short succession.
Plots:
Green triangle below = Long entry.
Red triangle above = Short entry.
Alerts: triggers once per bar close with full message.
5. Slope EMAs (Extra)
EMA60 and EMA200 plotted as thick lines.
Color:
Green if sloping upward (current > value 2 bars ago).
Red if sloping downward.
📡 Outputs & Alerts
Arrows for GMMA trend flips.
Arrows for Vegas Touch entries.
Labels for MSS, BOS, FVGs, OBs.
Liquidity/FVG/OB boxes.
Background shading for killzones.
Alerts:
“📡 Entry Alert (Long/Short)” for GMMA.
“VT LONG/SHORT” for Vegas Touch.
📝 Key Idea
This is not just one system, but a multi-layered confluence tool:
ICT structure & liquidity context.
GMMA trend recognition.
Vegas Tunnel directional bias.
Candlestick-based confirmation (Pin/Engulf).
Alert automation for live trading.
👉 It’s essentially a trader’s dashboard: structural map + moving averages + entry signals all in one.