VWAP SharkzVWAP for VIP Group
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
Phân tích Xu hướng
Volume Weighted Average PriceVWAP for VIP Group
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
Volume Weighted Average PriceVWAP
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
JUST IN - Panama deal allows US to deploy troops to canal — The document, signed by top security officials from both countries, allows US military personnel to deploy to Panama-controlled facilities for training, exercises and a range of other activities
Leavitt Convolution ProbabilityTechnical Analysis of Markets with Leavitt Market Projections and Associated Convolution Probability
The aim of this study is to present an innovative approach to market analysis based on the research "Leavitt Market Projections." This technical tool combines one indicator and a probability function to enhance the accuracy and speed of market forecasts.
Key Features
Advanced Indicators : the script includes the Convolution line and a probability oscillator, designed to anticipate market changes. These indicators provide timely signals and offer a clear view of price dynamics.
Convolution Probability Function : The Convolution Probability (CP) is a key element of the script. A significant increase in this probability often precedes a market decline, while a decrease in probability can signal a bullish move. The Convolution Probability Function:
At each bar, i, the linear regression routine finds the two parameters for the straight line: y=mix+bi.
Standard deviations can be calculated from the sequence of slopes, {mi}, and intercepts, {bi}.
Each standard deviation has a corresponding probability.
Their adjusted product is the Convolution Probability, CP. The construction of the Convolution Probability is straightforward. The adjusted product is the probability of one times 1− the probability of the other.
Customizable Settings : Users can define oversold and overbought levels, as well as set an offset for the linear regression calculation. These options allow for tailoring the script to individual trading strategies and market conditions.
Statistical Analysis : Each analyzed bar generates regression parameters that allow for the calculation of standard deviations and associated probabilities, providing an in-depth view of market dynamics.
The results from applying this technical tool show increased accuracy and speed in market forecasts. The combination of Convolution indicator and the probability function enables the identification of turning points and the anticipation of market changes.
Additional information:
Leavitt, in his study, considers the SPY chart.
When the Convolution Probability (CP) is high, it indicates that the probability P1 (related to the slope) is high, and conversely, when CP is low, P1 is low and P2 is high.
For the calculation of probability, an approximate formula of the Cumulative Distribution Function (CDF) has been used, which is given by: CDF(x)=21(1+erf(σ2x−μ)) where μ is the mean and σ is the standard deviation.
For the calculation of probability, the formula used in this script is: 0.5 * (1 + (math.sign(zSlope) * math.sqrt(1 - math.exp(-0.5 * zSlope * zSlope))))
Conclusions
This study presents the approach to market analysis based on the research "Leavitt Market Projections." The script combines Convolution indicator and a Probability function to provide more precise trading signals. The results demonstrate greater accuracy and speed in market forecasts, making this technical tool a valuable asset for market participants.
Filtered Swing Pivot S&R )Pivot support and resis🔍 Filtered Swing Pivot S&R - Overview
This indicator identifies and plots tested support and resistance levels using a filtered swing pivot strategy. It focuses on high-probability zones where price has reacted before, helping traders better anticipate future price behavior.
It filters out noise using:
Customizable pivot detection logic
Minimum price level difference
ATR (Average True Range) volatility filter
Confirmation by price retesting the level before plotting
⚙️ Core Logic Explained
✅ 1. Pivot Detection
The script uses Pine Script's built-in ta.pivothigh() and ta.pivotlow() functions to find local highs (potential resistance) and lows (potential support).
Pivot Lookback/Lookahead (pivotLen):
A pivot is confirmed if it's the highest (or lowest) point within a lookback and lookahead range of pivotLen bars.
Higher values = fewer, stronger pivots.
Lower values = more, but potentially noisier levels.
✅ 2. Pending Pivot Confirmation
Once a pivot is detected:
It is not drawn immediately.
The script waits until price re-tests that pivot level. This retest confirms the market "respects" the level.
For example: if price hits a previous high again, it's treated as a valid resistance.
✅ 3. Dual-Level Filtering System
To reduce chart clutter and ignore insignificant levels, two filters are applied:
Fixed Threshold (Minimum Level Difference):
Ensures a new pivot level is not too close to the last one.
ATR-Based Filter:
Dynamically adjusts sensitivity based on current volatility using the formula:
java
Copy
Edit
Minimum distance = ATR × ATR Multiplier
Only pivots that pass both filters are plotted.
✅ 4. Line Drawing
Once a pivot is:
Detected
Retested
Filtered
…a horizontal dashed line is drawn at that level to highlight support or resistance.
Resistance: Red (default)
Support: Green (default)
These lines are:
Dashed for clarity
Extended for X bars into the future (user-defined) for forward visibility
🎛️ Customizable Inputs
Parameter Description
Pivot Lookback/Lookahead Bars to the left and right of a pivot to confirm it
Minimum Level Difference Minimum price difference required between plotted levels
ATR Length Number of bars used in ATR volatility calculation
ATR Multiplier for Pivot Multiplies ATR to determine volatility-based pivot separation
Line Extension (bars) How many future bars the level line will extend for better visibility
Resistance Line Color Color for resistance lines (default: red)
Support Line Color Color for support lines (default: green)
📈 How to Use It
This indicator is ideal for:
Identifying dynamic support & resistance zones that adapt to volatility.
Avoiding false levels by waiting for pivot confirmation.
Visual guidance for entries, exits, stop placements, or take-profits.
🔑 Trade Ideas:
Use support/resistance retests for entry confirmations.
Combine with candlestick patterns or volume spikes near drawn levels.
Use in confluence with trendlines or moving averages.
🚫 What It Does Not Do (By Design)
Does not repaint or remove past levels once confirmed.
Does not include labels or alerts (but can be added).
Does not auto-scale based on timeframes (manual tuning recommended).
🛠️ Possible Enhancements (Optional)
If desired, you could extend the functionality to include:
Labels with “S” / “R”
Alert when a new level is tested or broken
Toggle for support/resistance visibility
Adjustable line width or style
tance indicator
Live Risk On/Off Sentiment Big Basket🔥 Live Risk On/Off Sentiment Indicator 🔥
This indicator provides a clear and immediate assessment of global market risk sentiment by combining multiple key financial instruments across various asset classes. It helps traders quickly gauge whether the market is currently in a risk-on or risk-off environment.
📈 Included Assets:
- Risk-off indicators:** VIX, Gold, US Dollar Index (DXY), US10Y Treasury Yields, TLT (Treasury Bonds)
- Risk-on indicators:** S&P 500 (SPY), Bitcoin (BTC), High Yield Bonds (HYG), AUD/JPY (Forex), Copper/Gold ratio, and Oil (WTI)
🛠️ How it Works:
The indicator calculates a weighted Z-score for each asset, dynamically capturing its performance relative to recent history. Positive values (green) indicate a risk-on sentiment, while negative values (red) suggest a risk-off sentiment.
🚨 Features:
- Fully customizable asset selection and weighting
- Easy-to-understand visual signals
- Adaptable lookback period for short-term and long-term market analysis
💡 How to Use:
- Identify market phases quickly (bullish or bearish sentiment).
- Enhance your decision-making for entries and exits based on broader market conditions.
- Incorporate into any trading strategy to improve alignment with global risk sentiment.
Harness the power of macro analysis and elevate your trading performance!
Enjoy and trade smart! 📊📈
Riseofatrader
Silver Strat |BASIC| [AgJ]Silver Strat |Basic by SilverJROM
Strategy for multiple assets on cryptocurrencies
The Silver Strategy is a trading approach primarily developed for a wide range of cryptocurrencies, with Bitcoin (BTC) and Solana (SOL) serving as the main assets for testing and refinement. Its effectiveness in the cryptocurrency market stems from two key characteristics of these assets: (1) their prices tend to exhibit strong trends, either upward or downward, and (2) over the long term, their value generally increases. The strategy is designed to capitalize on these traits, and it may not perform well if applied to assets that lack these behaviors.
Additionally, the Silver Strategy is built for simplicity and flexibility. It features a core trading logic that handles the primary buy and sell decisions, complemented by optional auxiliary logic that users can enable or disable as needed. To support decision-making, the strategy incorporates trend and momentum calculations, which are visually represented through bar colors indicating trend strength. It also includes performance metrics, making it easy for users to evaluate the strategy’s results on a specific asset.
🧩 Key Features
8 Indicators
The strategy combines 8 unique indicators to analyze market trends, momentum, and conditions, generating precise buy and sell signals across various cryptocurrencies:
Oscillators : Detect overbought/oversold levels to pinpoint entry and exit opportunities, particularly in range-bound markets.
Trend Following : Monitor price direction and persistence to align with sustained bullish or bearish trends.
Momentum & Strength : Evaluate the speed and force of price movements to identify strong, actionable trends versus weaker signals.
Adaptive Calculations : Dynamically adjust to volatility and asset-specific factors, ensuring reliable performance.
By integrating these indicator classes, the strategy delivers a cohesive, adaptable system for confident trading decisions.
Customizability
The strategy has a core trading logic for long and short positions, with optional supplementary logic users can toggle to adjust its behavior for specific assets. This simple design skips complex tweaks, letting users easily adapt it to various cryptocurrencies or trading styles, like momentum or trend-following, while keeping it user-friendly and flexible.
Trend Strength
The strategy uses bar color for trend strength to reflect price trends and momentum based on its 8 indicators. Green bars signal a strong upward trend with bullish momentum, while red bars indicate a downward trend or crash. This color-coding helps traders quickly identify market conditions for better entry and exit decisions. Note that the bar color is a lagged indicator, reflecting past price movements rather than real-time shifts.
Metrics
The Silver Strategy offers user-friendly metrics integrated into TradingView, displaying the strategy’s performance directly on the time series screen. These metrics provide a clear summary of historical results, enabling users to assess and customize the strategy for each asset based on its past performance. Key features include:
Sortino Ratio to assess risk-adjusted returns with a focus on downside risk
Sharpe Ratio to measure overall return per unit of risk.
Profitability indicates the success rate of trades
Net Profit highlights the total gains achieved over time.
Class rating , reflecting its overall performance quality.
By analyzing these metrics, users can make data-driven decisions when adjusting the strategy’s logic flags—such as toggling Logic1 or Logic9—to optimize its behavior for different cryptocurrencies or market conditions, ensuring better alignment with their trading objectives.
BTCUSD
SOLUSD
ETHUSD
🔵 Usage
Tailor and Test: Create a customized strategy for any cryptocurrency by toggling logic flags (e.g., Logic1 for trend focus, Logic9 for momentum filters) to suit your trading style. Use the provided metrics to test historical performance—evaluating risk-adjusted returns, win rate, and overall gains—and refine your setup before deploying the strategy in live markets.
Risk Management : Implement robust risk controls by setting appropriate position sizes, using stop-loss orders, and adjusting trade frequency based on market volatility. This ensures the strategy aligns with your risk tolerance and financial goals, especially in the unpredictable crypto market.
Disclaimer : Past results, as reflected in the metrics, do not guarantee future performance. Market conditions, volatility, and asset behavior can change, so always trade with caution and adapt to current trends.
Silver Strat is a specific tool to help managing a portfolio mainly cryptocurrencies. This is a basic version, if you like this one, appreciate it and would like to support my work a PRO version of this strategy would be available version, kindly drop me a DM.
Wave Analyzer - Bobal [hamgkia]The Bobal tool is a volume-based wave analyzer designed to highlight the effort behind price movement within trend waves. It is built with a focus on clarity, speed of response, and a Wyckoff-inspired philosophy, where volume and trend direction are deeply intertwined.
This script offers a unique visualization of directional volume flow — up or down — in clearly segmented waves, allowing traders to assess who is in control and how strong their effort is. It does this by calculating dynamic trend waves, accumulating volume within those waves, and comparing volume to volatility for normalization.
🔶 WHAT'S INCLUDED
Detects directional waves based on your selected moving average (SMA, EMA, WMA, or HMA).
Accumulates volume within each wave, creating a distinct "volume block" per wave.
Normalizes volume by ATR (optional) to adjust for current market volatility.
Applies a power function to volume strength for dynamic contrast (stronger waves stand out visually).
Plots volume histograms in real-time: green/orange for up waves, red/fuchsia for down waves.
Optional - displays trend strength background based on recent price expansion vs ATR.
🔷 HOW IT WORKS
Wave Definition
A wave is defined as a sequence of bars moving in the same direction based on a selected moving average:
If the MA rises → uptrend wave
If the MA falls → downtrend wave
Wave resets on direction change.
Volume Accumulation
Volume is accumulated within each wave, starting fresh at the beginning of each new wave. This clean segmentation reveals whether the current wave is attracting participation (volume).
Normalization (Optional)
Volume can be normalized by the ATR (Average True Range) to account for volatility differences across symbols and timeframes. This makes comparisons more meaningful.
Strength Calculation
Volume strength is calculated by comparing current wave volume to the maximum over a recent period (default: 50 bars), and applying a pow() function for expressive scaling. This emphasizes high-effort waves while de-emphasizing noise.
🔶 USAGE
A new wave starts when the selected MA (SMA, EMA, WMA, HMA) changes direction.
Read the Strength of the Current Wave
🟩 — strong up
🟧 — weak up
🟪 — weak down
🟥 — strong down
Look for these setups
📉 Strong down wave 🟥 followed by weak up wave 🟧 — possible lower high, selling may resume.
📈 Strong up wave 🟩 followed by weak down wave 🟪 — possible bullish absorption, look for long setups.
Wave is long, but volume fades (bars shrink) — trend may be slowing, consider tightening stops or avoiding late entries.
Trend is increasing, volumes are growing — potential entry points.
Use Background Strength for Context
🟩 — bright green — strong bullish
🟥 — bright red — strong bearish
Any dim or translucent color — no clear trend
What NOT to do
Don’t enter blindly on volume spikes — check direction and trend background first.
Don’t treat every strong bar as a signal — look for sequences and transitions, not isolated bars.
Ideal Use Cases
Confirming trend strength before entry.
Avoiding fakeouts in low-volume waves.
Spotting transitions in buyer/seller dominance.
Reading market participation in real time.
avgPriceVolumeThis is a more precise indicator than Moving Average (MA). Unlike MA which displays the average price, the avgPriceVolume indicator displays the average price along with its volume. So this indicator is a precise line based on the real market conditions.
Volume LevelFirst and only, volume is given a level and identified as bullish or bearish.
Level A means very strong
Level B means strong
Level C means neutral
Level D means weak
Level E means very weak
And there are alerts for volume identification of Level A Bullish and Level A Bearish.
In addition, there is a line feature to identify whales and retailers transactions. For more complete information, read my indicator called "Whales & Retailers Level", a
智能交易系统-专业增强版Trend-Stable Profit Indicator
This trend-following trading system executes trades aligned with market trends, featuring rigorous stop-loss alert mechanisms. Arrow signals indicate long/short entry positions, while three distinct circle markers represent exit signals - effectively stabilizing profitability and risk management.
Key features:
Trend-aligned trading strategy
Strict stop-loss alerts
Clear visual signals: → Arrows for entry (long/short) → Three circle types for exits
Profit stabilization
Risk-controlled trading
The translation maintains all technical trading concepts while presenting the information in proper financial English terminology suitable for professional trading platforms and international audiences.
Trading SessionsTrading Sessions Indicator Description
Overview:
The “Trading Sessions” indicator is a customizable Pine Script (version 6) tool designed for TradingView to visualize major trading sessions (Tokyo, London, New York) on intraday charts. It highlights session periods with boxes, marks key price levels (open, close, high, low, and average prices), and provides detailed session information via labels. The indicator is highly configurable, allowing users to tailor its appearance and functionality to their trading needs.
Key Features:
1. Session Visualization:
- Displays up to three trading sessions (Tokyo, London, New York) as colored boxes on the chart, representing the session’s high and low price range.
- Each session is configurable for time, timezone, name, and color, with defaults set to standard market hours (e.g., Tokyo: 09:00-15:00 Asia/Tokyo, London: 08:30-16:30 Europe/London, New York: 09:30-16:00 America/New_York).
- Supports IANA timezone database names (e.g., “America/New_York”) for accurate handling of daylight savings and other time adjustments.
2. Price Level Markers:
- Open/Close Lines: Optional dashed lines mark the session’s open and close prices, with a filled area between them for visual clarity.
- High/Low Lines Optional dashed lines indicate the session’s highest and lowest prices, updating dynamically as new extremes occur.
- Average Price Line An optional dotted line shows the average closing price across the session’s bars, useful for identifying the session’s central tendency.
3. Session Information Labels:
- Labels below each session box display:
- Session name (e.g., “Tokyo”).
- Tick range (high minus low, in minimum tick increments).
- Average price (mean of closing prices within the session).
- Each component is toggleable to reduce chart clutter.
4. Customization Options:
- Session Settings:
- Enable/disable individual sessions.
- Customize session names, time ranges, timezones, and box colors.
- Line Styling:
- Choose line styles (Solid, Dashed, Dotted) for open/close, high/low, and average lines.
- Toggle between using the session’s box color or a custom color for each line type.
- Custom color pickers for open/close, high/low, and average lines when not using session colors.
- Display Controls:
- Toggle visibility of session names, open/close lines, high/low lines, tick range, and average price displays.
- All settings are organized into intuitive groups (e.g., “First Session”, “Line Style Settings”) for easy configuration.
5. Technical Details:
- Uses Pine Script’s `box`, `line`, `label`, and `linefill` objects to render sessions, with limits set to 500 boxes, lines, and labels to handle dense charts.
- Automatically resets sessions on daily timeframe changes to ensure accurate session boundaries.
- Restricted to intraday timeframes (e.g., 1-minute, 1-hour) with an error message if used on daily, weekly, or monthly charts.
- Efficiently manages resources by updating active sessions and clearing inactive ones.
Use Cases:
- Forex and Equity Traders: Visualize high-volatility periods for major markets to time entries and exits.
- Session Analysis: Identify key price levels (open, close, high, low, average) to assess session behavior and range.
- Custom Strategies: Adapt session times and styles to non-standard markets or personal trading schedules.
Limitations:
- Not compatible with non-intraday timeframes (daily, weekly, monthly).
- Maximum of three sessions to maintain performance and chart clarity.
- Line styles and colors are uniform across sessions for simplicity, though colors can be customized independently of session colors.
How to Use:
1. Add the indicator to your TradingView chart.
2. Configure session settings (time, timezone, color, name) in the indicator’s inputs.
3. Adjust line styles and colors in the “Line Style Settings” group to match your preferences.
4. Toggle visibility of lines, labels, and data displays to focus on relevant information.
5. Apply to an intraday chart to see session boxes and price markers in action.
This indicator is ideal for traders seeking a flexible, visually clear way to track trading sessions and key price levels, with extensive customization to suit various markets and trading styles.
Traffic Lights ✨A simple indicator to identify HFT alignment for trading expansion.
There is an option to use penultimate candle as well.
OuterBar [DTMM]OuterBar Indicator Description
The OuterBar Indicator is a powerful technical analysis tool for TradingView, based on the detection and visualization of "Outer Bars".
The detection of Outer Bars is based on comparing the high/low of each candle to the range of the last confirmed Outer Bar. A new Outer Bar is formed when the current candle's close exceeds the prior high or low, depending on the direction. Inner Bars are detected when price remains within the Outer Bar range. The zone visualizations are extended from the start of one Outer Bar to the next, with optional midline and labeling
What is an Outer Bar?
An Outer Bar is a price candle whose closing price is outside the range of the previously identified Outer Bar. The indicator distinguishes between positive Outer Bars (closing price above the high of the previous Outer Bar) and negative Outer Bars (closing price below the low of the previous Outer Bar).
Tested and recommended by professionals:
We are the main provider of trading indicators for Oliver Klemm, one of the most renowned traders in Germany and the entire DACH region. Our indicators are used daily in real-money trading by successful professional traders and are continuously improved. You benefit from the same professional technology that is used and recommended by leading market experts.
Main Features
1. Automatic Detection of Outer Bars
- Identifies candles that exceed the previous Outer Bar's high or low
- Marks Outer Bars with customizable colors (default: magenta for positive and blue for negative)
- Optional: Marking of "Inner Bars" (candles between Outer Bars)
2. Visual Price Range Analysis
- Displays horizontal lines at the high, low, and midpoint of the current Outer Bar
- Price labels with percentage values (0%, 50%, 100%)
- Optional display of arrows showing the direction of Outer Bars
3. Zone Visualization
- Draws colored zones for each Outer Bar
- Keeps the last X Outer Bars on the chart (configurable)
- Zone area is precisely displayed from the beginning of an Outer Bar to the next
4. Advanced Customization Options
- Colors for positive/negative Outer Bars and Inner Bars
- Transparency for zones and zone borders
- Number of Outer Bars to retain
- Various display options (arrows, lines, price labels, etc.)
Applications
The OuterBar Indicator is particularly useful for:
Identifying key price reversal points: Outer Bars often indicate a trend reversal or continuation
Determining support and resistance levels: The indicator's horizontal lines represent important price levels
Visualizing price impulses: The sequence of Outer Bars can illustrate the strength and direction of price movements
Multi-timeframe analysis: Applicable across different time frames (minutes, hours, days)
Unique Strengths
Clear visual representation: Color-coded candles and zones make price movements immediately recognizable
Flexible configuration: Adaptable to different trading styles and markets
Historical analysis: Retains the last X Outer Bars to identify long-term patterns
Easy interpretation: Visual representation of important price points understandable even for beginners
The OuterBar Indicator is based on the concept that significant price movements are often characterized by breakouts from the previous trading range. By visualizing these Outer Bars and their relationship to each other, the indicator provides valuable insight into market structure and potential trend reversals.
Daily LevelsOverview:
The Daily Levels indicator plots key price levels from the previous trading day, including the high, low, median (pivot), and projected extensions. These levels help traders identify potential support/resistance zones and anticipate breakout or reversal opportunities.
Key Features:
✅ Previous Day High & Low – Visualizes the prior day’s high and low as dynamic support/resistance levels.
✅ Median (Pivot) Line – Calculates the midpoint between the previous day’s high and low, acting as a key intraday reference.
✅ Projected Levels – Extends the high/low range symmetrically above and below the median, highlighting potential breakout zones.
✅ Customizable Display – Toggle visibility, adjust colors, and modify line styles (solid, dotted, dashed).
✅ Price Labels – Clear on-chart labels showing exact price values for quick reference.
✅ Built-in Alerts – Get notified when price crosses any of the key levels.
How to Use:
Trend Identification: If price holds above the median, the bias is bullish; below suggests bearish momentum.
Breakout Trading: Watch for moves beyond the projected levels for potential continuation.
Mean Reversion: Fade moves toward the previous day’s high/low if the median holds as support/resistance.
Ideal For:
Day Traders – Intraday support/resistance levels.
Swing Traders – Context for multi-day trends.
Breakout/Reversal Strategies – Clear levels for trade triggers.
Settings Recommendations:
High/Low Lines: Use semi-transparent colors (e.g., green/red) for clarity.
Projections: Helpful for anticipating extended moves (e.g., teal for upper, orange for lower).
Alerts: Enable notifications for key crosses (e.g., median or high/low breaks).
PG (45 Min) - PROD v6This strategy combines familiar technical tools into a structured system designed for clean, high-probability setups on the 45-minute timeframe. It is modular, momentum-driven, and equipped with adaptive risk and drawdown control.
⸻
🔍 Core Logic & Indicators:
• Volume Filter: Confirms signals using volume above a 25-bar SMA.
• MACD Signal Logic: Tracks histogram color changes (not just crossovers), requiring two flips before entry triggers.
• HMA-Based CMO: Custom momentum logic using Hull MA of open/close; identifies overbought/oversold momentum at pivots.
• RSI Thresholds: RSI < 25 marks support zones; RSI > 75 flags potential resistance.
• Support Pattern Logic: Uses bar indexing to track valid double-signal support zones with volume confirmation.
• Price Drop Entry Filter: Entry only triggers if price dips 1% below support trigger and MACD momentum flips again.
⸻
📊 Rolling Profit Factor + Dynamic Position Multiplier:
The script calculates a rolling profit factor using the last 24 closed trades. This PF dynamically adjusts a position size multiplier to scale exposure based on recent performance:
• PF < 2.0 → No multiplier
• PF 2.0–3.0 → 1.0x
• PF 3.0–5.0 → 1.5x
• PF 5.0–7.0 → 1.75x
• PF > 7.0 → 2.5x
This approach helps adjust trade aggressiveness without manual tuning, aligning system behavior with real equity performance.
⸻
🔻 Drawdown Management:
Tracks both per-trade and rolling max drawdown:
• Monitors equity during open trades to track peak/trough
• Calculates per-trade drawdown and stores in a rolling array
• Applies rolling max drawdown as a dynamic exit threshold after 1000 bars
• Prevents excessive risk by comparing real equity deviation against historical pain points
⸻
⚙️ Additional Features:
• Cascading take-profit logic reduces TP target slightly each bar
• Clean JSON-formatted alerts for both entries and exits
• No repainting, no security() lookaheads
• Alert payloads compatible with automation tools
⸻
🧪 Backtest Parameters:
• Initial capital: $100
• Trade size: $75 per trade
• Commission: 0.4%
• Slippage not included
• Timeframe: 45-min (designed for intraday swing setups)
31 Trades made over the Backtest Period (depends on your subscription). Running this live for the last 60 days.
📈 Super Indicator by TradeGlobal PRO 🚀📈 Super Indicator by TradeGlobal PRO 🚀
- Free Trial: 24 hours with ALL features (BUY/SELL signals, support/resistance, whale detection, trend alerts, and more).
- Paid Version: Unlock after trial with a passcode.
- Price: $49/month or $499/year (contact for details).
- To subscribe, contact:
- Email: nguyenanhtuan1981cm@gmail.com
- Telegram: @bomhair1981
- Phone: 0934002486
- © 2025 TradeGlobal. All rights reserved.
Unauthorized copying, distribution, or reverse-engineering is strictly prohibited.
Tactical FlowTactical Flow – Altcoin Swing Strategy with Trend Logic & Dynamic TP System
(Built for 1H timeframe altcoin trading)
🎯 Purpose
Tactical Flow is a swing trading strategy purpose-built for altcoins on the 1-hour timeframe. It targets clean trend continuation setups by combining non-repainting filters for direction, momentum, and volume with a real-time execution engine that strictly avoids same-bar reversals. It includes a dynamic take-profit system with real-time trade tracking and an integrated visual dashboard.
⚙️ Strategy Core Components
Each module was chosen for precision, trend clarity, and altcoin-specific price behavior.
🔹 1. White Line Bias
Defines market structure using the midpoint of recent high/low range.
→ Keeps you trading with the dominant structure.
🔹 2. Tether Trend Engine
Two mid-range bands (Fast & Slow Tether) act like a dynamic trend cloud.
→ Ensures trend direction is confirmed with structural layering.
🔹 3. ZLEMA Gradient Filter
A Zero Lag EMA of price that’s compared to its previous value for momentum slope.
→ Confirms the trend has actual energy behind it.
🔹 4. TEMA Micro-Flow
A smoothed directional signal to confirm price is accelerating, not just trending.
→ Filters out late or fading entries.
🔹 5. Volume Spike Filter
Confirms that breakouts are real by requiring volume > 1.5× median of previous candles.
→ Designed for altcoins to avoid fakeouts during random volatility.
🔹 6. RMI Trend Memory
Keeps track of the trend state over time, allowing for smoother transitions and fewer whipsaws.
→ Helps the strategy stay in trend longer and only reverse when confirmation is strong.
🔹 7. Reversal Cooldown Logic
Exits a trade, then waits 1 full bar before taking a reversal entry.
→ Avoids common backtest false positives where entries and exits occur on the same candle.
💸 Trade Management – TP1/TP2 Logic
TP1 = 50% closed when price hits target 1
TP2 = full exit
Exits early if trend weakens
Supports dynamic reentry after TP2 if trend resumes
→ Keeps risk controlled while allowing position scaling in volatile altcoin swings.
📊 Strategy Dashboard
Visual interface shows:
Current Position (Long / Short / Flat)
Entry Price
TP1 and TP2 hit status
Bars since entry
Real-time Win Rate
Profit Factor
🧪 Backtesting & Execution Compliance
✅ Fully non-repainting
✅ Compatible with TradingView's deep backtesting
✅ Uses strategy.exit with limit logic for accurate TP tracking
✅ No stop-loss — closes trades on trend weakening only
🔥 Best Use Case
Altcoin swing trades on 1H chart
Works well during trending periods with volume
Not designed for choppy or sideways conditions
Pairs well with watchlist scanners and heatmaps
智能交易系统-专业增强版Trend-Stable Profit Indicator
This trend-following trading system executes trades aligned with market trends, featuring rigorous stop-loss alert mechanisms. Arrow signals indicate long/short entry positions, while three distinct circle markers represent exit signals - effectively stabilizing profitability and risk management.
Key features:
Trend-aligned trading strategy
Strict stop-loss alerts
Clear visual signals: → Arrows for entry (long/short) → Three circle types for exits
Profit stabilization
Risk-controlled trading
The translation maintains all technical trading concepts while presenting the information in proper financial English terminology suitable for professional trading platforms and international audiences.
Forever Model [Pro+] (Sniper)Introduction
Forever Model (Sniper) is a clean, structured framework for visualizing internal liquidity to external liquidity rotations. It identifies shifts in market delivery by combining internal liquidity zones (Fair Value Gaps), divergence between correlated markets (Smart Money Technique), and lower timeframe orderflow changes (Orderblocks).
Designed for repeatability, the model helps analysts build confidence through familiarity, not complexity.
Rather than attempting to forecast direction, this model focuses on recognizing recurring patterns in delivery behavior across Timeframes. It presents a structured visual logic that can support manual analysis, with the aid of alerts that prompt analysts to investigate and validate potential price rotations.
The model is non-repainting, thoughtfully built to highlight past rotations once formed. It offers flexibility across assets and Timeframes, adapting to analysts' preferences while remaining consistent in its components.
Description
The model is organized into a three-part sequence. These three conditions form the visual foundation of the model. All parameters can be customized to match your preferred timeframe, session, and market:
Internal Range Liquidity Tag (IRL)
Price must interact with a defined internal inefficiency—typically a Fair Value Gap (FVG), which is an area between a three candle structure where price moves rapidly, leaving an imbalance that may later be revisited to be filled for efficiency.
Smart Money Technique Divergence Detected (SMT)
SMT transpires as a crack in correlation between two assets – this divergence is used to indicate potential shifts in price delivery.
SMT can be observed between two correlated assets, where one makes a lower low while the other holds a higher low (or conversely, one makes a higher high while the other forms a lower high).
Similarly, SMT can also occur between inverse correlated assets, where one makes a lower low while the other holds a lower high (or conversely, one makes a higher high while the other forms a higher low).
Change in State of Delivery (CISD)
After SMT occurs, the model identifies a CISD—a strong close engulfing the body of a previous directional candle that sweeps a short-term high or low. This suggests that price may be shifting from one delivery regime to another. The candle is labelled as an Orderblock (OB) candidate, with optional projected measures for better range of opportunity estimation.
Key Features
Model History Control
Controls how many past model formations appear on the chart, with a maximum of 40. Analysts may use shorter history for live charting or increase the count when studying past performance or recurring conditions.
When History is equal to 0, it will only show only live models in development, or nothing if no models are currently active.
Note: historical invalidated rotations are visualized through small markers, and may not display the model's components unless reviewed in Replay Mode. This mechanism keeps the chart clean, and allows the analyst to focus on the confirmed rotations.
Directional Bias Filter
Filters whether the model shows formations in only one direction or both. For example, selecting “Bullish” displays only internal range zones and divergence setups that meet criteria for upside movement. This feature is crucial for allowing analysts to align with higher Timeframe bias or studying unidirectional structures.
SMT Pair Input
The model compares your active chart with a second asset to detect SMT Divergence. You may manually enter a symbol (e.g., ES1!, BTCUSD, NZDUSD) or use Automatic SMT Pair Detection , which selects the most relevant correlated market. Inverse SMT inverts the logic, useful for negatively correlated pairs (e.g., gold vs dollar).
For example, although the Automatic SMT Pair Detection for CME_MINI:NQ1! is CME_MINI:ES1! , one may decide to use a leading stock in the NASDAQ such as NASDAQ:NVDA :
Timeframe Alignment
Defines which higher Timeframe the IRL is drawn from, and which lower Timeframe is used to evaluate the Model's conditions. These Timeframe Alignments can be selected individually to only showcase a specific combination of IRL and LTF Conditions; for a more dynamic approach, the "Automatic" option adjusts these pairings based on the current chart Timeframe. By selecting the "Custom" option, analysts can define and monitor their own preferred Timeframe Alignment.
Example: 5m Conditions ➞ 1H IRL vs. 4H Conditions ➞ Weekly IRL
Fair Value Gap (FVG) Visualization
Fair Value Gaps are areas where price moved quickly between two candles without overlap—these areas represent the IRL of the model, and are often revisited before continuing. Optionally, the analyst can decide to showcase the Consequent Encroachment (CE), the midpoint where price begins to fill the imbalance. Further, the analyst can maintain a cleaner chart by only showing FVG where SMT occurs, substantially limiting the number of drawings on the chart.
SMT Visualization
Draws visual lines connecting SMT points between the HTF reference points of the current chart's asset, and the SMT Pair asset. Helps analysts confirm divergence location and relationship at a glance, especially when reviewing multiple correlated pairs.
Liquidity Sweep Visualization
Most recent short-term liquidity swept, which resulted in a CISD. Marking this liquidity pool—a high or low that has been taken out—provides context and can give additional insight to evaluate the current market rotation.
Orderblock + Projections (OB)
When a CISD is recognized, an OB candidate is plotted. Projections from the OB can be displayed at customizable distances, serving as measurements for better range of opportunity estimation.
External Range Liquidity (ERL)
External Range Liquidity refers to price levels that sit beyond internal structures—typically local highs or lows that may be revisited after a retracement, for continuation.
Session Filters + Timezone Control
Define up to four time blocks (e.g., London Open, NY AM, PM session, Asia) for when the model is active. Timezones are fully customizable, supporting global use cases and precise filtering of formations to sessions with expected volume or cleaner structure.
Information Table
A compact, floating panel is available to display key model parameters in real time: Timeframe Alignment, Bias Direction, Active SMT Pair, Time Filter Conditions, Date.
This feature provides immediate context under which the model is operating — especially useful during active chart review or multi-pair monitoring. The table can be repositioned, resized, or disabled entirely depending on visual preference.
Model Markers & Backtest Support
The model includes a visual marker system to support chart review and backtesting. These overlays provide reference points for past structure, showcasing the following:
Reaching an OB Projection after revisiting the OB
Reaching the External Range Liquidity after revisiting the OB
Reaching an OB Projection without revisiting the OB
Reaching the External Range Liquidity without revisiting the OB
Invalidating the detected OB
Fully Automated Framework: all these components, when put together in the Forever Model ($niper), yield a clean and simple approach to studying and observing market rotations, empowering analysts in seeing the market through $niper's point of view. Each component is customizable to the analyst's liking to match their unique visual and technical preferences.
Usage Guidance:
Add Forever Model ($niper) to your TradingView chart.
Select your preferred SMT Pair, Timeframe Alignments, Model Style, and Time Filters.
Automate your analysis process with Forever Model (Sniper) and leverage it into your existing strategies to fine-tune your view through Sniper's point of view.
Terms and Conditions
Our charting tools are products provided for informational and educational purposes only and do not constitute financial, investment, or trading advice. Our charting tools are not designed to predict market movements or provide specific recommendations. Users should be aware that past performance is not indicative of future results and should not be relied upon for making financial decisions. By using our charting tools, the purchaser agrees that the seller and the creator are not responsible for any decisions made based on the information provided by these charting tools. The purchaser assumes full responsibility and liability for any actions taken and the consequences thereof, including any loss of money or investments that may occur as a result of using these products. Hence, by purchasing these charting tools, the customer accepts and acknowledges that the seller and the creator are not liable nor responsible for any unwanted outcome that arises from the development, the sale, or the use of these products. Finally, the purchaser indemnifies the seller from any and all liability. If the purchaser was invited through the Friends and Family Program, they acknowledge that the provided discount code only applies to the first initial purchase of the Toodegrees Premium Suite subscription. The purchaser is therefore responsible for cancelling – or requesting to cancel – their subscription in the event that they do not wish to continue using the product at full retail price. If the purchaser no longer wishes to use the products, they must unsubscribe from the membership service, if applicable. We hold no reimbursement, refund, or chargeback policy. Once these Terms and Conditions are accepted by the Customer, before purchase, no reimbursements, refunds or chargebacks will be provided under any circumstances.
By continuing to use these charting tools, the user acknowledges and agrees to the Terms and Conditions outlined in this legal disclaimer.
MACD with Signals. Non-editable version. NACHOMIXCRYPTODescription of the "MACD with Signals. Non-editable version. NACHOMIXCRYPTO" Indicator
The "MACD with Signals. Non-editable version. NACHOMIXCRYPTO"
is a technical analysis indicator built in Pine Script (version 6) for TradingView. It is based on the traditional Moving Average Convergence Divergence (MACD) indicator but includes additional features such as signal labels on the main chart and two informational tables displayed in a separate window below the price chart (overlay=false). This version is designed to be fully non-editable, meaning users cannot modify its core parameters or visual settings through the input menu. Below is a detailed breakdown of its components, functionality, and purpose:
1. Purpose
This indicator aims to assist traders in identifying potential buy ("LONG") and sell ("SHORT") opportunities by analyzing crossovers between the MACD line and the signal line. It enhances the standard MACD by:
Labeling signals directly on the price chart.
Filtering signals as "TRUE" or "FALSE" based on their position relative to the zero line.
Predicting possible crossovers within the next 4 bars.
Displaying current and predicted signals in two separate tables.
The "non-editable" nature ensures that the indicator's settings (MACD lengths and source) remain fixed and hidden from users, making it a standardized tool for public use without customization options.
2. Components
Fixed Parameters
Fast EMA Length: Set to a fixed value (not visible or editable), representing the shorter-term exponential moving average (EMA).
Slow EMA Length: Set to a fixed value (not visible or editable), representing the longer-term EMA.
Signal Line Length: Set to a fixed value (not visible or editable), determining the smoothing period for the signal line.
MACD Source: Fixed to the closing price (close), not visible or editable in the input menu.
These values are embedded in the code and cannot be altered by users, ensuring consistency in how the MACD is calculated.
Informative Message
A static message appears in the input menu: "This is the public version that does not allow edits or signal modifications." This informs users that no customization is available.
MACD Calculations
MACD Line (macdLine): The difference between the fast EMA and slow EMA.
Signal Line (signalLine): An EMA of the MACD line, smoothed over the fixed signal line length.
Histogram (histogram): The difference between the MACD line and the signal line, visualized as columns.
Zero Line
A horizontal line at 0 (zeroLine) serves as a reference point to distinguish bullish (above 0) and bearish (below 0) conditions.
Slope Calculations
MACD Slope (macdSlope): The change in the MACD line from the previous bar.
Signal Slope (signalSlope): The change in the signal line from the previous bar.
These slopes are used to predict potential crossovers.
Crossover Prediction
Next 4 Bars Prediction (crossInNext4Bars): Estimates if the MACD line and signal line will cross within the next 4 bars based on their current values and slopes.
Signal Conditions
Buy Signal (longCondition): Triggered when the MACD line crosses above the signal line (ta.crossover).
Sell Signal (shortCondition): Triggered when the MACD line crosses below the signal line (ta.crossunder).
Tables
Current Signal Table: Positioned at the bottom-right corner with a blue border, displaying the active signal.
Next Signal Table: Positioned at the top-right corner with an orange border, showing the predicted signal.
Labels
Labels appear on the main price chart at the price level (yloc.price) with fixed styles and colors:
"LONG": Green background, white text, upward arrow style (label.style_label_up).
"SHORT": Red background, white text, downward arrow style (label.style_label_down).
"FALSE.LONG": Aqua background, white text, upward arrow style.
"FALSE.SHORT": Fuchsia background, white text, downward arrow style.
3. Functionality
MACD Calculation:
The indicator calculates the MACD using the fixed fast EMA, slow EMA, and signal line lengths applied to the closing price.
Signal Generation:
Buy Signal ("LONG" or "FALSE.LONG"):
If the MACD line crosses above the signal line:
"LONG" if the MACD line is above the zero line (valid bullish signal).
"FALSE.LONG" if below the zero line (potentially misleading).
Sell Signal ("SHORT" or "FALSE.SHORT"):
If the MACD line crosses below the signal line:
"SHORT" if the MACD line is below the zero line (valid bearish signal).
"FALSE.SHORT" if above the zero line (potentially misleading).
These signals are displayed as labels on the price chart and in the current signal table.
Crossover Prediction:
The indicator analyzes the slopes of the MACD and signal lines to predict if a crossover is likely within 4 bars:
"POSSIBLE: LONG" if the MACD line is trending upward relative to the signal line.
"POSSIBLE: SHORT" if trending downward.
This prediction is shown in the next signal table.
Visualization:
Separate Window:
Histogram: Columns with dynamic colors (dark green/light green above zero, dark red/light red below zero) based on value and trend.
MACD Line: Green line with a thickness of 2.
Signal Line: Red line with a thickness of 2.
Zero Line: Yellow horizontal line at 0.
Tables: Current signal (bottom-right, blue frame) and next signal (top-right, orange frame) with white text and background colors matching the signal type.
Main Chart: Labels indicating "LONG", "SHORT", "FALSE.LONG", or "FALSE.SHORT" at the price level of the triggering bar.
4. Visual Output
Histogram: Green above the zero line, red below, with shades varying based on whether the histogram is increasing or decreasing.
Lines: Green MACD line, red signal line, and yellow zero line.
Labels: Fixed colors and styles on the price chart.
Tables:
Current signal table: Green for "LONG", red for "SHORT", aqua for "FALSE LONG", gray for "NO SIGNAL".
Next signal table: Green for "POSSIBLE: LONG", red for "POSSIBLE: SHORT", gray for "NO SIGNAL".
5. Usage
Target Audience: Traders looking for a simple, pre-configured MACD-based tool to identify entry and exit points without needing to adjust settings.
Trading Style: Suitable for scalping or swing trading, with the added benefit of crossover predictions for proactive decision-making.
Non-editable Design: The fixed parameters and lack of customization ensure consistent behavior across all users, making it ideal for public distribution.
6. Limitations
No Customization: Users cannot adjust MACD lengths, source, colors, or label styles, limiting flexibility.
Fixed Source: Relies solely on closing prices, which may not suit all trading strategies.
Prediction Accuracy: The 4-bar crossover prediction depends on current trends and may not always be reliable in choppy markets.
False Signals: While filtered by the zero line, false signals can still occur in sideways markets.
7. Input Menu
The only visible element in the input menu is the "Information" field with the message: "This is the public version that does not allow edits or signal modifications." No other settings are exposed or adjustable.
In summary, the "MACD with Signals. Non-editable version. NACHOMIXCRYPTO" is a locked-down, user-friendly version of a MACD indicator tailored for public use. It provides clear buy/sell signals, predictive insights, and visual aids through labels and tables, all while maintaining a standardized, non-customizable configuration for simplicity and consistency.
XX Swing TraderThe "XX Swing Trader" indicator is a versatile tool for TradingView that helps traders spot trends and manage risk directly on the price chart. Here’s a thorough explanation of its stop-loss strategy, described in plain terms as if you’re looking at the chart without knowing the code details.
### Stop-Loss Strategy Overview
This indicator gives you a clear way to set and adjust your stop-loss as a trade unfolds. It starts with fixed yellow lines marking key price levels and then uses two sets of moving trend lines—one tight and one loose—to trail your stop-loss as the trend grows.
1. **Initial Stop-Loss: Yellow Lines**
- **What You See**: Horizontal yellow lines appear on the chart—one above the price (a peak high) and one below (a peak low).
- **What They Mean**:
- The yellow line below the price is a major support level—a price where buyers have stepped in before.
- The yellow line above the price is a major resistance level—a price where sellers have pushed back.
- **How to Use Them**:
- For a **buy trade (long)**: Place your initial stop-loss just below the yellow line under the price. If the price drops below this support, it’s a sign the trade might be failing.
- For a **sell trade (short)**: Set your initial stop-loss just above the yellow line over the price. If the price climbs past this resistance, the trade could be going against you.
- **Why It Works**: These lines act as your first safety net, locking in a fixed point to exit if the price moves the wrong way early on.
2. **Moving Trend Lines: Tight and Loose Stop Areas**
- **What You See**: Two sets of colored lines appear as the price starts trending:
- **Green Lines** show an uptrend (price moving up).
- **Red Lines** show a downtrend (price moving down).
- Each trend has two lines: one closer to the price (tight) and one further away (loose).
- **First Trend Line (Tight Stop Area)**:
- **Appearance**: This is the green or red line nearest to the price.
- In an uptrend, it’s a green line below the price.
- In a downtrend, it’s a red line above the price.
- **What It Means**: This tight line follows the price closely, adjusting to recent ups and downs. It’s like a shadow that sticks near the action.
- **How to Use It**:
- For a **buy trade**: Once the price starts climbing and the green tight line appears, move your stop-loss from the yellow support line to just below this green line. It keeps your risk small while letting the trade develop.
- For a **sell trade**: When the price drops and the red tight line forms, shift your stop-loss from the yellow resistance line to just above this red line.
- **Why It Works**: The tight line is your cautious trailing stop—it protects profits early and gets you out fast if the trend stalls.
- **Second Trend Line (Loose Stop Area)**:
- **Appearance**: This is the green or red line farther from the price.
- In an uptrend, it’s a green line lower than the tight one.
- In a downtrend, it’s a red line higher than the tight one.
- **What It Means**: This loose line moves with the price but gives it more breathing room, tracking the bigger trend rather than every little wiggle.
- **How to Use It**:
- For a **buy trade**: As the uptrend gains steam and the price keeps rising, adjust your stop-loss to just below this green loose line. It lets the trade ride longer without getting stopped out by normal dips.
- For a **sell trade**: As the downtrend strengthens, move your stop-loss to just above the red loose line, allowing the price to bounce a bit without ending the trade.
- **Why It Works**: The loose line is your patient trailing stop—it’s great for bigger moves, giving the trend space to grow while still keeping you safe.
### How It Plays Out on the Chart
- **Starting a Trade**: You might enter a buy when the price bounces off the yellow support line or a sell when it rejects the yellow resistance line. Little yellow dots might also pop up to hint at trend changes.
- **Early Trend**: Once the trend kicks in (green lines for up, red for down), shift your stop-loss to the tight line. This keeps you close to the action.
- **Strong Trend**: As the price keeps trending, slide your stop-loss to the loose line. This locks in more profit while letting the trade run.
### Visual Guide
- **Yellow Lines**: Fixed high and low markers—your starting stop-loss.
- **Green Tight Line**: Close below the price in an uptrend—your early trailing stop.
- **Green Loose Line**: Further below in an uptrend—your longer-term stop.
- **Red Tight Line**: Close above the price in a downtrend—your early trailing stop.
- **Red Loose Line**: Further above in a downtrend—your longer-term stop.
This step-by-step system—yellow lines to tight trend lines to loose trend lines—helps you manage risk smartly, from the trade’s first moments to its full potential.
Custom Price Levels x20Add up to 20 custom levels to your chart. You can select line type, color & thickness