Percentage Buy, Target, Stop + OverlayPercentage Buy, Target, Stop + Overlay
This tool helps traders plan entries and exits using fixed percentage offsets instead of volatility. It plots Buy, Target, and Stop levels on the chart based on a user‑defined entry price and simple percentage multipliers—giving a clear, objective framework for risk/reward.
NOTE: To activate the lines and table, enter a Buy Price greater than zero.
What It Does
Buy Price Input: Manually enter your intended entry price (e.g. planned or executed trade).
Percentage‑Based Target and Stop:
Target Price = Buy × (1 + Target % / 100)
Stop Price = Buy × (1 – Stop % / 100)
Visual Overlay: Draws horizontal lines at Buy, Target, and Stop levels on your chart.
Interactive Table: Displays Buy, Target, Stop and their percentages in a customizable on‑chart table.
Customization Options
Line Settings
Choose color, style (solid/dashed/dotted), and width for each line.
Extend lines to the right only or both directions.
Table Settings
Position table (top/bottom × left/right).
Toggle rows for Buy, Target, Stop, and percentage values.
Adjust text colors and background transparency.
How to Use It for Trading
Plan Your Trade: Enter your entry price.
Set Exits: Specify target and stop percentages to instantly see risk/reward zones.
Visual Reference: Lines update in real time as you adjust inputs—ideal for live monitoring or backtesting.
Straightforward Risk Management: Fixed percentages offer a simple alternative when ATR or volatility‑based levels aren’t preferred.
Ideal For
Traders who prefer fixed percentage targets/stops
Quick risk/reward visualization
Beginners seeking a clear, rule‑based exit framework
Any trader wanting an alternative to volatility‑based sizing
Göstergeler ve stratejiler
VdC_SetupExclusive setup for the Vou de Cripto community.
The candle turned yellow, it's a buy.
The candle turned blue, it's a sell.
Previous Range BoxThis is a simple range box script that I wrote to help beginners start to learn PineScript. It is deliberately very basic:
Tracks the range of a user-defined timeframe
Draws separate boxes for the top and bottom halves of the previous range
Draws a line at the mid point of the previous range
Feel free to reach out to me if you have any questions regarding this script or any of my other resources/guides.
Timing LinesSmall indicator to show third Friday of each month and triple witching events when monthly, weekly and quarterly contracts expire together.
There is also a period of max pain highlighted, when market makers try to balance options with equities before monthly option contracts expiry.
Fakeout marks events when market MAY be very turbulent
Time-Based Market Structure – DEMO (TRAL 00 / 03 / 29)This is a simplified DEMO version of our advanced time-based levels indicator.
It highlights only three key algorithmic time anchors:
00, 03, and 29 — moments when price is likely to react due to internal logic derived from advanced temporal analysis (Hopiplaka-inspired).
These time levels are often associated with liquidity shifts and potential trend reversals, especially when price aligns with these anchors.
Ideal for both intraday and multi-timeframe traders looking to observe how time-based reactions influence price behavior.
Advanced Correlation Monitor📊 Advanced Correlation Monitor - Pine Script v6
🎯 What does this indicator do?
Monitors real-time correlations between 13 different asset pairs and alerts you when historically strong correlations break, indicating potential trading opportunities or changes in market dynamics.
🚀 Key Features
✨ Multi-Market Monitoring
7 Forex Pairs (GBPUSD/DXY, EURUSD/GBPUSD, etc.)
6 Index/Stock Pairs (SPY/S&P500, DAX/NASDAQ, TSLA/NVDA, etc.)
Fully configurable - change any pair from inputs
📈 Dual Correlation Analysis
Long Period (90 bars): Identifies historically strong correlations
Short Period (6 bars): Detects recent breakdowns
Pearson Correlation using Pine Script v6 native functions
🎨 Intuitive Visualization
Real-time table with 6 information columns
Color coding: Green (correlated), Red (broken), Gray (normal)
Visual states: 🟢 OK, 🔴 BROKEN, ⚫ NORMAL
🚨 Smart Alert System
Only alerts previously correlated pairs (>80% historical)
Detects breakdowns when short correlation <80%
Consolidated alert with all affected pairs
🛠️ Flexible Configuration
Adjustable Parameters:
📅 Periods: Long (30-500), Short (2-50)
🎯 Threshold: 50%-99% (default 80%)
🎨 Table: Configurable position and size
📊 Symbols: All pairs are configurable
Default Pairs:
FOREX: INDICES/STOCKS:
- GBPUSD vs DXY • SPY vs S&P500
- EURUSD vs GBPUSD • DAX vs S&P500
- EURUSD vs DXY • DAX vs NASDAQ
- USDCHF vs DXY • TSLA vs NVDA
- GBPUSD vs USDCHF • MSFT vs NVDA
- EURUSD vs USDCHF • AAPL vs NVDA
- EURUSD vs EURCAD
💡 Practical Use Cases
🔄 Pairs Trading
Detects when strong correlations break for:
Statistical arbitrage
Mean reversion trading
Divergence opportunities
🛡️ Risk Management
Identifies when "safe" assets start moving independently:
Portfolio diversification
Smart hedging
Regime change detection
📊 Market Analysis
Understand underlying market structure:
Forex/DXY correlations
Tech sector rotation
Regional market disconnection
🎓 Results Interpretation
Reading Example:
EURUSD vs DXY: -98.57% → -98.27% | 🟢 OK
└─ Perfect negative correlation maintained (EUR rises when DXY falls)
TSLA vs NVDA: 78.12% → 0% | ⚫ NORMAL
└─ Lost tech correlation (divergence opportunity)
Trading Signals:
🟢 → 🔴: Broken correlation = Possible opportunity
Large difference: Indicates correlation tension
Multiple breaks: Market regime change
Smart RVol Enhancer (Auto EMA + Post 9:45AM)Smart RVol Enhancer (Auto EMA + Post 9:45AM Highlight)
This script auto-adjusts the EMA length based on your chart timeframe and enhances Relative Volume (RVol) analysis with dynamic coloring. Designed for intraday traders, it highlights post-9:45AM candles and gives clear visual cues when RVol exceeds 1.2 and 1.5 — helping you spot momentum shifts with ease.
Altcoin Breakout Detector//@version=5
indicator("Altcoin Breakout Detector", overlay=true)
resistanceLevel = input.float(50.0, "Resistance Level", minval=0.0, maxval=100.0)
breakoutZoneTop = input.float(25.0, "Breakout Zone Top", minval=0.0, maxval=100.0)
shortMA = ta.sma(close, 5) // 5-period moving average for trend confirmation
// Define buy signal conditions
lastPrice = close
secondLastPrice = close
lastVolume = volume
avgVolume = ta.sma(volume, 20) // 20-period simple moving average of volume
buySignal = lastPrice > resistanceLevel and secondLastPrice <= resistanceLevel and lastVolume > avgVolume * 1.5 and lastPrice > shortMA
// Plot buy signal
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
// Highlight breakout zone
hline(breakoutZoneTop, "Breakout Zone", color=color.orange, linestyle=hline.style_dashed)
bgcolor(color.new(color.orange, 90)) // Constant shading for the breakout zone (0 to 25.00)
FSTO - Fast Slow Trend OscillatorFSTO Indicator: Fast Slow Trend Oscillator
Introduction
The FSTO (Fast Slow Trend Oscillator) is a powerful momentum indicator designed to identify trend direction, strength, and potential reversal points in financial markets. Based on the relationship between short-term and long-term exponential moving averages (EMAs), FSTO provides clear visual signals and actionable alerts to help traders make informed decisions.
Key Features
1. Dual-Line Visualization
FSTO Line: The difference between short-term and long-term EMAs
Signal Line: Smoothed version of the FSTO line for confirmation
2. Comprehensive Trend Analysis
Zero Line: Clearly marks the boundary between bullish and bearish territory
Color Zones:
Green area: Positive momentum (bullish)
Red area: Negative momentum (bearish)
3. Intelligent Alert System
Zero Line Cross Alerts: Signals when trend direction changes
Signal Line Cross Alerts: Identifies entry and exit points
Visual Markers: Triangle indicators highlight important cross events
4. Information Panel
Real-time display of:
Current FSTO value
Trend direction (Bullish/Bearish)
Momentum strength (Strengthening/Weakening)
How It Works
FSTO calculates the difference between two EMAs:
复制
FSTO Line = EMA(close, shortPeriod) - EMA(close, longPeriod)
Signal Line = EMA(FSTO, signalPeriod)
The indicator then:
Identifies when FSTO crosses above/below zero (trend change)
Detects when FSTO crosses above/below its signal line (entry/exit signals)
Visualizes momentum strength through color zones
Provides real-time alerts for key events
Recommended Settings
Market Short EMA Long EMA Signal Line
Stocks 12 26 9
Cryptocurrency 8 21 5
Forex 10 30 7
Commodities 14 28 8
Trading Signals
Bullish Trend: FSTO > 0
Bearish Trend: FSTO < 0
Buy Signal: FSTO crosses above signal line
Sell Signal: FSTO crosses below signal line
Strong Buy: Bullish cross below zero line
Strong Sell: Bearish cross above zero line
How to Use
Add the indicator to your TradingView chart
Configure EMA periods based on your trading style
Set up alerts for key events:
Zero line crosses (trend changes)
Signal line crosses (entry/exit points)
Combine with other indicators for confirmation
Use information panel for quick market assessment
Benefits
Clear visualization of trend direction
Early detection of momentum shifts
Customizable parameters for different markets
Actionable alerts for timely trading decisions
Comprehensive information panel for quick analysis
The FSTO indicator is an essential tool for traders seeking to identify trend direction, momentum strength, and potential reversal points across all timeframes and market conditions.
Horizontal Grid from Base PriceSupport & Resistance Indicator function
This inductor is designed to analyze the "resistance line" according to the principle of mother fish technique, with the main purpose of:
• Measure the price swing cycle (Price Swing Cycle)
• analyze the standings of a candle to catch the tempo of the trade
• Used as a decision sponsor in conjunction with Price Action and key zones.
⸻
🛠️ Main features
1. Create Automatic Resistance Boundary
• Based on the open price level of the Day (Initial Session Open) bar.
• It's the main reference point for building a price framework.
2. Set the distance around the resistance line.
• like 100 dots/200 dots/custom
• Provides systematic price tracking (Cycle).
3. Number of lines can be set.
• For example, show 3 lines or more of the top-bottom lines as needed.
4. Customize the color and style of the line.
• The line color can be changed, the line will be in dotted line format according to the user's style.
• Day/night support (Dark/Light Theme)
5. Support for use in conjunction with mother fish techniques.
• Use the line as a base to observe whether the "candle stand above or below the line".
• It is used to help see the behavior of "standing", "loosing", or "flow" of prices on the defensive/resistance line.
6. The default is available immediately.
• The default is based on the current Day bar opening price.
• Round distance, e.g. 200 points, top and bottom, with 3 levels of performance
Session-Locked HOD Tracker with Risk ZoneThis guides an entry on the short side by showing you an adjustable distance below the HoD, as well as an adjustable distance above to use as a stop.
Strat 3-1 Setup🔶 Detects the 3-1 Setup:
It looks for an outside bar (3) followed directly by an inside bar (1).
This two-bar combo (3-1) signals potential consolidation after volatility, often leading to strong directional breakouts.
🔶 Highlights 3-1 Setups Visually:
Background color changes (light orange) when a 3-1 setup is detected.
Label “3-1” appears above the candle to mark the signal clearly on the chart
ADR %"This is a customizable ADR indicator that displays the ADR% of the script you're currently viewing."
Current and Prior Inside Bar ColoringDescription
This script colors bars that are inside the prior bar's high and low range. Inside is defined as ≤ the high, and ≥ the low of the prior bar. You can choose to color only the current inside bar or all inside bars on the chart.
Utility
This gives a quick visual indication of inside bars across your chart. Inside bars, by definition, indicate consolidation and non-trending price action. By highlighting both current and historical inside bars, you can quickly identify periods of market indecision and potential breakout zones. Seeing the frequency and clustering of inside bars helps assess overall market conditions.
Function
Colors distinguish if the close is above or below the opening price of each inside bar. You can set different colors for current vs prior inside bars to visually separate real-time signals from historical patterns. If you prefer no distinction, simply use the same colors for both. The "Color prior inside bars?" toggle allows you to show only the current inside bar or all inside bars on your chart.
volatility normalized trend signalVolatility normalized Trend Signal on SPX using 1 indicator, the 90ema. You can go back on SP:SPX and look at 100 years of historical data. Use Chatgpt to explain the source code to you. You're welcome.
Stochastic with Z-Score📊 Stochastic with Z-Score
This custom indicator enhances the classic Stochastic Oscillator by applying Z-Score normalization to both %K and %D lines, helping traders identify statistically significant overbought and oversold conditions based on historical behavior.
🔍 Key Features:
Z-Score Normalization of %K and %D:
Detects deviations from the mean using standard deviation, offering a more dynamic and statistically grounded way to interpret momentum.
Signal Confirmation Filters:
✅ Trend Filter using 200 EMA: Only trade in the direction of the prevailing trend.
✅ Volume Filter: Confirms signals only when volume exceeds the moving average, reducing noise.
Buy & Sell Signals:
📈 Buy: Triggered when the Z-score of %K crosses above a negative threshold, %D is still below that threshold, and the candle is bullish.
📉 Sell: Triggered when the Z-score of %K crosses below a positive threshold, %D is still above that threshold, and the candle is bearish.
Signals are further filtered by trend and volume if enabled.
Customizable Thresholds & Settings:
Control Z-score length, thresholds, Stochastic lengths, and filter settings.
Visual Enhancements:
Colored histogram based on Z-score levels.
Shaded background in overbought/oversold zones.
Clear “Buy” and “Sell” labels plotted directly on the chart.
Alerts Included:
Set alerts on confirmed buy and sell signals for real-time notifications.
📘 How to Use:
Use this indicator on any timeframe or asset.
Enable or disable trend and volume filters depending on your strategy.
Use signals in confluence with price action or other indicators.
Adjust Z-score thresholds for more or fewer signals based on your risk profile.
⚠️ Note: This is an indicator, not a strategy. Always test signals on historical data and in simulation before live trading.
Midnight 30min High/LowMidnight 30min High/Low — Overnight Liquidity Range Tracker
Capture the Overnight Session: A Strategic Level Identification Tool from Professional Trading Methodology
This indicator captures the high and low prices during the critical 30-minute midnight session (12:00-12:30 AM EST) and projects these levels forward as key support and resistance zones. These overnight ranges often contain significant liquidity and serve as crucial reference points for intraday price action, representing areas where institutional activity may have established important levels.
🔍 What This Script Does:
Identifies Critical Overnight Session Levels
- Automatically detects the 12:00-12:30 AM EST session window
- Captures the highest and lowest prices during this 30-minute period
- Projects these levels forward for multiple trading days
Creates Dynamic Support/Resistance Zones
- Extends midnight high/low levels as horizontal lines with customizable projection periods
- Fills the area between high and low to create a visual trading range
- Updates automatically each trading day with new overnight levels
Provides Clear Visual Reference Points
- Optional session start markers (●) highlight when the midnight session begins
- Color-coded lines distinguish between high and low levels
- Transparent fill area creates an easy-to-identify trading zone
Real-Time Level Tracking
- Updates levels in real-time during the active midnight session
- Maintains historical levels for reference and backtesting
- Compatible with data window for precise level values
⚙️ Customization Options:
Extend Days (1-30):** Control how many days forward the levels are projected (default: 5 days)
High Line Color:** Customize the midnight high line color (default: blue)
Low Line Color:** Customize the midnight low line color (default: orange)
Fill Color:** Adjust the transparency and color of the range area (default: light aqua, 80% transparency)
Show Session Markers:** Toggle yellow session start indicators on/off (default: enabled)
💡 How to Use:
Deploy on lower timeframes (1m-15m) for precise level identification and reaction monitoring**
Watch for key price interactions:
- Rejection at midnight high levels (potential resistance)
- Bounce from midnight low levels (potential support)
- Range-bound trading between the high and low levels
Combine with liquidity concepts:
- Monitor for stop hunts above/below these levels
- Look for false breakouts that snap back into the range
- Use as confluence with other ICT concepts like FVGs and Order Blocks
Strategic Applications:
- Range trading between midnight levels
- Breakout confirmation when price closes decisively outside the range
- Support/resistance validation for entry and exit planning
🔗 Combine With These Tools for Complete Market Structure Analysis:
✅ First FVG — Opening Range Fair Value Gap Detector.
✅ ICT Turtle Soup (Liquidity Reversal)— Spot stop hunts and false breakout scenarios
✅ ICT Macro Zones (Grey Box Version)- It tracks real-time highs and lows for each Silver Bullet session
✅ ICT SMC Liquidity Grabs and OBs- Liquidity Grabs, Order Block Zones, and Fibonacci OTE Levels, allowing traders to identify institutional entry models with clean, rule-based visual signals.
Together, these tools create a comprehensive Smart Money Concepts (SMC) framework — helping traders identify, anticipate, and capitalize on institutional-level price movements with precision and confidence during critical overnight sessions.
Multi EMAs With LabelThis script plots multiple Exponential Moving Averages (EMAs) on the chart and optionally displays dynamic price labels for each EMA. It is designed to help traders quickly identify key trend levels and alignments.
⚙️ Features:
Supports plotting of up to 6 EMAs:
EMA 5
EMA 13
EMA 26
EMA 50
EMA 100
EMA 200
->Individual on/off toggles for each EMA
->Customizable lengths for each EMA
->Global "Show Labels" toggle to display or hide all EMA value labels
->Real-time label updates with current EMA values
->Color-coded lines and labels for quick visual reference
Session Breakout Strategy v4 [Fixed Risk + Pip Logic]This is a break out strategy that is optimised for EURUSD.
Days Since –1% Down Close“Days since last down 1% close” indicator
This is a useful tool for investors and analysts to gauge market momentum, volatility, and potential risk:
1. Measuring Market Stability and Momentum
2. Identifying Potential Overbought Conditions
3. Volatility Assessment
4. Contextualizing Seasonal or External Factors
5. Risk Management and Timing
Actionable Insight: Combine this with real-time data (e.g., VIX levels or economic releases like tomorrow’s potential market-moving news)
In summary, the "Days since last down 1% close" indicator helps investors monitor market health, spot overextension, and manage risk by providing a historical benchmark for volatility.
Simple MA CrossoverThis is a simple Moving Average Crossover script that I wrote to help beginners start to learn PineScript. It is deliberately very basic:
Tracks a fast moving average
Tracks a slow moving average
Detects crosses of these two moving averages
Feel free to reach out to me if you have any questions regarding this script or any of my other resources/guides.