Ichimoku Trend CycleIchimoku Trend Cycle
A precision dual-trend system combining Ichimoku-based ATR Supertrends — engineered for clarity, reliability, and smart trend detection.
🔷 What is Ichimoku Trend Cycle?
The Ichimoku Trend Cycle harnesses the power of traditional Ichimoku analysis with modern ATR-based supertrend technology:
Alpha Trend: Primary trend detection using Ichimoku conversion & baseline logic
Beta Trend: Secondary confirmation trend with independent ATR calculations
Dual Confirmation Engine : Both trends must align for signal generation
This powerful combination delivers clean, non-repainting Buy/Sell signals while filtering out market noise and false breakouts.
🔍 How It Works
Blue Alpha + Red Beta Trends Align Bullish → BUY Signal
Both Trends Turn Bearish → SELL Signal
You get ONE signal per trend change — no spam, no noise, just crystal-clear direction changes.
⚙️ Core Features
✅ Ichimoku-Enhanced Supertrends
Traditional Ichimoku conversion/baseline logic powering modern ATR bands.
✅ Dual-Trend Confirmation
Alpha and Beta trends must agree — eliminates false signals.
✅ One Alert Per Trend Shift
Clean entries, zero noise, no repeated signals.
✅ Visual Excellence
Color-coded trend lines with high-contrast BUY/SELL labels.
✅ Fully Customizable
Independent settings for both trend systems plus smoothing options.
🎯 Perfect For
Swing Traders wanting confirmed trend changes
Position Traders seeking major trend shifts
Anyone who values clean charts with sharp decision points
🛠 Settings Breakdown
Alpha Trend Settings: Primary trend with conversion/baseline periods + ATR multiplier
Beta Trend Settings: Secondary confirmation trend with independent parameters
Smoothing MA Settings: Optional MA smoothing with Bollinger Bands support
Alert Settings: Customize signal confirmation periods
Candle Color Settings: Fully customizable trend and candle color schemes
✅ Built-in Smart Alerts — Never miss a trend change again
⚡ Zero-lag Performance — Works flawlessly across all timeframes
📈 Strategy-Ready Code — Professional-grade, non-repainting signals
Transform your trading with the precision of Ichimoku and the reliability of dual-trend confirmation.
Dönemler
WRX.v2 | Option Resonance + Charm TrackerINSPIRED by RIPSTER
Charm tracker
Options use only
Charm vomma
CM SlingShot System (Customizable)//@version=5
indicator("CM SlingShot System (Customizable)", overlay=true, shorttitle="CM_SSS")
// ==== 📌 INPUT SETTINGS ====
group1 = "Entry Settings"
sae = input.bool(true, title="📍 Show Aggressive Entry (pullback)?", group=group1)
sce = input.bool(true, title="📍 Show Conservative Entry (confirmation)?", group=group1)
group2 = "Visual Settings"
st = input.bool(true, title="🔼 Show Trend Arrows (top/bottom)?", group=group2)
sl = input.bool(false, title="🅱🆂 Show 'B' & 'S' Letters Instead of Arrows", group=group2)
pa = input.bool(true, title="🡹🡻 Show Entry Arrows", group=group2)
group3 = "MA Settings"
fastLength = input.int(38, title="Fast EMA Period", group=group3)
slowLength = input.int(62, title="Slow EMA Period", group=group3)
timeframe = input.timeframe("D", title="Timeframe for EMAs", group=group3)
// ==== 📈 EMA CALCULATIONS ====
emaFast = request.security(syminfo.tickerid, timeframe, ta.ema(close, fastLength))
emaSlow = request.security(syminfo.tickerid, timeframe, ta.ema(close, slowLength))
col = emaFast > emaSlow ? color.lime : emaFast < emaSlow ? color.red : color.gray
// ==== ✅ SIGNAL CONDITIONS ====
pullbackUp = emaFast > emaSlow and close < emaFast
pullbackDn = emaFast < emaSlow and close > emaFast
entryUp = emaFast > emaSlow and close < emaFast and close > emaFast
entryDn = emaFast < emaSlow and close > emaFast and close < emaFast
// ==== 🌈 CHART PLOTS ====
plot(emaFast, title="Fast EMA", color=color.new(col, 0), linewidth=2)
plot(emaSlow, title="Slow EMA", color=color.new(col, 0), linewidth=4)
fill(plot(emaSlow, title="", color=color.new(col, 0)), plot(emaFast, title="", color=color.new(col, 0)), color=color.silver, transp=70)
// Highlight bars
barcolor(sae and (pullbackUp or pullbackDn) ? color.yellow : na)
barcolor(sce and (entryUp or entryDn) ? color.aqua : na)
// Trend arrows
upTrend = emaFast >= emaSlow
downTrend = emaFast < emaSlow
plotshape(st and upTrend, title="UpTrend", style=shape.triangleup, location=location.belowbar, color=color.green)
plotshape(st and downTrend, title="DownTrend", style=shape.triangledown, location=location.abovebar, color=color.red)
// Entry indicators
plotarrow(pa and entryUp ? 1 : na, colorup=color.green, offset=-1)
plotarrow(pa and entryDn ? -1 : na, colordown=color.red, offset=-1)
plotchar(sl and entryUp ? low - ta.tr : na, char="B", location=location.absolute, color=color.green)
plotchar(sl and entryDn ? high + ta.tr : na, char="S", location=location.absolute, color=color.red)
INDI HẰNG //@version=5
indicator("CM SlingShot System (Customizable)", overlay=true, shorttitle="CM_SSS")
// ==== 📌 INPUT SETTINGS ====
group1 = "Entry Settings"
sae = input.bool(true, title="📍 Show Aggressive Entry (pullback)?", group=group1)
sce = input.bool(true, title="📍 Show Conservative Entry (confirmation)?", group=group1)
group2 = "Visual Settings"
st = input.bool(true, title="🔼 Show Trend Arrows (top/bottom)?", group=group2)
sl = input.bool(false, title="🅱🆂 Show 'B' & 'S' Letters Instead of Arrows", group=group2)
pa = input.bool(true, title="🡹🡻 Show Entry Arrows", group=group2)
group3 = "MA Settings"
fastLength = input.int(38, title="Fast EMA Period", group=group3)
slowLength = input.int(62, title="Slow EMA Period", group=group3)
timeframe = input.timeframe("D", title="Timeframe for EMAs", group=group3)
// ==== 📈 EMA CALCULATIONS ====
emaFast = request.security(syminfo.tickerid, timeframe, ta.ema(close, fastLength))
emaSlow = request.security(syminfo.tickerid, timeframe, ta.ema(close, slowLength))
col = emaFast > emaSlow ? color.lime : emaFast < emaSlow ? color.red : color.gray
// ==== ✅ SIGNAL CONDITIONS ====
pullbackUp = emaFast > emaSlow and close < emaFast
pullbackDn = emaFast < emaSlow and close > emaFast
entryUp = emaFast > emaSlow and close < emaFast and close > emaFast
entryDn = emaFast < emaSlow and close > emaFast and close < emaFast
// ==== 🌈 CHART PLOTS ====
plot(emaFast, title="Fast EMA", color=color.new(col, 0), linewidth=2)
plot(emaSlow, title="Slow EMA", color=color.new(col, 0), linewidth=4)
fill(plot(emaSlow, title="", color=color.new(col, 0)), plot(emaFast, title="", color=color.new(col, 0)), color=color.silver, transp=70)
// Highlight bars
barcolor(sae and (pullbackUp or pullbackDn) ? color.yellow : na)
barcolor(sce and (entryUp or entryDn) ? color.aqua : na)
// Trend arrows
upTrend = emaFast >= emaSlow
downTrend = emaFast < emaSlow
plotshape(st and upTrend, title="UpTrend", style=shape.triangleup, location=location.belowbar, color=color.green)
plotshape(st and downTrend, title="DownTrend", style=shape.triangledown, location=location.abovebar, color=color.red)
// Entry indicators
plotarrow(pa and entryUp ? 1 : na, colorup=color.green, offset=-1)
plotarrow(pa and entryDn ? -1 : na, colordown=color.red, offset=-1)
plotchar(sl and entryUp ? low - ta.tr : na, char="B", location=location.absolute, color=color.green)
plotchar(sl and entryDn ? high + ta.tr : na, char="S", location=location.absolute, color=color.red)
Inside Bar Breakout Alert - RajThis indicator is based on the inside bar strategy it help you to cut down your screen time by giving you constant alerts when a inside bar forms while also gives you alert on bullish and bearish break out of the mother candle.
RSI Custom ADX VWAP Swing Signals Anmol Singh point.Anmol Singh
This indicator combines RSI, a custom ADX, VWAP, and Swing High/Low Break signals to identify potential buy and sell opportunities. It provides visual signals and alerts, helping traders spot trends and reversals more effectively on NASDAQ 1-minute charts.
Daily High/Low Close Breakout - GOLD### **Daily High/Low Close Breakout Indicator**
This indicator is a powerful tool for identifying potential breakout opportunities based on the previous day's price action. It's built on a unique time-based logic that defines key support and resistance levels for the trading day.
---
### **How the Indicator Works**
The indicator operates in two main phases:
1. **Calculation Period (00:00 to 16:30 Tehran Time):** The indicator first observes the price action from the start of the day until 16:30. During this time, it records the highest and lowest **closing prices** of all candles. The chart background is shaded gray to visually mark this period.
2. **Trading Period (16:30 to 16:30 the next day):** At 16:30, the highest and lowest close levels are finalized and drawn as horizontal lines. These levels then become the primary breakout zones for the next 24 hours. The indicator will generate signals whenever the price crosses these lines.
---
### **Trading Signals**
The indicator uses a simple and effective crossover logic for its signals:
* **BUY Signal:** A signal is generated when a candle's closing price **crosses above** the high close line.
* **SELL Signal:** A signal is generated when a candle's closing price **crosses below** the low close line.
---
### **Important Usage Guidelines**
For optimal performance, please follow these specific recommendations:
* **Timeframe:** This indicator is designed and optimized to be used exclusively on the **15-minute timeframe**. Using it on other timeframes may produce inconsistent or unreliable results.
* **Primary Asset:** The logic for this indicator was developed and backtested primarily for **Gold (XAUUSD)**. Its performance and win rate have been observed to be the most consistent on this asset.
* **Asset Restriction:** It is strongly recommended to **avoid using this indicator on other currency pairs or assets**, as it has not been optimized for their specific market behavior.
---
### **Disclaimer**
*This indicator is provided for informational and educational purposes only. It is not financial advice. Past performance is not a guarantee of future results. All trading decisions should be based on your own research and risk analysis. Always use proper risk management.*
Choch Pattern Levels [BigBeluga] + AlertsChoch Pattern Levels highlights key structural breaks that can mark the start of new trends. By combining precise break detection with volume analytics and automatic cleanup, it provides actionable insights into the true intent behind price moves — giving traders a clean edge in spotting early reversals and key reaction zones. Added support for alarms.
Inside Bar With Alert - RajThis indicator helps you reduce your screen time by giving you consistent alerts on the formation of inside bar candle and it gives you bullish and bearish alerts on breakout of the mother candle. So if you believe in inside strategy this indicator will be helpful for you.
MA Cross 7-21MA Crossover
Definition
This indicator calculates and plots two moving averages, the MA7 and MA21, and highlights candlesticks where they cross. It indicates when a trend is changing, becoming weaker or stronger, in the short term.
Summary
The Moving Average Crossover indicator sounds simple enough. It measures two moving averages and detects when they cross. The two moving averages measured are the MA7 and MA21. A crossover indicates that the MA7 is now above the MA21, and vice versa. This indicator can be used in conjunction with other moving averages or trend-following indicators to better understand momentum.
Winner IMACD 15MWINNER IMACD 15M
This strategy is designed for scalping and momentum trading, using a custom combination of:
ZLEMA (Zero Lag Exponential Moving Average)
SMMA (Smoothed Moving Average)
Dynamic signal line and impulse histogram
Trend filter based on EMA 100
HOW IT WORKS
Buy signals are triggered only when price is above the yellow EMA 100.
Sell signals are triggered only when price is below the yellow EMA 100.
Exits are based on the signal line crossing the MACD in the opposite direction (not just fixed take profits).
A trailing stop captures larger moves and increases the average winning trade.
The system avoids flat momentum near the zero line and only trades when a strong impulse is detected.
SETTINGS ADVICE
You can customize the colors and hide the histogram for a cleaner chart view.
All other parameters are already optimized. For best results, we recommend not changing them.
BEST TIMEFRAME
15-minute charts.
The strategy works especially well on XAUUSD (Gold) and BTCUSD (Bitcoin).
FEEDBACK
If this strategy is useful to you, consider giving it a boost and leave a comment to share how it's working for you.
Your feedback helps improve and refine the logic for future updates.
Market Extension Quantifier SniperIt's a combination of ATR, Moving Average, Bollinger Bands and RSI. And the idea is to find a very extended move which creates a probability that the market is due to a reversion.
Benford's Law Actual [Tagstrading]Benford’s Law Chart — First Digit Analysis of Percentage Price Drops
This script visualizes the distribution of the leading digit in the percentage change of price drops, and compares it to the theoretical distribution expected by Benford’s Law.
It helps traders, analysts, and quants to detect anomalies, unnatural behavior, or price manipulation in any asset or timeframe.
How to Use
Add to any chart or symbol (stocks, crypto, FX, etc.) and select the timeframe you wish to analyze.
Set the “Number of Bars to Analyze” input (default: 500) to control the length of the historical window.
The chart will display, for the latest window:
A blue line: the actual leading-digit distribution for percentage price changes between bars.
A red line: the expected distribution per Benford’s Law.
Labels below and above: digit markers and the expected (theoretical) percentages.
Summary panel on the right: frequency counts and actual vs. theoretical % for each digit.
Interpretation:
If your actual (blue) curve or digit counts are significantly different from the red Benford’s Law curve, it could indicate unnatural price action, fraud, bot activity, or structural anomalies.
Why is this useful for TradingView?
Financial forensics: Benford’s Law is a classic tool for detecting data manipulation and fraud in accounting. On charts, it can reveal if price movements are statistically “natural.”
Transparency and confidence: Helps communities audit markets, brokers, or exchanges for irregularities.
Adaptable: Works on any market, any timeframe.
What makes this script unique?
Focuses on % price changes, not raw prices.
This provides a fair comparison across assets, symbols, and timeframes.
Measures only the direction and magnitude of drops/rises — more suitable for detecting manipulation in active markets.
Clear and customizable visualization:
The Benford line, actual data, and summary are all visible and readable in one glance.
Optimized for speed and clarity (runs efficiently on all major charts).
How is it different from stg44’s Benford’s Law script?
This script analyzes the leading digit of percentage price changes (i.e., how much the price drops or rises in %),
while the original by stg44 analyzes the leading digit of price itself.
Results are less sensitive to price scale and more comparable across volatile and non-volatile assets.
The summary panel clearly shows ( ) for actual and for Benford theoretical values.
Full code is commented and open for the community.
Credits and Inspiration
This script was inspired by “Benford’s Law” by stg44:
Thanks to the TradingView community for sharing powerful visual ideas.
—
By tags trading
SMC TimingThis indicator (“SMC Timing”) visually marks the exact moments when the market typically experiences large liquidity injections—moments that often trigger strong directional moves. By plotting dashed vertical lines and labels at key session boundaries and news events (Frankfurt open, London open, EU mid-session pause, Pre-US, US open, 14:30 U.S. news releases, 15:00 breakout window, and the London close), it draws your attention to the times when stop-runs and institutional orders tend to pile into the market.
Traders can use these timing zones to:
Anticipate liquidity sweeps where smart-money often liquidates weak positions or hunts stops.
Plan higher-probability entries just before or directly after these injections, reducing slippage and improving execution.
Improve win-rate consistency by aligning your trades with the natural ebb and flow of institutional flow rather than fading it.
With customizable session toggles, a “today-only” filter, and a small vertical offset to keep markers clear of price bars, this tool seamlessly integrates into any chart. Positioning yourself around these highlighted times helps you capture the bulk of intraday moves and avoids getting caught in low-liquidity chop.
SMA50 - Relleno + AlertasThis is about the 50 SMA and its relationship to price. When the price is above the 50 SMA, it is colored green, indicating a bullish trend. If the price is below the 50 SMA, it is colored red, indicating a bearish trend. It also has alerts when the trend crosses the 50 SMA.
Entry HelperEntry Helper is a precision tool designed to enhance clarity and support decision-making in fast-paced trading environments.
It adapts intelligently to different timeframes, offering visual guidance based on your chosen context — without the need to manually adjust settings.
Specially optimized for scalping assets like XAUUSD, NASDAQ, and SP500, it delivers exactly what you need, when you need it.
⚡ Just switch the chart… and it adjusts itself.
Developed by WAKEUP | Maggifx
MSTY-WNTR Rebalancing SignalMSTY-WNTR Rebalancing Signal
## Overview
The **MSTY-WNTR Rebalancing Signal** is a custom TradingView indicator designed to help investors dynamically allocate between two YieldMax ETFs: **MSTY** (YieldMax MSTR Option Income Strategy ETF) and **WNTR** (YieldMax Short MSTR Option Income Strategy ETF). These ETFs are tied to MicroStrategy (MSTR) stock, which is heavily influenced by Bitcoin's price due to MSTR's significant Bitcoin holdings.
MSTY benefits from upward movements in MSTR (and thus Bitcoin) through a covered call strategy that generates income but caps upside potential. WNTR, on the other hand, provides inverse exposure, profiting from MSTR declines but losing in rallies. This indicator uses Bitcoin's momentum and MSTR's relative strength to signal when to hold MSTY (bullish phases), WNTR (bearish phases), or stay neutral, aiming to optimize returns by switching allocations at key turning points.
Inspired by strategies discussed in crypto communities (e.g., X posts analyzing MSTR-linked ETFs), this indicator promotes an active rebalancing approach over a "set and forget" buy-and-hold strategy. In simulated backtests over the past 12 months (as of August 4, 2025), the optimized version has shown potential to outperform holding 100% MSTY or 100% WNTR alone, with an illustrative APY of ~125% vs. ~6% for MSTY and ~-15% for WNTR in one scenario.
**Important Disclaimer**: This is not financial advice. Past performance does not guarantee future results. Always consult a financial advisor. Trading involves risk, and you could lose money. The indicator is for educational and informational purposes only.
## Key Features
- **Momentum-Based Signals**: Uses a Simple Moving Average (SMA) on Bitcoin's price to detect bullish (price > SMA) or bearish (price < SMA) trends.
- **RSI Confirmation**: Incorporates MSTR's Relative Strength Index (RSI) to filter signals, avoiding overbought conditions for MSTY and oversold for WNTR.
- **Visual Cues**:
- Green upward triangle for "Hold MSTY".
- Red downward triangle for "Hold WNTR".
- Yellow cross for "Switch" signals.
- Background color: Green for MSTY, red for WNTR.
- **Information Panel**: A table in the top-right corner displays real-time data: BTC Price, SMA value, MSTR RSI, and current Allocation (MSTY, WNTR, or Neutral).
- **Alerts**: Configurable alerts for holding MSTY, holding WNTR, or switching.
- **Optimized Parameters**: Defaults are tuned (SMA: 10 days, RSI: 15 periods, Overbought: 80, Oversold: 20) based on simulations to reduce whipsaws and capture trends effectively.
## How It Works
The indicator's logic is straightforward yet effective for volatile assets like Bitcoin and MSTR:
1. **Primary Trigger (Bitcoin Momentum)**:
- Calculate the SMA of Bitcoin's closing price (default: 10-day).
- Bullish: Current BTC price > SMA → Potential MSTY hold.
- Bearish: Current BTC price < SMA → Potential WNTR hold.
2. **Secondary Filter (MSTR RSI Confirmation)**:
- Compute RSI on MSTR stock (default: 15-period).
- For bullish signals: If RSI > Overbought (80), signal Neutral (avoid overextended rallies).
- For bearish signals: If RSI < Oversold (20), signal Neutral (avoid capitulation bottoms).
3. **Allocation Rules**:
- Hold 100% MSTY if bullish and not overbought.
- Hold 100% WNTR if bearish and not oversold.
- Neutral otherwise (e.g., during choppy or extreme markets) – consider holding cash or avoiding trades.
4. **Rebalancing**:
- Switch signals trigger when the hold changes (e.g., from MSTY to WNTR).
- Recommended frequency: Weekly reviews or on 5% BTC moves to minimize trading costs (aim for 4-6 trades/year).
This approach leverages Bitcoin's influence on MSTR while mitigating the risks of MSTY's covered call drag during downtrends and WNTR's losses in uptrends.
## Setup and Usage
1. **Chart Requirements**:
- Apply this indicator to a Bitcoin chart (e.g., BTCUSD on Binance or Coinbase, daily timeframe recommended).
- Ensure MSTR stock data is accessible (TradingView supports it natively).
2. **Adding to TradingView**:
- Open the Pine Editor.
- Paste the script code.
- Save and add to your chart.
- Customize inputs if needed (e.g., adjust SMA/RSI lengths for different timeframes).
3. **Interpretation**:
- **Green Background/Triangle**: Allocate 100% to MSTY – Bitcoin is in an uptrend, MSTR not overbought.
- **Red Background/Triangle**: Allocate 100% to WNTR – Bitcoin in downtrend, MSTR not oversold.
- **Yellow Switch Cross**: Rebalance your portfolio immediately.
- **Neutral (No Signal)**: Panel shows "Neutral" – Hold cash or previous position; reassess weekly.
- Monitor the panel for key metrics to validate signals manually.
4. **Backtesting and Strategy Integration**:
- Convert to a strategy script by changing `indicator()` to `strategy()` and adding entry/exit logic for automated testing.
- In simulations (e.g., using Python or TradingView's backtester), it has outperformed buy-and-hold in volatile markets by ~100-200% relative APY, but results vary.
- Factor in fees: ETF expense ratios (~0.99%), trading commissions (~$0.40/trade), and slippage.
5. **Risk Management**:
- Use with a diversified portfolio; never allocate more than you can afford to lose.
- Add stop-losses (e.g., 10% trailing) to protect against extreme moves.
- Rebalance sparingly to avoid over-trading in sideways markets.
- Dividends: Reinvest MSTY/WNTR payouts into the current hold for compounding.
## Performance Insights (Simulated as of August 4, 2025)
Based on synthetic backtests modeling the last 12 months:
- **Optimized Strategy APY**: ~125% (by timing switches effectively).
- **Hold 100% MSTY APY**: ~6% (gains from BTC rallies offset by downtrends).
- **Hold 100% WNTR APY**: ~-15% (losses in bull phases outweigh bear gains).
In one scenario with stronger volatility, the strategy achieved ~4533% APY vs. 10% for MSTY and -34% for WNTR, highlighting its potential in dynamic markets. However, these are illustrative; real results depend on actual BTC/MSTR movements. Test thoroughly on historical data.
## Limitations and Considerations
- **Data Dependency**: Relies on accurate BTC and MSTR data; delays or gaps can affect signals.
- **Market Risks**: Bitcoin's volatility can lead to false signals (whipsaws); the RSI filter helps but isn't perfect.
- **No Guarantees**: This indicator doesn't predict the future. MSTR's correlation to BTC may change (e.g., due to regulatory events).
- **Not for All Users**: Best for intermediate/advanced traders familiar with ETFs and crypto. Beginners should paper trade first.
- **Updates**: As of August 4, 2025, this is version 1.0. Future updates may include volume filters or EMA options.
If you find this indicator useful, consider leaving a like or comment on TradingView. Feedback welcome for improvements!
Composite Sentiment Extremes OscillatorComposite Sentiment Extremes Oscillator (CSEO)
Created by MonkeyPhone
The Composite Sentiment Extremes Oscillator (CSEO) is a sophisticated market sentiment indicator designed to identify optimal entry and exit points by leveraging a composite of six key market data points. I developed this indicator to pinpoint moments where the risk-to-reward ratio for entering or exiting trades reaches its peak, helping traders capitalize on potential reversals. The oscillator aggregates data from the CBOE Volatility Index (VIX), CBOE Equity Put/Call Ratio (PCCE), NYSE TRIN, Net New 52-Week Highs/Lows, ICE BofA US High Yield Bond Spread (BAMLH0A0HYM2), and the percentage of S&P 500 stocks above their 200-day moving average (S5TH). Each component is normalized using a 252-bar percentrank to reflect greed (high values) or fear (low values), creating a unified 0-100 sentiment score.
The oscillator's line color reflects market conditions: red when above 60 (indicating a trending up market), gray between 40 and 60 (suggesting chop or consolidation), and green below 40 (indicating a trending down market). Notably, the higher or lower the line moves toward the extremes (88 for greed, 12 for fear), the more likely a pullback or retracement becomes, offering strategic opportunities for reversals. Given the long-term upward trend in legacy markets over decades, long signals (buy at extreme fear) tend to carry more weight than short signals (sell at extreme greed), though this dynamic may shift if markets experience a significant rollover.
This indicator performs best on the weekly timeframe, where its accuracy in identifying sentiment extremes shines, making it ideal for swing or position trading. It supports any timeframe daily or above, but lower timeframes (e.g., daily) may produce increased false signals due to data resolution limitations. Alerts can be configured for both long and short entries, allowing traders to receive notifications when the oscillator crosses the 12 (buy) or 88 (sell) thresholds—accessible via the TradingView alert interface for customized monitoring.
Use this tool to enhance your market timing, but always combine it with other analysis for confirmation. Feedback and suggestions are welcome as I continue to refine this indicator!
Choch Pattern Levels [BigBeluga] + AlertsThis version of Choch Pattern Levels includes built-in alert conditions for both ChoCh Up and ChoCh Down patterns. You can now set TradingView alerts directly when either pattern occurs, with optional visual markers (triangles) plotted on the chart.
Based on the original script by BigBeluga, licensed under CC BY-NC-SA 4.0. This is a modified version with alert conditions added.
EMA9/EMA50 Cross Alert (2H Only)התראה לקרוס של ממוצע נא אקספוננציאלי 9 ו 50 ל 2 הכיוונים בטיים פרם של שעתיים.
Alert for a collapse of the 9 and 50 exponential moving averages in both directions on a two-hour time frame.
THE ALCHEMIST PROTOCOL ELITE GOLD FUTURES TRADING SYSTEMWhat You're Getting:
A proprietary trading system that identifies high-probability 5-tick scalping opportunities in Gold Futures. This system uses the secret "Money Line" - a dynamic price level where institutional traders execute their orders.
SETUP INSTRUCTIONS
Step 1: Platform Requirements
TradingView account (Pro recommended for alerts)
Gold Futures access (not forex/spot gold)
Fast internet connection
Futures broker account
Step 2: Add The Indicator
Open TradingView
Search for symbol: GC1! (Gold Futures)
Click the indicator link provided
Click "Add to Favorites" then "Add to Chart"
Step 3: Chart Configuration
MANDATORY: Use 3-minute timeframe only
Turn off all other indicators
Clean chart with black background recommended
Zoom out to see 2-3 hours of price action
HOW TO TRADE THE SYSTEM
Entry Signals:
🟢 Green Triangle Below Bar = BUY Signal
🔴 Red Triangle Above Bar = SELL Signal
The Setup Requirements:
Price must touch the blue "Money Line"
Volume spike must occur (shown in info box)
Must be a "Range Day" (green background)
Signal appears with entry/stop/target lines
Position Management:
Entry: At the signal candle close price
Stop Loss: 5 ticks (red dashed line)
Take Profit: 5 ticks (green/orange dashed line)
Risk: $50 per contract
Reward: $50 per contract
TRADING RULES (FOLLOW EXACTLY)
✅ ONLY Trade When:
Info box shows "Range Day: YES ✓"
Time is 9:30 AM - 11:30 AM ET
You see clear signal triangles
Volume Spike shows "YES ✓"
❌ NEVER Trade When:
Red background (trending day)
During news events (FOMC, NFP)
After 3 losses in one day
Lunch hour (11:30 AM - 2:00 PM ET)
Money Management:
Start with 1 contract only
Risk maximum 2% of account per trade
Stop after 3 consecutive losses
Daily profit goal: 10-15 ticks
THE INFO BOX EXPLAINED
Top right corner shows:
Daily Range: How much gold moved today
Range Day: YES = good to trade, NO = stay out
Target/Stop: Your tick targets
Vol Spike: Confirms institutional activity
SECRET SAUCE TIPS
The Money Line represents where big traders operate
Best setups happen on first test of Money Line
If price is far from Money Line, wait patiently
Multiple touches of Money Line = weaker signal
Friday afternoons = lower quality setups
TROUBLESHOOTING
No Signals Appearing?
Check you're on 3-minute timeframe
Verify it's a range day (green background)
Confirm you're in active trading hours
Make sure you're on GC1! (Gold Futures)
Too Many Losses?
You're trading trending days (red background)
Not waiting for all confirmations
Trading outside optimal hours
Need more practice on simulator
PERFORMANCE EXPECTATIONS
Win Rate: 60-65% (with discipline)
Daily Trades: 3-5 quality setups
Monthly Return: 8-12% (conservative)
Learning Curve: 2-3 weeks
⚠️ CRITICAL WARNINGS
This is NOT for forex gold (XAUUSD)
MUST use 3-minute charts only
Paper trade 100 trades minimum first
The Money Line is proprietary - don't share
Discipline beats intelligence in trading
ADVANCED NOTES
Once profitable for 30 days straight, you can:
Trade 2:00-3:30 PM ET session
Scale to 2-3 contracts
Add 1-minute chart for fine entries
Use 10-tick targets on strong days
But MASTER the basics first!
The Alchemist Protocol™ - Turning Market Moves Into Gold
Remember: The market pays disciplined traders. Follow the rules exactly as written. No exceptions. No interpretations. Just follow the signals.
Good luck and trade safe! 🏆