Simple Pips GridOverview
This is a clean, simple, and highly practical indicator that draws horizontal grid lines at user-defined pip intervals.
Unlike other complex grid indicators, this script is designed to be lightweight and error-free. It eliminates automatic symbol detection and instead gives you full manual control, ensuring it works perfectly with any symbol you trade—FX, CFDs, Crypto, Stocks, Indices, and more.
Key Features
Universal Compatibility: Works with any trading pair by letting you manually define the pip value.
Fully Customizable: Easily set the pip interval for your grid (e.g., 10 pips, 50 pips, 100 pips).
Lightweight & Fast: Simple code ensures smooth performance without lagging your chart.
Visual Customization: Change the color, width, and style (solid, dashed, dotted) of the grid lines.
How to Use
It's incredibly simple to set up. You only need to configure two main settings:
Step 1: Set the "Pip Value"
This is the most important setting. You need to tell the indicator what "1 pip" means for the symbol you are currently viewing.
Go to the indicator settings and find the "Pip Value" input. Here are some common examples:
Symbol Pip Value (Input this number)
USD/JPY 0.01
EUR/USD 0.0001
GBP/USD 0.0001
XAU/USD (Gold) 0.1
JP225 (Nikkei 225) 10
US500 (S&P 500) 1
BTC/USD 0.1 or 1.0 (depending on your preference)
Google スプレッドシートにエクスポート
Step 2: Set the "Pip Interval"
Next, in the "Pip Interval" input, simply type how many pips you want between each line.
For a 10-pip grid, enter 10.
For a 50-pip grid, enter 50.
That's it! The grid will now be perfectly aligned to your specifications.
Additional Settings
Line Color, Width, Style: Customize the appearance of the lines to match your chart theme.
Number of Lines: Adjust how many lines are drawn above and below the current price to optimize performance and visibility.
This script was created with the assistance of Gemini (Google's AI) to be a simple and reliable tool for all traders. Feel free to use and modify it. Happy trading!
Penunjuk dan strategi
Market Maker AnalysisMarket Maker Analysis is a momentum-based indicator designed to detect potential price manipulations by institutional players. It generates buy/sell signals based on consecutive candle patterns, ADX strength, and RSI extremes.
Buy Signal: Two bullish candles, lower low on the 2nd candle, breakout above previous high, strong ADX, RSI > 80
Sell Signal: Two bearish candles, higher high on the 2nd candle, breakdown below previous low, strong ADX, RSI < 20
Each signal includes a JSON-formatted webhook alert with action, symbol, and stop loss price for automated trading systems.
Volume Weighted Regression ChannelThis indicator constructs a volume-weighted linear regression channel over a custom time range.
It’s conceptually similar to a Volume Profile, but instead of projecting horizontal value zones, it builds a tilted trend channel that reflects both price direction and volume concentration.
🧠 Core Features:
Volume-weighted points: Each candle contributes to the regression line proportionally to its volume — heavier candles shift the channel toward high-activity price zones.
Linear regression line: Shows the trend direction within the selected time interval.
±σ boundaries: Outer bands represent the standard deviation of price (also volume-weighted), highlighting statistical dispersion.
Fully customizable: Adjustable line styles, widths, and channel width (sigma multiplier).
Time window control: Select any start and end time to define the regression interval.
📊 Why use this instead of Volume Profile?
While Volume Profile shows horizontal distributions of traded volume, this indicator is ideal when:
You want to understand how volume clusters affect trend direction, not just price levels.
You're analyzing time-dependent flow rather than static price zones.
You're looking for a dynamic volume-adjusted channel that moves with the market's structure.
It’s especially useful in identifying volume-supported trends, hidden pullback zones, and statistical extremes.
⚙️ Notes:
Works on any timeframe and instrument.
Does not repaint.
Does not require volume profile data feeds — uses standard volume and hl2.
HTF Support & Resistance]Enable the timeframes you need (D1, 4H, 1H, 15M) from the settings.
Use it to identify key zones where price may bounce or break.
Recommended for multi-timeframe analysis and scalping.
Signal Generator [SciQua.com]Signal Generator — Modular Signal Logic Tool
Signal Generator is a configurable utility designed to help users build and visualize custom signal logic using normalized and optionally smoothed input series . It supports a variety of trigger conditions , making it suitable for a broad range of technical signal detection tasks. This tool is intended for analytical and educational purposes as part of the broader SciQua framework for technical research and visualization.
This script does not execute trades and does not constitute financial advice. Results may vary depending on configuration and market context.
🔍 Purpose
Pre-process inputs via smoothing and normalization
Detect specific behaviors or transitions in data series
Configure multiple types of signal triggers
Annotate signals directly on the chart using optional shapes or labels
Apply debounce logic to manage signal frequency
🧱 Script Structure
1. Input Source
Default input: close
Any custom data series (e.g., indicator output) can be used
2. Smoothing (optional)
Methods: sma, ema, rma, hma, tema, gaussian, etc.
Purpose: Reduce short-term volatility or noise in the signal
3. Normalization (optional)
bounded (0–1 scale)
unbounded (centered scale)
zscore (statistical standardization)
none (raw input)
Helps align input behavior across different symbols/timeframes
⚙️ Trigger Methods
above, below — Static threshold comparisons
crosses, crosses above/below — Value crossing a line
equal, not equal — Equality checks
in range, outside range — Range boundary logic
increases, decreases — Detects directional change
equals previous, changes — Detects plateaus or jumps
turns up, turns down — 3-bar inflection detection
spike up, spike down — Sudden large moves
velocity exceeds, velocity drops below — Based on rate-of-change
🧰 Key Configuration Parameters
value : Threshold used in static comparisons
minVal, maxVal : For range-based triggers
spikeThreshold : Minimum jump/drop for spike detection
velocityPeriod : Bars to look back for rate-of-change
velocityThreshold : Minimum velocity to trigger signal
minBarsBetween : Debounce — minimum bars between signals
triggerDirection : "buy" or "sell" marker orientation
useShapes : Toggles between shape and label display
📊 Chart Overlays & Visualization
Smoothed/Normalized Series : Plots of pre-processed input
Trigger Thresholds : Visual reference for values, bounds, and velocity
Velocity Gradient Bar : Highlights intensity of movement
Signal Markers : Conditional labels or shapes on signal events
🧪 Sample Use Configurations
1. Range Reversal Setup
Trigger: turns up / down
Smoothing: sma or hma
Normalization: zscore
2. Momentum Spike Filter
Trigger: spike up / down
Spike Threshold: 5.0
Smoothing: none
Normalization: bounded
3. Trend Entry by Velocity
Trigger: velocity exceeds
Velocity Period: 5
Velocity Threshold: 2.5
Normalization: none
4. Debounced Cross
Trigger: crosses above
Smoothing: ema(20)
Normalization: zscore(50)
minBarsBetween: 10
🧭 Slope-Based Signal Approximation
To detect steep short-term changes, use:
velocityPeriod = 1
triggerMethod = "velocity exceeds"
velocityThreshold = 0.5
This mimics short-term “angle” detection based on delta rather than true geometric slope.
📝 Setup & Deployment
Paste the script into the Pine Script editor
Apply it to your desired chart
Choose your input (e.g., RSI, MACD, price series)
Configure smoothing and normalization as needed
Select trigger logic suited to your analysis
Observe and tune based on visual feedback
🌐 More Info
sciqua.com
RSI Divergence by BAPI MONDALPure RSI Divergence indicator which tells you in the chart buy and sell position immediately
Simple Pips GridOverview
This is a clean, simple, and highly practical indicator that draws horizontal grid lines at user-defined pip intervals.
Unlike other complex grid indicators, this script is designed to be lightweight and error-free. It eliminates automatic symbol detection and instead gives you full manual control, ensuring it works perfectly with any symbol you trade—FX, CFDs, Crypto, Stocks, Indices, and more.
Key Features
Universal Compatibility: Works with any trading pair by letting you manually define the pip value.
Fully Customizable: Easily set the pip interval for your grid (e.g., 10 pips, 50 pips, 100 pips).
Lightweight & Fast: Simple code ensures smooth performance without lagging your chart.
Visual Customization: Change the color, width, and style (solid, dashed, dotted) of the grid lines.
How to Use
It's incredibly simple to set up. You only need to configure two main settings:
Step 1: Set the "Pip Value"
This is the most important setting. You need to tell the indicator what "1 pip" means for the symbol you are currently viewing.
Go to the indicator settings and find the "Pip Value" input. Here are some common examples:
Symbol Pip Value (Input this number)
USD/JPY 0.01
EUR/USD 0.0001
GBP/USD 0.0001
XAU/USD (Gold) 0.1
JP225 (Nikkei 225) 10
US500 (S&P 500) 1
BTC/USD 0.1 or 1.0 (depending on your preference)
Step 2: Set the "Pip Interval"
Next, in the "Pip Interval" input, simply type how many pips you want between each line.
For a 10-pip grid, enter 10.
For a 50-pip grid, enter 50.
That's it! The grid will now be perfectly aligned to your specifications.
Additional Settings
Line Color, Width, Style: Customize the appearance of the lines to match your chart theme.
Number of Lines: Adjust how many lines are drawn above and below the current price to optimize performance and visibility.
This script was created with the assistance of Gemini (Google's AI) to be a simple and reliable tool for all traders. Feel free to use and modify it. Happy trading!
HTF Rejection Block + SMT [TakingProphets]HTF Rejection Blocks + SMT Divergence 🚀
This indicator paints rejection zones from your chart’s timeframe plus four higher timeframes, so you can instantly see where big players stepped in to push price away. You get to choose which of those higher timeframes appear, keeping your view as simple or detailed as you like.
On top of that, it watches for SMT divergences between your chart symbol and a matching or custom ticker. Whenever price makes a new high or low but your chosen symbol doesn’t, you’ll see a clear divergence marker pop up right inside the rejection block 🔍⚡
Just toggle the extra timeframes you need, type in an alternate symbol if you want to compare across markets, and let the script do the rest. No clutter, no guesswork—just powerful confluence spots lighting up your chart. 🙌📈
CypherB Money Flow (Approximation)Just a quick and dirty script to estimate money for from CipherB free.
Candle Opens by HAZEDCandle Opens by HAZED
🎯 Overview
A clean, optimized indicator that displays key timeframe opening prices with enhanced performance and modern styling. Perfect for identifying critical support/resistance levels across multiple timeframes without chart clutter.
📈 Key Features
- 5 Major Timeframes: Daily, Weekly, Monthly, Quarterly, and Yearly opens
- Current Opens Only: No historical lookback - shows only the most recent/relevant levels
- Smart Positioning: Toggle between staggered lines (prevents overlap) or uniform length
- Dual Label Styles: Choose plain text (minimal) or enhanced labels with prices
- Performance Optimized: Streamlined code for faster loading and smoother operation
- Alert System: Get notified when any timeframe opens change
- Extended Hours Support: Works with pre/post market sessions
🎨 Customization Options
- Individual color selection for each timeframe
- Adjustable line width (1-4px)
- Right extension length control
- Optional left tail extensions
- Show/hide labels with style options
- Same length lines toggle for clean alignment
⚙️ Advanced Settings
- Discover Prices: Use chart data instead of HTF requests (for data feed discrepancies)
- Extended Hours: Display opens during pre/post market sessions
- Alert Controls: Enable/disable notifications for timeframe changes
📊 Default Configuration
- Enabled: Daily (Green), Weekly (Orange), Monthly (Red), Yearly (Blue)
- Disabled: Quarterly (Purple) - easily enabled if needed
- Labels: Enhanced style with prices shown by default
- Lines: 2px width, staggered positioning for optimal spacing
🚀 Performance Improvements
- Removed unnecessary historical data tracking
- Optimized drawing functions for better responsiveness
- Cleaner variable management and memory usage
- Enhanced yearly open detection algorithm
💡 Best Use Cases
- Swing trading: Identify key weekly/monthly levels
- Day trading: Respect daily opens as support/resistance
- Long-term investing: Monitor yearly opens for major trends
- Multi-timeframe analysis: See all key levels at once
🔧 Technical Notes
- Uses proper request.security() calls for accurate data
- Smart change detection prevents unnecessary redraws
- Handles different chart timeframes automatically
- Compatible with all asset classes and exchanges
Original concept enhanced and optimized by HAZED for modern trading needs.
True Market Structure [Advanced Liquidity Hunter] v1True Market Structure v1
📌 Table of Contents
1. Introduction
2. Core Concepts
3. Indicator Components
4. Configuration
5. Signal Interpretation
6. Trading Strategies
7. Risk Management
8. FAQ
________________________________________
🎯 Introduction
What is True Market Structure?
True Market Structure is an advanced technical analysis indicator that reveals hidden market mechanisms. Based on Smart Money Concepts (SMC) and ICT (Inner Circle Trader) methodology, it identifies where large financial institutions hunt retail traders' stop losses.
Who is this indicator for?
• ✅ Beginners - Intuitive visualizations and clear signals
• ✅ Intermediate - Deeper market structure analysis
• ✅ Advanced - Full parameter control and advanced strategies
Key Benefits
• 🔍 Sees the invisible - Hidden liquidity levels
• 🎯 Precise signals - Based on real data
• ⚡ Real-time - Instant analysis
• 🛡️ Capital protection - Warns against traps
💡 Pro Tip: Start with 15M timeframe! That's where most action happens - stop hunts every few candles, retail traps, liquidity battles. It's the best "microscope" to understand how the market really works.
________________________________________
📚 Core Concepts
Smart Money vs Retail Money
Smart Money:
• Banks, hedge funds, large institutions
• Create market moves, don't follow them
• Exploit retail predictability
Retail Money:
• Individual traders
• Often act emotionally
• Place stop losses at predictable levels
Liquidity
Liquidity refers to areas where many orders are waiting:
• Stop losses above highs (shorts)
• Stop losses below lows (longs)
• Orders at round numbers
Key principle: Smart Money needs liquidity to enter/exit large positions. That's why they "hunt" stop losses first, then make the real move.
________________________________________
🔧 Indicator Components
1. 💧 Liquidity Pools
What is it?
• Price levels tested multiple times
• Stop loss accumulation areas
• Displayed as blue horizontal lines
How to read?
• LIQ HIGH x15 = Level tested 15 times from above
• LIQ LOW x8 = Level tested 8 times from below
• Higher number = stronger zone
Significance:
• Price magnet
• High probability of reaction
• Smart Money target
2. 🎣 Stop Hunts
What is it?
• Candles with long wicks
• Brief penetrations of important levels
• Marked with purple labels
Types:
• STOP HUNT ⬆ - Upward hunt (shorts' stop losses)
• STOP HUNT ⬇ - Downward hunt (longs' stop losses)
Characteristics:
• Long wick (minimum 2x larger than body)
• Wick must also be larger than 0.5 ATR (default)
• Breaks recent high/low from lookback period
• Quick price return
3. 🪤 Trapped Traders
What is it?
• Areas where retail got trapped
• Failed breakouts that didn't hold
• Colored rectangles on chart
Trap types:
• 🔴 TRAPPED LONGS - Buyers caught at top
• 🟢 TRAPPED SHORTS - Sellers caught at bottom
Mechanism:
1. Important level break
2. Retail enters breakout direction
3. Price returns leaving them at loss
4. Stop losses get activated
4. 🎪 Inducement Levels
What is it?
• "Too obvious" support/resistance
• Levels respected minimum 3 times
• Orange dashed lines
Why is it a trap?
• Look like perfect trading spots
• Attract retail traders' attention
• Smart Money uses them to collect liquidity
Example:
• 100,000 level on BTC - round number
• 3 bounces = "strong support"
• Retail buys, Smart Money sells to them
5. ⏰ Kill Zones
What is it?
• Highest Smart Money activity periods
• Red background on chart
• Maximum manipulation time
Default Kill Zones:
• 🌆 London Open (08:00-09:00 UTC)
• 🏙️ NY Open (13:00-14:00 UTC)
• 🌃 Midnight (00:00-01:00 UTC)
Trading Sessions (chart background):
• 🌏 Asian (00:00-08:00 UTC) - Gray background
• 🇬🇧 London (08:00-16:00 UTC) - Blue background
• 🇺🇸 New York (13:00-21:00 UTC) - Orange background
Note: London and New York sessions overlap (13:00-16:00 UTC) - this is the highest liquidity period!
6. 🎯 Smart Money Signals
What is it?
• Potential institutional entry points
• Large labels with 🎯 emoji
• Appear after stop hunts
Conditions:
1. Stop hunt in one direction
2. High volume (2x average)
3. In Kill Zone
4. Direction reversal
7. 📊 Market Analysis Table
The table displays 9 rows with key information:
1. Session - Current trading session (ASIA/LONDON/NEW YORK/CLOSED)
2. Kill Zone - Zone status (🔴 ACTIVE / ✅ SAFE)
3. Liquidity Pools - Number of liquidity zones found
4. Inducement Levels - Number of bait levels
5. Traps (50 bars) - Number of traps in last 50 bars
6. Market Bias - Market direction:
o BULLISH 📈 (close > SMA50 and EMA21)
o BEARISH 📉 (close < SMA50 and EMA21)
o NEUTRAL ➡️ (other cases)
7. Volume - Volume status:
o 🔥 EXTREME (>2x average)
o ⬆️ HIGH (>1.5x average)
o NORMAL (>average)
o ⬇️ LOW (3 traps)
o ⚠️ CHOPPY (>5 traps)
o 👀 WATCH LIQUIDITY (>3 liquidity zones)
o ✓ NORMAL (other)
________________________________________
⚙️ Configuration
Step 1: Basic Configuration
Where to find settings:
• Method 1: Click the ⚙️ (gear) icon next to indicator name on chart
• Method 2: Double-click any indicator line/label
• Method 3: Right-click → "Settings" on indicator name
🌍 Timezone Setting
UTC Offset: Your timezone
Examples:
- London: 0 (winter) or +1 (summer)
- New York: -5 (winter) or -4 (summer)
- Tokyo: +9
🎚️ Sensitivity Adjustment
For beginners - Default settings:
• Lookback Period: 30
• Detection Sensitivity: 0.3
• Min. Touches: 2
For different timeframes:
• 15M: Sensitivity 0.2-0.3, Lookback 20-30
• 1H: Sensitivity 0.3-0.4, Lookback 30-40
• 4H: Sensitivity 0.4-0.5, Lookback 40-50
For different instruments:
• Forex Majors (EUR/USD): Sensitivity 0.1-0.2
• Indices (S&P500;): Sensitivity 0.2-0.4
• Crypto (BTC): Sensitivity 0.4-0.8
• Stocks: Sensitivity 0.3-0.5
Step 2: Advanced Configuration
🔧 Liquidity Zones Parameters
• Min. Touches (1-5): Less = more signals
• Lookback (20-200): More = further levels
• Max Zones (1-10): Display quantity control
🎣 Stop Hunt Parameters
• Wick/Body Ratio (1-5): Lower = more signals
• Min. Wick Size (0.1-2 ATR): Filters small wicks
🎯 Smart Money Analysis
• Require Kill Zone: Enable for fewer signals
• Volume Multiplier: Higher = only big moves
________________________________________
📖 Signal Interpretation
Note: Most examples are shown on 15M timeframe, because that's where you can best see all market manipulations in action!
Signal Importance Hierarchy
1. 🎯 Smart Money Signal - Strongest signal
2. 🪤 Trapped Traders - High reliability
3. 🎣 Stop Hunt - Medium reliability
4. 💧 Liquidity Touch - Needs confirmation
Interpretation Examples
Scenario 1: "Liquidity Grab"
You see: LIQ HIGH x20 at 100,000
+ Stop Hunt ⬆
+ Volume spike
= Likely decline
Scenario 2: "Trap and Reverse"
You see: TRAPPED LONGS
+ Kill Zone Active
+ SM SHORT 🎯
= Strong short signal
Scenario 3: "Inducement Break"
You see: Inducement Level break
+ No volume
+ Status: NORMAL
= Likely trap, wait
Colors and Their Meaning
• 🔵 Blue - Liquidity (neutral)
• 🟠 Orange - Caution, possible trap
• 🔴 Red - Negative signal / long trap
• 🟢 Green - Positive signal / short trap
• 🟣 Purple - Stop hunt (neutral, wait for reaction)
________________________________________
💡 Trading Strategies
Strategy 1: "Liquidity Sweep" (For Beginners)
Assumptions:
• Trade only with trend
• Wait for liquidity collection
• Enter on return
Best timeframe for learning: 15M - you'll see all manipulation stages in real-time!
Steps:
1. Identify trend (Market Bias in table)
2. Find nearest liquidity zone aligned with trend
3. Wait for price to touch and bounce
4. Enter after confirming candle
5. Stop loss beyond liquidity zone
6. Take profit at next zone
Example:
• Trend: BULLISH
• Liquidity at 100,000 (support)
• Price drops to 99,950 (stop hunt)
• Returns above 100,000
• LONG with SL 99,900, TP 101,000
Strategy 2: "Kill Zone Hunter" (Intermediate)
Assumptions:
• Trade only in Kill Zones
• Exploit stop hunts
• Aggressive entries
Ideal timeframe: 15M - in Kill Zones on 15M you'll see exactly every Smart Money move!
Steps:
1. Wait for Kill Zone (red background)
2. Watch first 15-30 minutes
3. Look for stop hunt
4. Enter immediately after stop hunt
5. Tight stop loss (0.5 ATR)
6. Scale position with profit
Tips:
• London Open - often stop hunt down, then rise
• NY Open - often tests Asian High/Low
• Midnight - position resets, false moves
Strategy 3: "Smart Money Follow" (Advanced)
Assumptions:
• Ignore minor signals
• Wait only for SM signals
• Larger positions, fewer trades
Steps:
1. Status must show HIGH RISK or WATCH LIQUIDITY
2. Wait for stop hunt series (minimum 2)
3. Watch Trapped Traders
4. Enter only on SM signal 🎯
5. Stop loss beyond last extreme
6. Hold position until opposite SM signal
Position Management:
• 1/3 position at signal
• 1/3 after direction confirmation
• 1/3 after breaking last high/low
________________________________________
🛡️ Risk Management
Basic Rules
1. Never place stop loss at obvious level
o Add 5-10 pips buffer
o Avoid round numbers
o Check where Liquidity Pools are
2. Reduce position in Kill Zones
o 50% of normal size
o Or wait until they end
3. Avoid trading at HIGH RISK status
o Unless experienced
o Then reverse logic - look for traps
Stop Loss - Where to Place?
❌ Bad places:
• Exactly below/above candle
• At Inducement Levels
• At round numbers
• Where Liquidity Pools visible
✅ Good places:
• Beyond last stop hunt
• Behind Trapped Traders zone
• Minimum 1.5 ATR from entry
• Where SM would lose significantly
Position Sizing
Safe position formula:
Risk per trade = 1-2% of capital
Position size = Risk / (Stop Loss in pips × Pip value)
Modifiers:
• Kill Zone active: × 0.5
• After SM signal: × 1.5
• HIGH RISK status: × 0.3
• With trend: × 1.2
________________________________________
❓ FAQ
General Questions
Q: Indicator shows nothing, what to do? A: Check in settings:
1. Reduce "Min. Touches" to 1
2. Increase "Detection Sensitivity"
3. Enable "Debug Mode" to see statistics
4. Ensure proper timeframe (15M+)
5. On 15M sometimes wait a few candles for first signal
Tip for 15M: If you don't see signals on 15M, enable Debug Mode. If it shows Liq=0, reduce "Min. Touches" to 1 and increase "Liquidity Lookback" to 100.
Q: Too many signals, I'm lost A:
1. Increase requirements (min. touches, respects)
2. Disable some components
3. Trade only strongest signals (SM 🎯)
Q: Which timeframe is best? A:
• 15M - PERFECT FOR LEARNING! Many signals, shows all manipulations, great for beginners
• 30M - Good balance, less noise than 15M
• 1H - Medium-term trading, clear setups
• 4H - Fewer signals but bigger moves, for patient traders
• 1D - Only major levels, position trading
💡 For beginners: Start with 15M! That's where you'll see how the market really works - stop hunts, traps, false breakouts. Only after understanding the mechanics, move to higher timeframes.
Technical Questions
Q: What does "x15" mean at LIQ? A: Number of level touches. Higher = stronger level.
Q: Why are Kill Zones red? A: High risk periods - most manipulation.
Q: What does Debug Mode show? A: When "Show Debug Info" is enabled, a label appears above the last candle with:
• Liq=X - number of Liquidity Pools found
• Ind=X - number of Inducement Levels found
• HighLvl=X - number of highs stored in memory
• LowLvl=X - number of lows stored in memory
This helps understand why sometimes no signals appear (e.g., when Liq=0).
Trading Questions
Q: Can I use only this indicator? A: Yes, but better combined with:
• Trend analysis
• Support/resistance
• Volume
Q: Does it work on all markets? A: Best on liquid ones:
• ✅ Major Forex pairs
• ✅ Main indices
• ✅ BTC, ETH
• ⚠️ Less liquid altcoins
• ❌ Exotic pairs, small caps
Q: How to remove indicator from chart? A:
• Method 1: Click X next to indicator name
• Method 2: Right-click on name → "Remove"
• Method 3: In indicators panel (left side) find and click trash icon
Q: Can I use multiple copies of the indicator? A: Yes! You can add the indicator multiple times with different settings (e.g., one for liquidity, another for stop hunts only).
Q: How much can I earn? A: Indicator doesn't guarantee profit. It's an analysis tool, not a trading system. Your results depend on:
• Discipline
• Risk management
• Experience
• Market conditions
________________________________________
🎯 Quick Start - Checklist
Pro Tip: After adding the indicator, click the star ⭐ to add to favorites - you'll have quick access in the future!
For Beginners:
• After adding indicator, set your UTC offset in settings
• Start on 15M timeframe (where you'll see the most action!)
• Observe for a week without trading
• Learn to recognize each signal type
• Practice on 15M, then try 1H
• Start with "Liquidity Sweep" strategy
• Max 1% risk per trade
• Keep trading journal
First Steps:
1. Days 1-3: Observe and learn signals
2. Days 4-7: Mark potential entries (no trading)
3. Week 2: Demo trading with small positions
4. Week 3+: Real trading with strict risk management
________________________________________
💬 Support
• Questions & Suggestions: Comments section under the indicator
• Bug Reports: Describe issue in comments with timeframe and instrument
• Updates: Click "Follow" to receive notifications
• Examples: Regular trading idea publications with usage examples
💡 Community: Share your setups in comments - let's help each other!
________________________________________
⚖️ Disclaimer
This indicator is an educational and analytical tool. It does not constitute investment advice. Trading involves risk of capital loss. Always conduct your own analysis and apply appropriate risk management. Historical results do not guarantee future profits.
Kaliteli Trend Devam FormasyonuHigh-Quality Trend Continuation Strategy with Volume/Momentum/Pullback Validation
An advanced trading system that generates Buy / Sell / Exit signals by confirming trend continuations with volume, momentum, and healthy pullback analysis.
⚙️ 1. INDICATOR SETTINGS
Customizable parameters for user flexibility:
EMA Period: Main trend indicator (default: 21)
RSI Period: Momentum measurement (default: 14)
Volume Factor: Threshold for volume surge detection (default: 1.3)
Min Bars Between Signals: Prevents back-to-back signals (default: 5)
Pullback Strength: Defines valid pullbacks (default: 2)
Trading Capital & Leverage: Enables USD-based PnL tracking
📈 2. TECHNICAL INDICATORS
This strategy uses the following tools:
EMA (21 & 9): Trend direction filter
RSI & Stochastic K: Momentum detection
Volume SMA: Identifies volume surges
ATR: Measures candle strength
Bollinger Bands: For squeeze & breakout analysis
MACD: Momentum crossover confirmation
🔍 3. FILTERS & CONDITIONS
📊 Trend Definition
Strong Uptrend: Price above EMA, short EMA above long EMA
Strong Downtrend: The opposite configuration
⚡ Momentum Confirmation
RSI and Stoch K must be in neutral zones (not overbought/oversold)
🔊 Volume Confirmation
Volume surge: >130% of average
Or: Consecutively rising volume bars
🔁 Healthy Pullback
Compares previous lows/highs to detect valid pullbacks
At least (pullback_strength - 1) valid pullback bars required
🎯 Strong Candles
Based on ATR — strong bullish or bearish candle detection
✅ 4. SIGNAL CONDITIONS
BUY SIGNAL
Strong uptrend
Momentum alignment
MACD bullish crossover
Healthy pullback
Volume confirmation
Strong bullish candle
Breaks previous high & no BB squeeze
💡 Breakout entry: BB upper break + momentum + volume confirmation
SELL SIGNAL
Strong downtrend
Negative momentum
MACD bearish crossover
Weak recovery pullback
Volume confirmation
Strong bearish candle
BB lower break
🚪 5. EXIT CONDITIONS
Trend/Momentum Exit
Trend reversal
Loss of momentum
RSI/Stoch in extreme zones
✅ Exit only after candle close confirmation.
📊 6. PROFIT CALCULATIONS
Entry price is logged per trade
Gain/loss calculated in both % and USD
Total profit, loss, net PnL and win rate updated
Leverage is fully factored into all calculations
📋 7. INFO PANEL
A real-time data table at the chart's bottom shows:
Current trend direction
Total signals (BUY / SELL / EXIT)
Last signal quality score (%)
Active trade PnL (USD & %)
Total profit/loss (USD-based)
Win rate & W/L ratio
Net profit (USD & %)
🔔 8. ALERTS
Ready-to-use TradingView alerts for:
Buy / Sell signal confirmed
Exit signal triggered
Trend change detected (up/down/sideways)
📌 OVERALL SUMMARY
Feature Description
Strategy Type Trend Continuation
Signal Quality 6-layer filter + scoring
Repaint? ❌ No repaint, confirmed on candle close
Stats Tracking ✅ Real-time PnL, win rate, active trades
Style Mid-term swing positions
USD Tracking ✅ Capital & leverage-based PnL
Shareable? ✅ Yes – community-ready & reliable
RSI Games 1.2he "RSI Games 1.2" indicator enhances the standard RSI by adding several layers of analysis:
Standard RSI Calculation: It calculates the RSI based on a configurable length (default 14 periods) and a user-selected source (default close price).
RSI Bands: It plots horizontal lines at 70 (red, overbought), 50 (yellow, neutral), and 30 (green, oversold) to easily identify extreme RSI levels.
RSI Smoothing with Moving Averages (MAs) and Bollinger Bands (BBs):
You can apply various types of moving averages (SMA, EMA, SMMA, WMA, VWMA) to smooth the RSI line.
If you choose "SMA + Bollinger Bands," the indicator will also plot Bollinger Bands around the smoothed RSI, providing dynamic overbought/oversold levels based on volatility.
The RSI line itself changes color based on whether it's above (green) or below (red) its smoothing MA.
It also fills the area between the RSI and its smoothing MA, coloring it green when RSI is above and red when below.
Bollinger Band Signals: When Bollinger Bands are enabled, the indicator marks "Buy" signals (green arrow up) when the RSI crosses above the lower Bollinger Band and "Sell" signals (red arrow down) when it crosses below the upper Bollinger Band.
Background Coloring: The background of the indicator pane changes to light green when RSI is below 30 (oversold) and light red when RSI is above 70 (overbought), visually highlighting extreme conditions.
Divergence Detection: This is a key feature. The indicator automatically identifies and labels:
Regular Bullish Divergence: Price makes a lower low, but RSI makes a higher low. This often signals a potential reversal to the upside.
Regular Bearish Divergence: Price makes a higher high, but RSI makes a lower high. This often signals a potential reversal to the downside.
Hidden Bullish Divergence: Price makes a higher low, but RSI makes a lower low. This can indicate a continuation of an uptrend.
Hidden Bearish Divergence: Price makes a lower high, but RSI makes a higher high. This can indicate a continuation of a downtrend.
Divergences are visually marked with labels and can trigger alerts.
TTT Indicator (by. Hantoo Indicator)📊 TTT Indicator (by. Hantoo Indicator) Overview
Long/Short Signal Labels – Visual entry markers with emoji labels for clarity
Counter-Trend Signals – Extreme Stoch RSI values trigger reverse entries
Auto-Daily Pivot Levels – P, R1–R3, S1–S3 levels plotted with labels
Real-Time Alerts – TradingView alerts integrated for instant signal notifications
SL/TP Visualized – Stop-loss and take-profit lines shown for 5 bars after entry
Optimized for 15-Minute Charts – Designed specifically for scalping and intraday
Daily Auto-Refresh – Pivot levels and labels reset at start of each new day
Fully Automated Detection – No buttons, no hassle—runs seamlessly
Clean Visual Cues – Green/red fill zones highlight bullish/bearish zones
Built for Pro Traders – Practical, real-world strategy implementation ready
EMA Slope Divergence ScaleEMA Slope Divergence Scale is a custom indicator that visualizes the difference in slope between two exponential moving averages (EMAs) to reveal momentum shifts with precision. By measuring the rate of change of each EMA over a user-defined lookback period, the indicator plots a color-coded histogram that highlights the magnitude and direction of divergence between the short- and long-term EMAs. Each bar is dynamically colored based on divergence intensity—from minimal to extreme—allowing traders to quickly assess acceleration or deceleration in trend momentum. Adjustable EMA lengths, lookback settings, and color tiers make this tool highly customizable for any market or timeframe.
Icy-Hot Visual Indicator [SciQua.com]📈 Icy-Hot Visual Indicator
The Icy-Hot Visual Indicator is a powerful, fully customizable chart enhancement tool that overlays color-coded gradients directly onto your price candles and chart background, providing immediate visual cues about market dynamics based on your preferred inputs and normalization style.
Tip: Ensure that you've moved the indicator to the front in order for the candles to show up.
Created by SciQua.com, this tool is designed for traders who want clear, real-time visual feedback on price strength, momentum, or volatility — without cluttering their charts with noisy signals.
🔍Key Features
🔹Dual Visual Layers:
🔹Candle Gradient Coloring
Colors the candle bodies and wicks using a smooth 3-color gradient based on a normalized, smoothed price-based value (or any source input).
🔹Background Gradient Layer
Adds a semi-transparent gradient overlay to the chart background for deeper visual context, such as trend zones, strength areas, or volatility states.
🔹Customizable Normalization & Smoothing:
Both the Bar Source and Background Source layers allow you to select how values are processed:
🔹Source Type Options:
🔹bounded: Normalizes values within a fixed min-max window.
🔹unbounded: Allows values to expand naturally over time.
🔹zscore: Uses statistical z-score normalization.
🔹Smoothing Options (12+ types):
🔹Choose from EMA, SMA, WMA, RMA, TEMA, VWMA, HMA, DEMA, Median, Gaussian, LinReg, ExpReg, and more. This ensures a smooth yet responsive gradient flow.
🔹 Full Gradient Control:
🔹Choose three colors for each layer: Low, Mid, and High values.
🔹Optionally reverse the gradient, allowing you to match the indicator’s behavior to your strategy or aesthetic preference.
⚙️ Inputs Summary
🟦 Bar Color Settings:
🔹Bar Source: Any price-based input (e.g., close, hl2, volume)
🔹Source Type: Normalization method (bounded, unbounded, score)
🔹Smoothing: Type and period of smoothing
🔹Gradient Colors: Customize low → mid → high range
🔹Reverse Gradient: Inverts visual order
🟨 Background Color Settings:
🔹Identical flexibility and customization as bar settings, applied to background.
🧠 How It Works
Under the hood, this script imports utility functions from a private module (JoshuaDanford/SciQua) to perform advanced smoothing, normalization, and gradient rendering. It uses these to compute two values:
🔹barValue: Drives the candle gradient
🔹bgValue: Drives the background shading
Each is dynamically calculated from user inputs and then fed into a visually rich 3-stop gradient function.
📌 Use Cases
🔹Quickly visualize market strength and trend transitions
🔹Highlight volatility spikes or momentum shifts
🔹Enhance visual clarity for discretionary trading
🔹Use background gradients to spot broader trends while monitoring price bars for entry/exit cues
Examples of How to Use It:
🎚️ Volume-Based Visualization
Set the source to volume to see volume spikes and fading participation visualized directly in your candles or background.
📉 RSI or Custom Oscillator Inputs
Apply the gradient to an rsi(close, 14) or any custom oscillator to highlight overbought/oversold zones visually.
📈 Smoothed EMA Trends
Use a smoothed moving average as the input to show subtle trend accelerations or flattening phases in color.
🧪 External Scripts or Indicators
If you’re using a separate indicator script on your chart, simply reference that output in the source input to color candles based on your custom strategy logic.
EMA Near Cross (ATR‑based)The EMA Near Cross (ATR-based) indicator identifies potential bullish and bearish setups by detecting when a fast EMA is approaching a slow EMA within a customizable fraction of the ATR, providing a volatility-adjusted early signal of trend shifts. It highlights near-cross conditions with purple dots—below the candle for bullish setups and above for bearish—based on directional momentum and EMA proximity. All key parameters, including EMA lengths, ATR length, and tolerance, are user-configurable, and built-in alert conditions make it easy to track signals in real time.
Speedy)Use for scalping, entry when price is upper or lower in the band and rsi>80 or rsi <20 in order to filter false entry
Opening Range Breakout - India Market [UkutaLabs]█ OVERVIEW
** This script was designed to work specifically with the India Markets
The Opening Range Breakout is a powerful trading tool that indicates a strong range based on the high and low of the first fifteen or thirty minutes after market open. This range serves as a potential area of Support or Resistance that traders should be aware of during their trading. Because of this, the Opening Range Breakout is a versatile trading tool that can be included in a wide variety of trading strategies.
The aim of this script is to simplify the trading experience of users by automatically identifying and displaying price levels that they should be aware of.
█ USAGE
When the India Market opens each day, the script will automatically identify and label the opening range in real time. The user can control whether the script measures the first 15 or 30 minutes of each trading day to fit each trader’s trading style.
Because there tends to be a spike in volume during this period, the range that is identified can serve as a powerful indication of overall market strength. Once the price breaks out of this range, it then can be used as an area of support or resistance depending on the direction of the breakout.
█ SETTINGS
Configuration
• Display Mode: Determines the number of days the script should load.
• Apply DST: Adjusts the opening to Daylight Savings Time.
Label Settings
• Show Labels: Determines whether labels are drawn within the range.
• Label Size: Determines the size of font for the labels.
• Label Alignment: Determines the font alignment for the labels.
Line Settings
• Line Width: Determines the thickness of the lines.
• Label Style: Determines the style to draw the lines.
Range Settings
• 15 Minute: Determines whether or not the 15 minute range is drawn.
• 15 Minute Color: Determines the color of the 15 minute range and labels.
• 30 Minute: Determines whether or not the 30 minute range is drawn.
• 30 Minute Color: Determines the color of the 30 minute range and labels.
RSI Pullback Signal (Confirmed Logic)Indicator used for XAUUSD pullback strategy . Waiting for price on RSI to go past the 30 or 70 then come back through the 30 or 70 then pullback to give me an opportunity to buy or sell .
ynsrttp indicatorBuy and sell signals generated through a combination of different indicators with high accuracy.
Marubozu Candle IdentifierRIdentify Marubu candles effortlessly, ensuring accessibility for who requires swift analysis.