JonnyFutures ScalpomaticThis indicator combines Fair Value Gap (FVG) detection with Exponential Moving Average (EMA) signals to help identify potential trade entry points based on market inefficiencies and trend direction.
⚙️ Main Components
1. EMAs
Two EMAs are calculated:
EMA 20 (short-term trend)
EMA 50 (medium-term trend)
ema20 = ta.ema(close, len20)
ema50 = ta.ema(close, len50)
These are plotted on the chart:
Orange line = EMA 20
Purple line = EMA 50
2. Fair Value Gaps (FVGs)
The script looks for gaps in price structure (imbalances):
Bullish FVG → when the high from two bars ago is less than the current bar’s low
→ Indicates a potential bullish inefficiency.
Bearish FVG → when the low from two bars ago is greater than the current bar’s high
→ Indicates a potential bearish inefficiency.
bullishFVG = high < low
bearishFVG = low > high
When found, the background color changes:
Light Green for bullish FVGs
Light Red for bearish FVGs
bgcolor(bullishFVG ? color.new(color.green,90) : na)
bgcolor(bearishFVG ? color.new(color.red,90) : na)
3. EMA Crossover Signals
The script plots visual buy/sell markers when the closing price crosses above or below each EMA:
For EMA 20:
✅ Long signal (triangle up, lime): close crosses above EMA 20
❌ Short signal (triangle down, red): close crosses below EMA 20
For EMA 50:
✅ Long signal (triangle up, aqua): close crosses above EMA 50
❌ Short signal (triangle down, maroon): close crosses below EMA 50
These signals help identify potential trend-following entries or exits.
📈 How to Use It
Trend Confirmation:
Watch the EMAs — if EMA20 > EMA50, the trend is generally bullish; if EMA20 < EMA50, it’s bearish.
FVG Zones:
When a bullish or bearish FVG appears, it highlights potential retracement zones where price may rebalance before continuing the trend.
Entry Timing:
Combine FVGs with EMA cross signals for confluence:
Long bias → bullish FVG + price crossing above EMA 20 or 50.
Short bias → bearish FVG + price crossing below EMA 20 or 50.
🎯 Summary
This indicator:
Detects Fair Value Gaps and shades them visually.
Plots EMA 20 and EMA 50 to define short- and mid-term trends.
Marks entry/exit signals when price crosses these EMAs.
Is designed for trend-following trades with FVG confirmation
Candlestick analysis
Candle Color & Time Filter + Flexible Price Triggerthis indicator gives triggers when candles colour change at certain time and certain levels
IKZ ULTIMATE (v6.5)Of course! Here is the English translation of the description for the **IKZ ULTIMATE** indicator, formatted in a file-ready style for easy copying and use.
***
### **Description of the IKZ ULTIMATE (Modified) Indicator**
**Indicator Name:** IKZ ULTIMATE (Modified Version)
**Core Purpose:** An All-in-One trading system designed to simplify technical analysis by integrating multiple tools into a single, unified interface.
**Trading Philosophy:** To follow the trend and confirm momentum for high-probability trading signals.
---
### **Detailed Overview: What is this Indicator?**
Think of **IKZ ULTIMATE** as a **"central command center"** or a **"personal trading assistant"** on your chart. Instead of cluttering your screen with 5 different indicators that might conflict, this indicator **combines the intelligence** of several strategies (trend, momentum, support, and resistance) and presents the results in an easy-to-understand visual format.
### **Core Components and Color Code (The Indicator's Language):**
1. **The Trend System (Smart Moving Averages):**
* **Its Job:** To answer the question, "What is the current trend?"
* **The Language:**
* **Green lines stacked upward:** Strong **Uptrend**. (A signal to be optimistic and look for buy opportunities)
* **Red lines stacked downward:** Strong **Downtrend**. (A signal to be cautious and look for sell opportunities)
* **Crossed and tangled lines:** **Ranging** or choppy market. (A signal to wait and avoid trading)
2. **The Momentum Gauge (Shaded Areas):**
* **Its Job:** To answer the question, "How strong are the buyers or sellers in the market right now?"
* **The Language:**
* **Green Shaded Area:** **Bullish** momentum. Buyers are strong and in control.
* **Red Shaded Area:** **Bearish** momentum. Sellers are strong and in control.
* **Color Intensity & Area Width:** Reflects the **momentum strength**. The darker and wider the area, the stronger the driving force behind the price move.
3. **Direct Entry Signals (Arrows):**
* **Their Job:** To answer the question, "When do I enter a trade precisely?"
* **The Language:**
* **Green Upward Arrow ↑:** **Buy** signal. It appears when an **Uptrend (Green lines) aligns with the start of Bullish Momentum (Green Area)**.
* **Red Downward Arrow ↓:** **Sell** signal. It appears when a **Downtrend (Red lines) aligns with the start of Bearish Momentum (Red Area)**.
4. **The Roadmap (Automatic Support & Resistance Levels):**
* **Its Job:** To answer the question, "Where can we expect the price to reverse or struggle?"
* **The Language:**
* **Red Horizontal Line:** A **Resistance** level. A potential selling zone.
* **Green Horizontal Line:** A **Support** level. A potential buying zone.
### **What Makes IKZ ULTIMATE Unique?**
* **Comprehensiveness:** It often requires no additional indicators.
* **Visual Clarity:** It uses colors and areas to make market analysis intuitive.
* **Proactive:** It doesn't just describe what happened; it attempts to provide signals for the upcoming move.
* **Versatile:** Suitable for day traders and swing traders across different timeframes.
### **Strengths:**
* Eliminates confusion and analysis paralysis.
* Promotes discipline and trend-following.
* Automatically identifies entry/exit points and key levels.
### **Weaknesses / Challenges (To Consider):**
* Like any indicator, it is **not infallible**. It may give false signals in ranging or volatile markets.
* Can sometimes cause **visual clutter** when many signals appear in a small area.
* Requires the user to **understand its philosophy**, not just blindly follow the arrows.
### **Final Summary:**
**IKZ ULTIMATE** is more than just an indicator; it is a **simplified trading system**. Its goal is to transform complex price data into a clear visual language, allowing you to make informed trading decisions based on the convergence of three key pillars: **Trend, Momentum, and Key Levels.**
***
*(Disclaimer: This indicator is a tool for analysis and does not constitute financial advice. Always practice risk management and backtest any strategy before using real capital.)*
爆発的シード増殖トレード インジケーターThis indicator automates a powerful yet simple trend-following strategy inspired by a popular trading method that demonstrated explosive account growth. The core philosophy is to trade pullbacks in the direction of the dominant, long-term trend, enabling traders to enter the market with a higher probability of success.
This script is designed for mechanical and emotionless trading. By combining a long-term trend filter with a short-term entry trigger, it provides clear, actionable signals. The built-in alert conditions allow you to step away from the charts and wait for high-quality setups to come to you, preventing over-trading and emotional decision-making.
SMA 10/20/50 Daily on all timeframeSMA 10/20/50 Daily on all timeframe. To have a clean bias on all timeframe
Avalements Pertinents - M5, M10, M15An indicator that shows us bullish or bearish engulfing patterns, which may be relevant; use other confirmation (false signals happen, like with any indicator).
Greazy Bear 5-Min Scalper [by: New Market Wizards] - FVG + BB// ── GB 5-MIN SCALP LOGIC ───────────────────────
// 1. Price touches Lower BB → potential long
// 2. Next bar closes ABOVE Lower BB → BUY
// 3. Price touches Upper BB → potential short
// 4. Next bar closes BELOW Upper BB → SELL
// 5. Only trade in direction of the prevailing 20-period trend (close > basis = uptrend)
Candle Color-Time-Series-Price 2.0this indicator gives triggers aout candles colour change at certain time and certain levels
M&B — Fixed Buy/Sell (v6) - confirmed barsThe Mother & Baby (M&B) Fixed Buy/Sell Indicator marks BUY and SELL signals based on two-candle inside-bar patterns. Signals are fixed and don’t move with new bars. Includes optional ATR filter for stronger setups.
Note:
For analysis and educational use only — not financial advice.
Descending Scallop TargetThis is an indicator that attempts to identify the target point of descending scallops according to Thomas Bulkowski's "The Pattern Site".
Work in progress...
RSI Cross Logic (Buy/Sell Dots)Certainly — here’s a **professionThis indicator identifies high-probability trend reversals by analyzing the psychological rhythm of RSI behavior.
It detects the initial momentum shift when RSI crosses its smoothed average, waits for a natural hesitation phase (a dip or bounce), and confirms reversal only when traders re-commit in the dominant direction.
Green and blue dots mark early bullish formation; aqua triangles confirm Buy signals.
Red and orange dots mark early bearish formation; yellow triangles confirm Sell signals.
A refined blend of momentum confirmation and trader psychology designed to filter noise and pinpoint genuine reversals.
5min ORB SICKO ModeThe orb strategy is automated. 5m orb concept is coded into an indicator strategy with multiple settings.
MAOs🌟 **MAOs By A8/4 — The Ultimate Indicator for XAUUSD Trading** 🌟
An intelligent **automated system** designed exclusively for **gold trading**, equipped with everything you need in one tool 🔥
💡 **Key Features of MAOs By A8/4**
✅ **Auto Entry Signals**
Automatically detects trade opportunities using a **refined MACD Histogram formula** for enhanced accuracy.
Displays **LONG/SHORT arrows only on the first bar** to keep your chart clean and readable.
✅ **Auto Take Profit & Stop Loss System (Auto TP/SL)**
Once a signal appears, the system automatically sets:
* **TP1 = +15 USD**
* **TP2 = +25 USD**
* **SL = -10 USD**
These levels are displayed as **dashed lines** on the chart — clear and updated in real-time.
✅ **Smart DCA System (3 Orders)**
Works for both LONG and SHORT positions:
* **Order 1:** Entry upon signal confirmation (after candle close)
* **Order 2:** Entry at 5 USD below/above Order 1
* **Order 3:** Entry at another 5 USD below/above Order 2
The system automatically **calculates the average entry price** and **adjusts the SL** to -10 USD from the average cost.
This helps **spread risk** and **increase recovery potential** when prices rebound 💰
✅ **Specially Designed for XAUUSD Trading**
Compatible with both **Spot Gold** and **TFEX Gold Futures**.
Perfect for traders who value **clear, structured entry and exit strategies**.
Kronos Scalper (RAVINDRA KHADSE) 11.11.2025Nice — below is a ready-to-copy TradingView Pine Script (v5) strategy named “Kronos Scalper”.
It’s a self-contained scalping strategy (non-repainting) with configurable EMAs trend filter, RSI entry filter, ATR-based stop loss / take profit, optional trailing stop, plots and entry/exit labels. Drop it into TradingView’s Pine editor and Add to Chart → Strategy Tester.
US Leverage Overlay — Margin Debt & Total Credit (YoY / Z-score)What this does
An overlay indicator that brings U.S. leverage proxies from FRED onto your main price chart (left axis). Choose between a proxy for investor margin debt or total credit market debt and view them as YoY %, Z-score of YoY, or an Indexed Level so they’re comparable with price without wrecking the scale.
Data sources (FRED symbols)
--- Margin (investor leverage proxy): FRED:BOGZ1FL663067003Q
Brokers & Dealers; Receivables Due from Customers ≈ margin loans (quarterly).
--- TotalCredit (economy-wide leverage): FRED:TCMDO
All sectors; Debt Securities & Loans; Liability (quarterly).
Note: These are quarterly series. The indicator samples monthly and holds values between official prints, so you’ll see step-like updates when new data drops.
Views (pick one in settings)
--- YoY % — 12-month rate of change. Above 0% = leverage expanding; below 0% = contracting.
--- Z-score (YoY) — Standardizes YoY vs. its recent history to flag unusual moves (regime shifts).
--- Indexed Level — 100 × (level / moving average), a compact “above/below trend” view.
How to read quickly
--- Rising YoY % > 0 → leverage expansion (often supportive for risk).
--- Falling YoY % < 0 → deleveraging headwind.
--- Z-score spikes (±2) → unusually fast changes; watch for volatility or policy inflections.
--- Indexed Level crossing down through 100 → slipping below trend.
Inputs
--- Data source: Margin or TotalCredit
--- YoY/Z-score lookbacks and Index baseline length
--- Overlay: overlay=true, scale=scale.left (uses its own left axis by default)
Tips
--- If it spawns in a sub-pane, right-click the label → Move to → Main chart.
--- For context, consider adding related series on separate panes:
FRED:TOTALSL (Consumer Credit), FRED:REVOLSL (Credit Cards),
FRED:BUSLOANS (C&I Loans), FRED:TDSP (Debt Service Ratio).
--- Occasionally FRED returns “Failed to fetch”; re-add or reload fixes it.
Why it’s useful
Equity drawdowns often line up with turns in leverage (households, corporates, or brokers). This overlay gives you a clean, normalized read so you can spot expansion vs. contraction alongside price action.
Compatibility
--- Pine Script® v6
--- Works on any chart timeframe (data internally sampled monthly)
Educational use only — not financial advice.
Morning Star & Rising Star Detector - Neon CandlesMorning Star & Rising Star to determine several levels and forecast what might happen next with the price.
Hourly High Low Short LinesDraws short horizontal lines at the previous hour’s high and low, aligned perfectly with the candle’s top and bottom.
It’s concise, clear, and fits well for the public script description box.
ATR Channel (Bottom & Top)The ATR Channel (Bottom & Top) indicator dynamically visualizes market volatility zones based on the Average True Range (ATR). It automatically builds adaptive upper and lower boundaries around the current price, helping traders identify potential market extremes, volatility-driven reversals, and dynamic support/resistance levels.
This version is specifically optimized for Bitcoin (BTCUSDT) but works with any asset or timeframe.
⚙️ How It Works
The indicator calculates ATR over a user-defined period (default 200) and applies separate multipliers for the top and bottom bands (default ×1).
The Top Band = Close + (ATR × Multiplier)
The Bottom Band = Close - (ATR × Multiplier)
These two adaptive bands create a volatility envelope, allowing traders to visualize where the price may encounter potential exhaustion or reversal zones.
💡 Signal Logic
LONG Signal (Green Tab):
Triggered when the low of the candle touches or dips below the ATR bottom line — suggesting a possible oversold or volatility-based bottoming area.
The label displays the exact ATR line value (not the close), formatted for better readability (e.g. “LONG 103 885”).
SELL Signal (Red Tab):
Triggered when the high of the candle touches or exceeds the ATR top line — signaling possible overbought conditions or an exhaustion zone.
Signal Filtering:
The script intelligently avoids duplicate signals — e.g., multiple consecutive LONGs or SELLs will not appear until the opposite signal is triggered.
This ensures cleaner visualization and reduces signal noise during consolidation periods.
🎯 Features
✅ Adaptive ATR-based volatility channel
✅ Automatic LONG/SELL signal labeling with real ATR-touch prices
✅ Customizable parameters:
✅ Intelligent filtering (one signal per phase)
✅ Works on any market and timeframe (crypto, forex, indices, stocks)
🧭 Trading Applications
Identify volatility extremes (ATR-based overbought/oversold zones)
Detect reversal points or exhaustion moves after extended trends
Use with trend filters (e.g. EMA200) to confirm trend continuation vs mean reversion setups
Combine with oscillators (RSI, Stoch) for confluence signals
📊 Summary
The ATR Channel (Bottom & Top) provides a clear, professional-grade visualization of volatility dynamics and price extremes.
It is especially useful for traders using mean-reversion, volatility breakout, or swing-trading strategies — helping them identify statistically significant reaction zones and improving trade timing precision.
Candle Color & Time Filter + Flexible Price Triggeraggiornamento con offset negativo sulla open close high low
Candle Color & Time Filter + Flexible Price Triggeran indicator inspsired by a friend trader, it will tell you when a candle changes color, during the time window you like, and to the threshold you prefer respect to the previous candle
XenoSmooth Predictive Candles - Advanced Heikin Ashi CandlesXenoSmooth Predictive Candles
Summary in one paragraph
A synthetic candle engine for crypto, FX, equities, and futures on intraday to swing timeframes. It reduces noise and flip delay so structure is easier to read. The core novelty is a predictive open with inertia plus slope lead fused with a zero lag body filter and an overshoot based wick model normalized by the real range and capped by ATR. Add it to a clean chart, hide regular candles if desired, and tune lengths. Shapes can move while the bar is open and settle on close. For conservative workflows read on bar close.
Scope and intent
• Markets. Major FX pairs, index futures, large cap equities, liquid crypto
• Timeframes. One minute to daily
• Purpose. Faster and smoother visual structure than Heikin Ashi while keeping causality and realistic wicks
Originality and usefulness
• Unique concept. Predictive open with inertia and slope lead plus selectable zero lag body filter and ATR capped wick overshoot in percent of real range
• Failure mode addressed. Late flips in chop and unreal long wicks from raw extremes
• Testability. Every control is an input. Users can toggle body method, lengths, clipping, and percent modeling
• Portable yardstick. ATR based wick cap and percent of bar range scale across symbols
Method overview in plain language
Build a robust base price from O, H, L, and extra weight on Close. Smooth it with a chosen filter to produce the synthetic close. Drive a predictive open that follows the synthetic close with tunable inertia and a small lead from the last bar slope. Model wicks as the portion of the real extremes that extends beyond the synthetic body, smooth that overshoot, normalize by the bar range if selected, then cap by ATR to avoid tail spikes. Clamp synthetic values to the real high and low if enabled.
Base measures
• Range basis. True Range for the ATR cap and High minus Low for percent normalization
• Return basis. Not used
Components
• Body Base Blend. Weighted O H L with a close bias to stabilize the base
• Zero Lag Body Filter. ZLEMA or Super Smoother or WMA to set the synthetic close
• Predictive Open. Inertial follow of the synthetic close plus a slope lead term
• Wick Overshoot Model. Smoothed extension beyond the body, optional percent of real range, ATR cap
• Clamp Option. Keeps synthetic open and close inside the real bar range
Fusion rule
• Synthetic close equals filtered base
• Synthetic open equals previous open plus inertia times distance to synthetic close plus slope lead
• Wicks equal smoothed overshoot above and below the body, optionally percent of range then converted back to price and capped by ATR
Inputs with guidance
Setup
• Signal timeframe. Uses the chart timeframe
• Invert direction. Not applicable
• Session windows. Not applicable
Logic
• Body length. Core smoothing length for the synthetic close. Typical 6 to 14. Higher gives smoother and slower. Lower gives faster flips
• Body method. ZLEMA or Super Smoother or WMA. ZLEMA is fastest. Super Smoother is calmest
• Close weight in base. 0 to 1. Higher gives stronger emphasis on close and less noise
• Open inertia. 0 to 1. Higher makes the open follow the close more tightly
• Lead gain. 0 to 1. Higher adds more phase lead. Keep modest to avoid overshoot
• Clamp body to real range. On keeps synthetic body inside high and low
• Wick smooth length. Typical 4 to 10. Higher reduces jitter
• Overshoot as percent. On stabilizes wicks across regimes
• ATR length. Typical 10 to 20 for the cap
• Max wick equals ATR times. 0 disables. 1.0 to 2.0 contains extreme tails
Filters
• Efficiency or trend filter. Not used
• Micro versus macro range relation. Not used
• Location filter. Not used
Realism and responsible publication
• No performance claims
• Intrabar motion reminder. Shapes can move while a bar forms and settle on close
• Strategies must use standard candles for signals and orders
Honest limitations and failure modes
• High impact releases and thin liquidity can distort wicks and produce gaps that any smoother cannot predict
• Very quiet regimes can reduce contrast. Consider longer body length
• Session time on the chart controls the definition of each bar
Mother & Baby — Nifty 5m (Bull/Bear)The Mother & Baby — Nifty 5m (Bull/Bear) indicator automatically detects two-bar inside-bar patterns, where the second (child) candle is completely within the previous (mother) candle. It highlights potential bullish or bearish setups using boxes, labels, and alerts. Includes optional ATR filtering, high/low guide lines, and customizable visuals for clear pattern recognition. Designed for educational and analytical use only — not financial advice.






















