Trendlines with Breaks + Hull Suite + SuperTrend
الدخول بعد اختراق او كسر الترند المطابق للسحابه والخروج مع تغيير لون الخط المتدرج
Entering after breaking or breaking the trend corresponding to the cloud and exit with changing the colour of the graduated line
Cycles
Golden Pocket SyndicateGPS – Golden Pocket Syndicate
The GPS indicator is a multi-tool designed for active traders who focus on reversals, precision scalping, and high-confluence entries. This script combines key market structure elements, dynamic support/resistance mapping, and real-time volume + liquidation metrics to help traders identify optimal entries based on supply/demand imbalances and liquidity targeting.
Rather than replicating existing open-source tools, GPS blends custom logic for:
• Golden Pocket Zone Mapping: Automatically highlights key Fibonacci retracement areas (0.618–0.65) across daily, weekly, monthly levels, including previous session extensions.
• Liquidation Clusters & Pre-Liq Zones: Real-time detection and visual display of high-risk liquidation areas using volume acceleration and candle-body displacement data.
• Reversal Confirmation Signals: Combines volume divergence, VWAP reclaims, and spiderline rejections with custom-coded “Snipe Points” that alert traders to potential exhaustion in trend.
• Market Sentiment Integration: Optional overlays include real-time bar color shifts based on bias change (from trend to range) and dynamic volume overlays.
This indicator is intended for traders who scalp or swing but require additional confirmation layers to prevent premature entries. It works well on 5m–4H charts and is especially powerful when paired with other manual tools such as trendlines, order blocks, or market structure breaks.
Custom Session ZonesCreate your own custom market session zones. Currently marks for Asia, London, NY, NY Open, ICT Silver Bullet AM/PM timings.
Breakout & Pullback | Auto S&D + Telegram AlertsBreakout & Pullback | Auto S&D + Telegram Alerts Achraf
Candle Range Detector by TradeTech AnalysisCandle Range Detector by TradeTech Analysis
This advanced indicator identifies and visualizes price compression zones based on inside bar formations, then tracks how price behaves around those zones — offering valuable insights into liquidity sweeps, range expansions, and trap/mitigation behavior.
The script builds upon the foundational concept of range-based price action, commonly used by institutional traders, and adds automation, mitigation tracking, and sweep detection to map how price reacts around these critical ranges.
🔍 How It Works:
• Range Formation: A new range is detected when the current candle forms entirely within the high and low of the previous candle (i.e., an inside bar). This behavior often indicates price compression and potential breakout zones.
• Range Extension: Once a range is confirmed, the script projects upper and lower boundaries (using either a percentage-based multiplier or Fibonacci log extension), providing context for expected breakout zones.
• Mitigation Tracking: The script continuously monitors whether price breaks above or below the projected extensions, marking that range as mitigated — useful for confirming whether liquidity was absorbed.
• Sweep Detection: If price re-visits a mitigated zone and shows signs of a liquidity sweep (via wick + close behavior), the indicator triggers visual sweep labels and optional alerts.
🧠 Optional Visual Enhancements:
• Highlight range-forming candles with light blue background (toggle on/off)
• Midpoint dotted line for symmetry analysis
• Labels for “Range High” and “Range Low” for visual clarity
• Dynamic box drawing that adapts upon mitigation or continuation
⚙️ Customizable Features:
• Choose between Normal and Fibonacci-based detection modes
• Toggle visibility of range boxes, extension lines, and sweep markers
• Configure sweep alerts, mitigation window size, and visual transparency
⸻
🧪 Use Cases
• Identify consolidation zones before major price moves
• Confirm liquidity sweeps for entry/exit traps
• Visualize and test mitigation behavior of past zones
• Combine with Order Flow or Volume Profile tools to enhance context
⸻
⚠️ This is a fully original implementation that goes beyond classical inside-bar scanners by incorporating mitigation, extension projection, and liquidity sweeps — making it a powerful tool for intraday, swing, and even Smart Money-based trading setups.
Timeframe Resistance Evaluation And Detection - CoffeeKillerTREAD - Timeframe Resistance Evaluation And Detection Guide
🔔 Important Technical Limitation 🔔
**This indicator does NOT fetch true higher timeframe data.** Instead, it simulates higher timeframe levels by aggregating data from your current chart timeframe. This means:
- Results will vary depending on what chart timeframe you're viewing
- Levels may not match actual higher timeframe candle highs/lows
- You might miss important wicks or gaps that occurred between chart timeframe bars
- **Always verify levels against actual higher timeframe charts before trading**
Welcome traders! This guide will walk you through the TREAD (Timeframe Resistance Evaluation And Detection) indicator, a multi-timeframe analysis tool developed by CoffeeKiller that identifies support and resistance confluence across different time periods.(I am 50+ year old trader and always thought I was bad a teaching and explaining so you get a AI guide. I personally use this on the 5 minute chart with the default settings, but to each there own and if you can improve the trend detection methods please DM me. I would like to see the code. Thanks)
Core Components
1. Dual Timeframe Level Tracking
- Short Timeframe Levels: Tracks opening price extremes within shorter periods
- Long Timeframe Levels: Tracks actual high/low extremes within longer periods
- Dynamic Reset Mechanism: Levels reset at the start of each new timeframe period
- Momentum Detection: Identifies when levels change mid-period, indicating active price movement
2. Visual Zone System
- High Zones: Areas between long timeframe highs and short timeframe highs
- Low Zones: Areas between long timeframe lows and short timeframe lows
- Fill Coloring: Dynamic colors based on whether levels are static or actively changing
- Momentum Highlighting: Special colors when levels break during active periods
3. Customizable Display Options
- Multiple Plot Styles: Line, circles, or cross markers
- Flexible Timeframe Selection: Wide range of short and long timeframe combinations
- Color Customization: Separate colors for each level type and momentum state
- Toggle Controls: Show/hide different elements based on trading preference
Main Features
Timeframe Settings
- Short Timeframe Options: 15m, 30m, 1h, 2h, 4h
- Long Timeframe Options: 1h, 2h, 4h, 8h, 12h, 1D, 1W
- Recommended Combinations:
- Scalping: 15m/1h or 30m/2h
- Day Trading: 30m/4h or 1h/4h
- Swing Trading: 4h/1D or 1D/1W
Display Configuration
- Level Visibility: Toggle short/long timeframe levels independently
- Fill Zone Control: Enable/disable colored zones between levels
- Momentum Fills: Special highlighting for actively changing levels
- Line Customization: Width, style, and color options for all elements
Color System
- Short TF High: Default red for resistance levels
- Short TF Low: Default green for support levels
- Long TF High: Transparent red for broader resistance context
- Long TF Low: Transparent green for broader support context
- Momentum Colors: Brighter colors when levels are actively changing
Technical Implementation Details
How Level Tracking Works
The indicator uses a custom tracking function that:
1. Detects Timeframe Periods: Uses `time()` function to identify when new periods begin
2. Tracks Extremes: Monitors highest/lowest values within each period
3. Resets on New Periods: Clears tracking when timeframe periods change
4. Updates Mid-Period: Continues tracking if new extremes are reached
The Timeframe Limitation Explained
`pinescript
// What the indicator does:
short_tf_start = ta.change(time(short_timeframe)) != 0 // Detects 30m period start
= track_highest(open, short_tf_start) // BUT uses chart TF opens!
// What true multi-timeframe would be:
// short_tf_high = request.security(syminfo.tickerid, short_timeframe, high)
`
This means:
- On a 5m chart with 30m/4h settings: Tracks 5m bar opens during 30m and 4h windows
- On a 1m chart with same settings: Tracks 1m bar opens during 30m and 4h windows
- Results will be different between chart timeframes
- May miss important price action that occurred between your chart's bars
Visual Elements
1. Level Lines
- Short TF High: Upper resistance line from shorter timeframe analysis
- Short TF Low: Lower support line from shorter timeframe analysis
- Long TF High: Broader resistance context from longer timeframe
- Long TF Low: Broader support context from longer timeframe
2. Zone Fills
- High Zone: Area between long TF high and short TF high (potential resistance cluster)
- Low Zone: Area between long TF low and short TF low (potential support cluster)
- Regular Fill: Standard transparency when levels are static
- Momentum Fill: Enhanced visibility when levels are actively changing
3. Dynamic Coloring
- Static Periods: Normal colors when levels haven't changed recently
- Active Periods: Momentum colors when levels are being tested/broken
- Confluence Zones: Different intensities based on timeframe alignment
Trading Applications
1. Support/Resistance Trading
- Entry Points: Trade bounces from zone boundaries
- Confluence Areas: Focus on areas where short and long TF levels cluster
- Zone Breaks: Enter on confirmed breaks through entire zones
- Multiple Timeframe Confirmation: Stronger signals when both timeframes align
2. Range Trading
- Zone Boundaries: Use fill zones as range extremes
- Mean Reversion: Trade back toward opposite zone when price reaches extremes
- Breakout Preparation: Watch for momentum color changes indicating potential breakouts
- Risk Management: Place stops outside the opposite zone
3. Trend Following
- Direction Bias: Trade in direction of zone breaks
- Pullback Entries: Enter on pullbacks to broken zones (now support/resistance)
- Momentum Confirmation: Use momentum coloring to confirm trend strength
- Multiple Timeframe Alignment: Strongest trends when both timeframes agree
4. Scalping Applications
- Quick Bounces: Trade rapid moves between zone boundaries
- Momentum Signals: Enter when momentum colors appear
- Short-Term Targets: Use opposite zone as profit target
- Tight Stops: Place stops just outside current zone
Optimization Guide
1. Timeframe Selection
For Different Trading Styles:
- Scalping: 15m/1h - Quick levels, frequent updates
- Day Trading: 30m/4h - Balanced view, good for intraday moves
- Swing Trading: 4h/1D - Longer-term perspective, fewer false signals
- Position Trading: 1D/1W - Major structural levels
2. Chart Timeframe Considerations
**Important**: Your chart timeframe affects results
- Lower Chart TF: More granular level tracking, but may be noisy
- Higher Chart TF: Smoother levels, but may miss important price action
- Recommended: Use chart timeframe 2-4x smaller than short indicator timeframe
3. Display Settings
- Busy Charts: Disable fills, show only key levels
- Clean Analysis: Enable all fills and momentum coloring
- Multi-Monitor Setup: Use different color schemes for easy identification
- Mobile Trading: Increase line width for visibility
Best Practices
1. Level Verification
- Always Cross-Check: Verify levels against actual higher timeframe charts
- Multiple Timeframes: Check 2-3 different chart timeframes for consistency
- Price Action Confirmation: Wait for candlestick confirmation at levels
- Volume Analysis: Combine with volume for stronger confirmation
2. Risk Management
- Stop Placement: Use zones rather than exact prices for stops
- Position Sizing: Reduce size when zones are narrow (higher risk)
- Multiple Targets: Scale out at different zone boundaries
- False Break Protection: Allow for minor zone penetrations
3. Signal Quality Assessment
- Momentum Colors: Higher probability when momentum coloring appears
- Zone Width: Wider zones often provide stronger support/resistance
- Historical Testing: Backtest on your preferred timeframe combinations
- Market Conditions: Adjust sensitivity based on volatility
Advanced Features
1. Momentum Detection System
The indicator tracks when levels change mid-period:
`pinescript
short_high_changed = short_high != short_high and not short_tf_start
`
This identifies:
- Active level testing
- Potential breakout situations
- Increased market volatility
- Trend acceleration points
2. Dynamic Color System
Complex conditional logic determines fill colors:
- Static Zones: Regular transparency for stable levels
- Active Zones: Enhanced colors for changing levels
- Mixed States: Different combinations based on user preferences
- Custom Overrides: User can prioritize certain color schemes
3. Zone Interaction Analysis
- Convergence: When short and long TF levels approach each other
- Divergence: When timeframes show conflicting levels
- Alignment: When both timeframes agree on direction
- Transition: When one timeframe changes while other remains static
Common Issues and Solutions
1. Inconsistent Levels
Problem: Levels look different on various chart timeframes
Solution: Always verify against actual higher timeframe charts
2. Missing Price Action
Problem: Important wicks or gaps not reflected in levels
Solution: Use chart timeframe closer to indicator's short timeframe setting
3. Too Many Signals
Problem: Excessive level changes and momentum alerts
Solution: Increase timeframe settings or reduce chart timeframe granularity
4. Lagging Signals
Problem: Levels seem to update too slowly
Solution: Decrease chart timeframe or use more sensitive timeframe combinations
Recommended Setups
Conservative Approach
- Timeframes: 4h/1D
- Chart: 1h
- Display: Show fills only, no momentum coloring
- Use: Swing trading, position management
Aggressive Approach
- Timeframes: 15m/1h
- Chart: 5m
- Display: All features enabled, momentum highlighting
- Use: Scalping, quick reversal trades
Balanced Approach
- Timeframes: 30m/4h
- Chart: 15m
- Display: Selective fills, momentum on key levels
- Use: Day trading, multi-session analysis
Final Notes
**Remember**: This indicator provides a synthetic view of multi-timeframe levels, not true higher timeframe data. While useful for identifying potential confluence areas, always verify important levels by checking actual higher timeframe charts.
**Best Results When**:
- Combined with actual multi-timeframe analysis
- Used for confluence confirmation rather than primary signals
- Applied with proper risk management
- Verified against price action and volume
**DISCLAIMER**: This indicator and its signals are intended solely for educational and informational purposes. The timeframe limitation means results may not reflect true higher timeframe levels. Always conduct your own analysis and verify levels independently before making trading decisions. Trading involves significant risk of loss.
1-Min Change of State Buy/Sell SignalBuy & Sell Indicator. Calls a signal based on break of structure, momentum and trend
Wyckoff Entry Times @jqrmThis indicator visually marks two custom time zones on your TradingView chart by drawing vertical lines at the start and end of each zone. The first time zone spans from 9:27 AM to 9:33 AM, highlighted in red, and the second spans from 9:50 AM to 10:10 AM, highlighted in blue. You can enable or disable each zone's lines using the indicator inputs. This helps to quickly spot important intraday sessions or time ranges on your chart.
Crypto Swing Trading Strategy (1-5 Day)Crypto Swing Trading Strategy Overview
This Pine Script implements a comprehensive 1-5 day swing trading strategy designed specifically for cryptocurrencies like BITSTAMP:BTCUSD (BTC), COINBASE:ETHUSD (ETH), and COINBASE:XRPUSD (XRP).
Here's what makes this strategy effective:
Core Philosophy: "Trade With The Trend"
The strategy follows the fundamental principle of trend-following - only taking trades in the direction of the prevailing market trend to maximize probability of success.
Key Components:
🔍 Trend Identification
Uses 50-day and 200-day EMAs to determine market direction
Only goes long when 50 EMA > 200 EMA (uptrend)
Only goes short when 50 EMA < 200 EMA (downtrend)
⚡ Smart Entry Timing
Waits for pullbacks within the trend (price near 50 EMA)
Uses RSI to identify oversold conditions in uptrends (RSI < 45) or overbought conditions in downtrends (RSI > 70)
Enters when momentum confirms trend resumption (RSI crosses back)
🛡️ Advanced Risk Management
ATR-based stop losses that adapt to market volatility
Position sizing ensures consistent 1% risk per trade
Wider stops in volatile markets, tighter stops in calm markets
💰 Profit Optimization
Takes 50% profit at 2:1 reward-to-risk ratio
Trails remaining position with ATR-based stops
Lets winners run while protecting gains
Why It Works:
High Probability Setups: Only trades with the trend during pullbacks
Volatility Adaptive: ATR ensures stops aren't too tight or too wide
Emotion-Free: All rules are clearly defined for automated execution
Capital Preservation: Strong risk management prevents large losses
Best Used For:
4-hour timeframes on major cryptocurrencies - Such as BTC - ETH - XRP
Trending markets (avoid during sideways consolidation)
Traders who want systematic, rule-based approach
This strategy combines the reliability of trend-following with the precision of momentum indicators, creating a robust system for capturing crypto market swings while managing downside risk effectively.
1-Min Change of State Buy/Sell SignalBuy & Sell Indicator. signals a trade based on BOS (Break of Structure), Momentum, and trend
Unified Strategy
Traffic Light + Trend Trader
Description:
The Trend Trader strategy leverages the power of moving averages (MAs) and MACD to identify market trends and capitalize on momentum shifts. This indicator is ideal for traders seeking consistent signals for both entry and exit points, making it versatile across various markets, including stocks, forex, and commodities.
Key Features:
Dynamic Trend Detection:
Short and long-term moving averages (MAs) provide insights into the current market trend.
Crossovers between MAs signal potential buy or sell opportunities.
MACD Confirmation:
Combines MA crossovers with MACD for double confirmation of trend changes.
Color-coded background highlights bullish or bearish momentum during active trading sessions.
Session Customization:
Allows traders to focus on specific trading hours by customizing session times.
Ensures the strategy aligns with your preferred trading schedule.
Instrument-Specific Targeting:
Tailored targets for popular instruments like US30, NDX100, GER40, and GOLD.
Adaptable to different volatility profiles and market behaviors.
How to Use:
Buy Signal: When the short MA crosses above the long MA, confirmed by MACD trending upward.
Sell Signal: When the short MA crosses below the long MA, confirmed by MACD trending downward.
Background Colors: Green indicates bullish momentum; red highlights bearish momentum during the session.
Benefits:
Enhances trend-following strategies by reducing noise and false signals.
Suitable for both short-term scalping and long-term trend trading.
Highly customizable for different trading styles and instruments.
Tags:
Trend Trader, Moving Average Crossover, MACD, Forex, Stocks, Scalping, Swing Trading, Long, Short, TradingView Indicator.
Additional Instructions:
Ensure session times and target levels are tailored to your trading strategy.
TSLA Elliott Wave Estimation//@version=5
indicator("TSLA Elliott Wave Estimation", overlay=true)
// === PRICE SWINGS LOGIC (simplified manual labeling structure) ===
// Manually approximate major pivot points (this should ideally be semi-automated or confirmed with fractal/zigzag logic)
wave1_top = label.new(x=bar_index , y=450, text="(1)", style=label.style_label_up, color=color.green, textcolor=color.white)
wave2_bottom = label.new(x=bar_index , y=290, text="(2)", style=label.style_label_down, color=color.red, textcolor=color.white)
wave3_top = label.new(x=bar_index , y=550, text="(3)", style=label.style_label_up, color=color.green, textcolor=color.white)
wave4_bottom = label.new(x=bar_index , y=310, text="(4)", style=label.style_label_down, color=color.red, textcolor=color.white)
// Forecasted wave 5 zone
wave5_target_top = line.new(x1=bar_index, y1=420, x2=bar_index + 20, y2=450, extend=extend.right, color=color.yellow, width=2, style=line.style_dashed)
label.new(x=bar_index + 20, y=450, text="Potential (5)", style=label.style_label_up, color=color.orange, textcolor=color.black)
// Optional: Visual zone for retracement support
support_box = box.new(left=bar_index - 15, top=330, right=bar_index + 5, bottom=290, border_color=color.gray, bgcolor=color.new(color.gray, 85))
[Mustang Algo] Channel Strategy# Mustang Algo Channel Strategy - Universal Market Sentiment Oscillator
## 🎯 ORIGINAL CONCEPT
This strategy employs a unique market sentiment oscillator that works on ALL financial assets. It uses Bitcoin supply dynamics combined with stablecoin market capitalization as a macro sentiment indicator to generate universal timing signals across stocks, forex, commodities, indices, and cryptocurrencies.
## 🌐 UNIVERSAL APPLICATION
- **Any Asset Class:** Stocks, Forex, Commodities, Indices, Crypto, Bonds
- **Market-Wide Timing:** BTC/Stablecoin ratio serves as a global risk sentiment gauge
- **Cross-Market Signals:** Trade any instrument using macro liquidity conditions
- **Ecosystem Approach:** One oscillator for all financial markets
## 🧮 METHODOLOGY
**Core Calculation:** BTC Supply / (Combined Stablecoin Market Cap / BTC Price)
- **Data Sources:** DAI + USDT + USDC market capitalizations
- **Signal Generation:** RSI(14) applied to the ratio, double-smoothed with WMA
- **Timing Logic:** Crossover signals filtered by overbought/oversold zones
- **Multi-Timeframe:** Configurable timeframe analysis (default: Daily)
## 📈 TRADING STRATEGY
**LONG Entries:** Bullish crossover when market sentiment is oversold (<48)
**SHORT Entries:** Bearish crossover when market sentiment is overbought (>55)
**Universal Timing:** These macro signals apply to trading any financial instrument
## ⚙️ FLEXIBLE RISK MANAGEMENT
**Three SL/TP Calculation Modes:**
- **Percentage Mode:** Traditional % based (4% SL, 12% TP default)
- **Ticks Mode:** Precise tick-based calculation (50/150 ticks default)
- **Pips Mode:** Forex-style pip calculation (50/150 pips default)
**Realistic Parameters:**
- Commission: 0.1% (adjustable for different asset classes)
- Slippage: 2 ticks
- Position sizing: 10% of equity (conservative)
- No pyramiding (single position management)
## 📊 KEY ADVANTAGES
✅ **Universal Application:** One strategy for all asset classes
✅ **Macro Foundation:** Based on global liquidity and risk sentiment
✅ **False Signal Filtering:** Overbought/oversold zones reduce noise
✅ **Flexible Risk Management:** Multiple SL/TP calculation methods
✅ **No Lookahead Bias:** Clean backtesting with realistic results
✅ **Cross-Market Correlation:** Captures broad market risk cycles
## 🎛️ CONFIGURATION GUIDE
1. **Asset Selection:** Apply to stocks, forex, commodities, indices, crypto
2. **Timeframe Setup:** Daily recommended for swing trading
3. **Sentiment Bounds:** Adjust 48/55 levels based on market volatility
4. **Risk Management:** Choose appropriate SL/TP mode for your asset class
5. **Direction Filter:** Select Long Only, Short Only, or Both
## 📋 BACKTESTING STANDARDS
**Compliant with TradingView Guidelines:**
- ✅ Realistic commission structure (0.1% default)
- ✅ Appropriate slippage modeling (2 ticks)
- ✅ Conservative position sizing (10% equity)
- ✅ Sustainable risk ratios (1:3 SL/TP)
- ✅ No lookahead bias (proper historical simulation)
- ✅ Sufficient sample size potential (100+ trades possible)
## 🔬 ORIGINAL RESEARCH
This strategy introduces a revolutionary approach to financial markets by treating the BTC/Stablecoin ratio as a global risk sentiment gauge. Unlike traditional indicators that analyze individual asset price action, this oscillator captures macro liquidity flows that affect ALL financial markets - from stocks to forex to commodities.
## 🎯 MARKET APPLICATIONS
**Stocks & Indices:** Risk-on/risk-off sentiment timing
**Forex:** Global liquidity flow analysis for major pairs
**Commodities:** Risk appetite for inflation hedges
**Bonds:** Flight-to-safety vs. risk-seeking behavior
**Crypto:** Native application with direct correlation
## ⚠️ RISK DISCLOSURE
- Designed for intermediate to long-term trading across all timeframes
- Market sentiment can remain extreme longer than expected
- Always use appropriate position sizing for your specific asset class
- Adjust commission and slippage settings for different markets
- Past performance does not guarantee future results
## 🚀 INNOVATION SUMMARY
**What makes this strategy unique:**
- First to use BTC/Stablecoin ratio as universal market sentiment indicator
- Applies macro-economic principles to technical analysis across all assets
- Single oscillator provides timing signals for entire financial ecosystem
- Bridges traditional finance with digital asset insights
- Combines fundamental liquidity analysis with technical precision
@khaicao| APB HistogramIntroducing the APB Histogram Indicator
A Powerful Tool for Visualizing Price Momentum
The APB Histogram (Average Price Bar Histogram) is a unique and insightful indicator designed to help traders identify price momentum and potential trend reversals. By calculating a smoothed average of price action and plotting the difference between the APB Close and APB Open as a histogram, this indicator provides a clear visual representation of bullish and bearish pressure in the market.
Key Features:
✅ Smoothed Price Calculation – Uses a recursive formula to generate a dynamic average price bar, reducing noise and highlighting meaningful trends.
✅ Intuitive Histogram Display – Positive (green) bars indicate bullish momentum, while negative (red) bars signal bearish momentum.
✅ Customizable Colors – Adjust the bullish and bearish colors to match your trading style.
✅ Non-Overlay Design – Plotted in a separate panel for clear visualization without cluttering the main chart.
How to Use the APB Histogram:
Bullish Signals: When the histogram bars are green and rising, it suggests increasing buying pressure.
Bearish Signals: When the histogram bars are red and falling, it indicates growing selling pressure.
Trend Confirmation: Use alongside other indicators, recommended to use with Stochastic (8,3,3) to confirm trend strength.
Perfect For:
Swing Traders looking for momentum shifts
Day Traders needing quick visual cues on price direction
Trend Followers confirming entry and exit points
Try the APB Histogram today and enhance your trading strategy with a cleaner, more intuitive view of market momentum!
🔹 Like & Follow for more unique indicators!
🔹 Comment below if you have any questions or improvement suggestions!
Happy Trading! 🚀
Swing Counter – Alleen eerste label per reeksCounts upward en downward swings. Number 7 or 8 is a warning.
New WeekSimple and clean indicator that highlights the start of each new trading week on your chart with a subtle background color. Perfect for traders who need a clear visual reference for weekly market structure analysis.
RSI + 200 EMA Strategy🔹 Rules to follow (5-minute)
✅ Buy (Long) when:
➥ Price is above 200 EMA (uptrend).
➥ RSI drops below 30 (oversold) and then crosses back above 30.
➥ Ideally, you enter after the first green 5-minute candle following the RSI reversal.
✅ Sell (Short) when:
➥ Price is below 200 EMA (downtrend).
➥ RSI crosses above 70 (overbought) and then drops back below 70.
➥ Ideally, you enter after the first red 5-minute candle following the reversal.
EST Morning Session ColumnsThis is a simple indicator that shows the market open every weekday morning and a Red Wednesday column marketing the middle of the week. I se this to watch the open easily on any time frame as generally, Monday sets a trend until Wednesday which typically starts a reversal into the weekend.
I may continue adding to this over time as I find other elements to create a confluence.
cryptocrow.io
Palfrey Ltd: CBT Navigator Legacy🧭 How to Use the CBT Navigator Legacy Indicator
The CBT Navigator Legacy is designed to assist long-term Bitcoin holders with structured exit planning across the capital cycle. It overlays key price zones and ROI thresholds to help you manage conviction, de-risk responsibly, and navigate euphoric conditions with clarity.
🔹 Setup & Inputs
Average Entry: Input the average USD price at which you acquired your BTC position.
Cycle Peak Estimate: Set a hypothetical top for the current market cycle (e.g. $250,000).
Funding Rate Proxy: Enter a manually observed or estimated annualized funding rate (e.g. 0.12 for 12%).
🔹 What It Displays
The indicator renders horizontal lines at:
Sell Zone 1 (72% of peak): Early de-risking for disciplined capital preservation.
Sell Zone 2 (90% of peak): Start reducing core positions.
Sell Zone 3 (100% of peak): Near peak euphoria—high-risk environment.
Sell Zone Max (110% of peak): Blow-off top zone—exit remaining speculative exposure.
ROI Multiples (2x to 10x): Visualize profit multiples based on your entry price.
A small dashboard on-screen summarizes which zones price has entered and whether funding rates are elevated (above 10%).
🔹 How to Use It
Strategic Planning: Use the tool to define your sell zones before the market gets volatile.
Psychological Anchor: The visual zones provide a reference point when sentiment becomes irrational.
Non-Overfitting: It works without relying on live market data proxies or on-chain feeds—ideal for legacy views.
For deeper insights into how this framework fits into broader cycle structure, macro analysis, and risk models, refer to the articles at
📬 coinandcapital.substack.com
Smart Pro Strategy – Buy/Sell + Elliott + Squeeze + Dashboard📊 Smart Momentum Pro – Complete Intraday Strategy for Stocks, Crypto, and Indices
✅ What’s Included:
• Buy/Sell signals based on price action, volume, and momentum
• Elliott Wave detection (1, 3, 5, A, B, C)
• Live market summary table with trend direction and volatility
• Fibonacci-based reversal zone
• Squeeze alert system with visual chart notifications
• Smart EMA 8/21/50/200 tracking
• Fully designed for black charts and red/green candles
• Perfect for BTC, ETH, SPY, HIMS, and more
🧠 Timeframes: Ideal for 5min, 15min, 1h, and Daily charts.
Mariam Smart FlipPurpose
This tool identifies high-probability intraday reversals by detecting when price flips through the daily open after strong early-session commitment.
How It Works
A valid flip occurs when:
The previous daily candle is bullish or bearish
The first hour today continues in the same direction
Then, the price flips back through the daily open with a minimum break threshold (user-defined)
This setup is designed to catch liquidity grabs or fakeouts near the daily open, where early buyers or sellers get trapped after showing commitment
Signal Logic
Buy Flip
Previous day bearish → first hour bearish → price flips above open
Sell Flip
Previous day bullish → first hour bullish → price flips below open
Features
Configurable flip threshold in percentage
Signals only activate after the first hour ends
Daily open line displayed on chart
Simple triangle markers with no visual clutter
Alerts ready to use for automation or notifications
Usage Tips
Use "Once Per Bar" alert mode to get notified immediately when the flip happens
Works best in active markets like FX, indices, or crypto
Adjust threshold based on asset volatility
Suggested stop loss: use the previous daily high for sell flips or the previous daily low for buy flips
Suggested take profit: secure at least 30 pips to aim for a 1:3 risk-to-reward ratio on average
PRO Investing - LevelPRO Investing - Level
📊 Dynamic Support/Resistance
This indicator plots the PRO Investing Level, defined as the midpoint between the highest high and lowest low over the past 252 trading days (default lookback period, equivalent to ~1 year). It acts as a key mean-reversion reference level, useful for identifying potential support/resistance zones or market equilibrium levels.
Features:
🕰️ Option to display only today’s level or historical levels.
⚙️ Customizable lookback period for flexibility across timeframes and strategies.
📉 Teal line plotted directly on the chart, highlighting this institutional-grade level.
Ideal for traders looking to anchor price action to significant historical ranges—particularly useful in mean-reversion, breakout, or volatility compression strategies.