Wavelet Smoothed Moving Average (TechnoBlooms)Wavelet Smoothed Moving Average (WSMA) is a part of the Quantum Price Theory (QPT) Series of indicators.
Overview:
The Wavelet Smoothed Moving Average (WSMA) is a trend-following indicator inspired by multi-level Haar Wavelet decomposition. Rather than using traditional wavelet basis functions, it emulates the core wavelet concept of multi-resolution analysis using nested simple moving averages (SMA).
How It Works:
WSMA applies three levels of smoothing:
• Level 1: SMA on price (base smoothing)
• Level 2: SMA on Level 1 output (further denoising)
• Level 3: SMA on Level 2 output (final approximation)
Why Use WSMA:
• Multi-Level Smoothing: Captures price structure across multiple time scales, unlike single-length MAs.
• Noise Reduction: Filters out short-term volatility and focuses on the underlying trend.
• Low Lag, High Clarity: Unlike traditional moving averages that react slowly or miss subtle shifts, WSMA’s layered smoothing delivers cleaner and more adaptive trend detection.
Unique Value:
• Wavelet-Inspired Design: Mimics core wavelet decomposition logic without the complexity of downsampling or basis functions.
• Perfect for Trend Confirmation: The final line (a3) can act as a trend filter, while the detail levels can help identify momentum shifts and volatility bursts.
• Fits Into Quantum Price Theory: As part of the QPT framework, WSMA bridges scientific theory with trading application, giving traders a deeper understanding of market structure and signal compression.
تحليل الموجات
Dynamic Trailing [Dakon]
Overview:
This indicator is a dynamic trend-following tool designed to detect potential shift points in market trends using an adaptive trailing system based on ATR and smoothed filters.
Key Features:
Adaptive trailing stop that responds to price volatility
Detects potential trend reversals by tracking breakout zones
Includes dual RMA lines for broader trend filtering
Customizable sensitivity and ATR period
Visual coloring to distinguish bullish and bearish momentum
Parameters:
Sensitivity: Controls how reactive the trail is to price changes
ATR Period: Defines the length of the ATR calculation for volatility
MA Lines: Two RMA lines for trend context and filtering
Purpose:
This indicator helps identify potential trend phase shifts. It is not a buy/sell signal by itself, but rather a contextual tool to combine with other indicators for more accurate trade decisions.
Manual Buy/Sell Price Level Alertsmiple idea once you set the price levels the secript is going to send the alerts to webhock
Levels 2.0 by SaltanovCrypto (Arrays - Up to 20 Levels)Script Description: Levels 2.0 by SaltanovCrypto – Dynamic Trading Levels for Multiple Exchanges
This Pine Script (version 6), titled "Levels 2.0 by SaltanovCrypto", is a highly versatile and customizable tool designed to display buy and sell levels with corresponding labels for cryptocurrency pairs across multiple exchanges, including Bybit, Binance, OKX, BingX, Coinbase, and others. The script is tailored to meet the specific needs of traders who rely on large limit orders or data from order book screeners, allowing them to visualize key trading zones with ease.
Core Features Based on Your Requirements
1. Universal Compatibility Across Exchanges:
- The script supports any exchange and any cryptocurrency pair in the format `exchange:pair` (e.g., `BYBIT:TIAUSDT`, `BINANCE:BTCUSDT.P`, `COINBASE:ADAUSD`).
- You can add as many pairs as needed in this simple format:
bybit:TONUSDT,
bybit:TRUMPUSDT,
coinbase:ADAUSD,
okx:ETHUSDT,
bingx:SOLUSDT,
binance:ZENUSDT.P,
binance:ZKUSDT.P,
bybit:AAVEUSDT.P,
bybit:AMIUSDT,
bybit:APTUSDT,
bybit:ATOMUSDT.P,
bybit:DYDXUSDT.P,
2. Dynamic Levels and Labels:
- All buy levels and sell levels for a single coin must be grouped together within one `else if` block. This ensures that all levels for a specific ticker are defined in a single, cohesive section.
- The first coin in the script starts with an `if ticker` statement, while all subsequent coins use `else if ticker`. This structure ensures proper conditional logic.
3. Correct Format for Adding Levels:
- The format for adding levels to the script should look like this:
if ticker == "BYBIT:WLDUSDT"
buyLevels.push(0.682)
buyLabels.push("31.04K")
else if ticker == "BYBIT:TIAUSDT"
buyLevels.push(2.285)
buyLabels.push("48.84K")
else if ticker == "BYBIT:MKRUSDT"
sellLevels.push(1400)
sellLabels.push("72.06K")
else if ticker == "BYBIT:GALAUSDT"
buyLevels.push(0.01355)
buyLabels.push("35.95K")
- Key Rule:
- The first coin always starts with `if ticker`.
- All subsequent coins use `else if ticker`.
4. Support for Futures (.P Pairs):
- The script works seamlessly with futures pairs that have `.P` appended to their names (e.g., `BINANCE:BTCUSDT.P`, `BINANCE:ETHUSDT.P`).
- Example:
else if ticker == "BINANCE:BTCUSDT.P"
buyLevels.push(90000)
buyLabels.push("Buy Level 1")
buyLevels.push(89000)
buyLabels.push("Buy Level 2")
sellLevels.push(92000)
sellLabels.push("Sell Level 1")
5. Unlimited Scalability:
- While the script currently supports up to 20 buy levels and 20 sell levels per ticker, it is designed to be easily extendable. You can add more variables (e.g., `buyLine21`, `sellLine22`) to accommodate additional levels if needed.
- Each level is drawn as a horizontal line on the chart, and labels are displayed next to the lines for better readability.
6. Customizable Appearance:
- The script provides full control over the visual appearance of the lines and labels:
- Line Color: Separate colors for buy and sell lines (e.g., green for buy, blue for sell).
- Line Width: Adjustable width for better visibility.
- Label Text Color: Customizable text color for labels.
- Label Background Color: Semi-transparent background for labels to improve contrast.
- Font Size: Adjustable font size for labels.
7. Offset for Lines:
- The script includes parameters to offset the lines left and right from the last bar, ensuring they don’t overlap with the price action or other indicators.
8. Neural Network Integration:
- Neural networks can be used to automate the process of extracting levels and labels from screeners and converting them into the required format for the script. For example:
- Train a neural network to parse screener data and output the levels and labels in the correct format.
- Automate the insertion of these levels into the script using scripts or tools that interact with the Pine Script editor.
---
Example Block with 5 Buy Levels and 5 Sell Levels
Here’s an example of how to define 5 buy levels and 5 sell levels for a single coin, such as `BINANCE:BCHUSDT.P`, in the simplified format:
else if ticker == "BINANCE:BCHUSDT.P"
sellLevels.push(337)
sellLabels.push("3.38M")
sellLevels.push(339)
sellLabels.push("3.41M")
sellLevels.push(340)
sellLabels.push("3.41M")
sellLevels.push(342)
sellLabels.push("3.45M")
sellLevels.push(345)
sellLabels.push("3.50M")
buyLevels.push(320)
buyLabels.push("417.92K")
buyLevels.push(318)
buyLabels.push("395.20K")
buyLevels.push(315)
buyLabels.push("372.48K")
buyLevels.push(312)
buyLabels.push("349.76K")
buyLevels.push(310)
buyLabels.push("327.04K")
---
Why This Script Meets Your Needs
- Flexibility Across Exchanges: The script supports any exchange and any pair, making it ideal for traders who monitor multiple platforms like Bybit, Binance, OKX, BingX, and Coinbase.
- Ease of Data Integration: The intuitive format for defining levels and labels makes it easy to integrate data from any screener or source.
- Scalability: With support for up to 20 levels per ticker (and the ability to extend this limit), the script can accommodate even the most complex trading strategies.
- Automation Potential: By leveraging neural networks, you can fully automate the process of extracting levels and labels from screeners, saving time and reducing manual effort.
---
Conclusion
The "Levels 2.0 by SaltanovCrypto" script is a powerful and flexible tool designed to meet the needs of modern traders. Its compatibility with any exchange, ease of integrating data from screeners, and potential for automation with neural networks make it an indispensable addition to any trader's toolkit. Whether you're monitoring large limit orders or analyzing key trading zones, this script provides the scalability, flexibility, and customization you need to succeed.
Fractal Wave MarkerFractal Wave Marker is an indicator that processes relative extremes of fluctuating prices within 2 periodical aspects. The special labeling system detects and visually marks multi-scale turning points, letting you visualize fractal echoes within unfolding cycles dynamically.
What This Indicator Does
Identifies major and minor swing highs/lows based on adjustable period.
Uses Phi in power exponent to compute a higher-degree swing filter.
Labels of higher degree appear only after confirmed base swings — no phantom levels, no hindsight bias. What you see is what the market has validated.
Swing points unfold in a structured, alternating rhythm . No two consecutive pivots share the same hierarchical degree!
Inspired by the Fractal Market Hypothesis, this script visualizes the principle that market behavior repeats across time scales, revealing structured narrative of "random walk". This inherent sequencing ensures fractal consistency across timeframes. "Fractal echoes" demonstrate how smaller price swings can proportionally mirror larger ones in both structure and timing, allowing traders to anticipate movements by recursive patterns. Cycle Transitions highlight critical inflection points where minor pivots flip polarity such as a series of lower highs progress into higher highs—signaling the birth of a new macro trend. A dense dense clusters of swing points can indicate Liquidity Zones, acting as footprints of institutional accumulation or distribution where price action validates supply and demand imbalances.
Visualization of nested cycles within macro trend anchors - a main feature specifically designed for the chartists who prioritize working with complex wave oscillations their analysis.
Dynamic Trade [Dakon]DYNAMIC TRADE
This indicator is designed for advanced trade management using three sets of long/short conditions, each with individual take profit logic. It helps traders track exit opportunities with precision across multiple strategies or layers of entries.
Features:
Multi-layer Take Profit system:
Separate TP logic for Long/Short from Condition 1, 2, and 3
Visual TP levels plotted directly on chart
ATR-based Trend Filter: Filters out trades that go against the current trend, using Average True Range logic to determine directional strength.
Alerts for TP hits (optional)
Noted :
Dynamic Take Profit Calculation: TP levels are calculated as a percentage above/below the entry price.
"Trend filter color is based on ATR and Signal condition to avoid bull and bear traps."
Long Entry: Enter only when all indicators show the same bullish color and signal confirmation
Short Entry: Enter only when all indicators show the same bearish color and signal confirmation
For better accuracy, it's recommended to use this indicator in conjunction with other tools or confirmation signals.
💡 Recommendation:
To increase the reliability of the signals, it's recommended to combine this indicator with other confirmation tools, such as the Support and Resistance indicator or momentum-based tools.
📊 TrendTracker Pro by Pinku📊 TrendTracker Pro by Pinku - A Powerful Trend Detection Tool 🚀
TrendTracker Pro by Pinku is a cutting-edge trading indicator designed to help traders identify the market’s trend with precision and clarity. Whether you're a beginner or an experienced trader, this tool simplifies the process of determining whether the market is in an uptrend, downtrend, or sideways.
🔍 Key Features:
Uptrend Detection 🔼: This indicator highlights when the market is moving upwards, signaling a potential buy opportunity.
Downtrend Detection 🔽: Identifies a downtrend in the market, indicating a possible selling opportunity.
Sideways Market ⏸️: The indicator also recognizes when the market is consolidating or moving sideways, allowing you to avoid risky trades during uncertain market conditions.
Customizable Settings: Adjust the Fast EMA and Slow EMA lengths, along with the sideways buffer percentage to fine-tune the trend detection based on your preferred trading strategy.
Table Display: The trend information is displayed in a clear and concise table on your chart, making it easy to track the market's direction at a glance.
Multiple Positions: You can choose where you want to position the trend table on your chart (Top Left, Top Right, Bottom Left, Bottom Right).
📈 How It Works:
The indicator uses a dual EMA strategy to detect market trends. By comparing the Fast EMA (20) and Slow EMA (50), it calculates the trend direction.
A buffer zone is applied to determine sideways market conditions when the difference between the two EMAs is minimal.
The result is a dynamic, easy-to-read trend table that updates in real-time as market conditions change.
💡 Perfect for:
Swing traders who want to capitalize on clear market trends.
Scalpers looking for precise and fast trend signals.
Trend-following traders who rely on moving averages and other technical indicators to make informed trading decisions.
New traders who are still learning how to identify trends and make profitable trades.
Why Use TrendTracker Pro?
In today’s fast-moving market, being able to identify trends quickly and accurately is crucial for success. TrendTracker Pro by Pinku streamlines this process by providing a simple yet powerful trend detection tool that can be used on any chart and time frame.
💥 Get Started Now: Simply add TrendTracker Pro by Pinku to your TradingView chart, adjust the settings according to your preference, and start seeing the market trends in real-time. Let it guide you to make smarter, more informed trading decisions.
Disclaimer:
Trading involves risk. Always do your own research and make decisions based on your risk tolerance and trading strategy.
This indicator does not guarantee profits and should be used as part of a broader risk management strategy.
Support & Resitance [Dakon]Support & Resistance
The Support & Resistance indicator is designed to help traders identify key support and resistance levels in their trades, using pivot points and support/resistance zones. This indicator assists in finding important price levels that can act as critical areas for decision-making in trading.
Key Features:
Support and Resistance: The indicator draws key support and resistance levels on the chart, helping you easily identify important price zones.
Support/Resistance Zones: It provides the ability to draw support and resistance zones around the key levels, with adjustable width based on a percentage of the highest/lowest range in a given period.
Sensitivity Adjustment: The sensitivity of support and resistance levels can be customized to fit your trading strategy.
Line Style Options: Choose from different line styles such as Solid, Dotted, or Dashed for visual preference.
Auto Expand: Option to enable the expansion of support and resistance levels, allowing them to remain visible on the chart even as time progresses.
High and Low Zones: Display support and resistance zones around the high/low price levels in a specified period.
Settings:
Up Color: Choose the color for support levels.
Down Color: Choose the color for resistance levels.
SR On/Off: Enable or disable support and resistance level plotting.
Zones On/Off: Toggle the support/resistance zone display.
Expand SR: Enable or disable the expansion of support and resistance levels.
S/R Sensitivity: Adjust the sensitivity of support and resistance levels.
Line Style: Select from Solid, Dotted, or Dashed line styles.
Line Width: Adjust the line width for support and resistance levels.
Zone Width: Adjust the width of the support and resistance zones.
How to Use:
This indicator can be used on any time frame and is easy to incorporate into your trading strategy to identify potential entry and exit points.
To optimize the indicator, adjust the sensitivity settings to align with your trading style.
The Support & Resistance indicator is a useful tool for traders looking to accurately pinpoint support and resistance levels, improving trading performance by leveraging critical price zones.
Dynamic Momentum BandsDynamic Momentum Bands
Introduction
The Dynamic Momentum Bands indicator is a powerful analytical tool designed to help traders identify the strength and direction of market momentum with greater precision. By combining key technical methodologies such as Relative Strength Index (RSI), adaptive volatility analysis, and customizable moving averages this indicator offers a multi-dimensional perspective on evolving market conditions. Whether in trending or ranging environments, Dynamic Momentum Bands aim to deliver actionable insights that enhance decision-making and risk management.
Key Features
Adaptive Band Calculation: The bands adjust dynamically in response to market conditions, allowing them to expand during volatile periods and contract during consolidation phases.
RSI-Driven Volatility Scaling: Integrates RSI analysis to scale the width of the bands based on momentum strength, creating a responsive and context-aware framework for trend evaluation.
Multiple Moving Average Options: Offers flexibility with various smoothing techniques, enabling users to tailor the indicator to their preferred strategies (e.g., EMA, SMA, WMA).
Smooth Gradient-Based Visualization: Enhances visual clarity with color gradients that reflect momentum intensity and directional bias, supporting intuitive interpretation of the market state.
How It Works
The Dynamic Momentum Bands indicator operates by combining three core components:
Adaptive Moving Averages: A central baseline is calculated using a selected moving average type. This baseline reflects the general price trend over a user-defined lookback period.
Volatility-Scaled Band Widths: Band distances from the central average are determined using an RSI-based volatility model. Higher RSI values and volatility readings cause the bands to widen, signaling stronger price momentum or potential breakouts.
Gradient Visualization: The bands are color-coded with gradient fills to reflect changes in momentum strength, providing real-time visual cues about potential trend shifts or exhaustion points.
This integration of methodologies allows the indicator to remain responsive to price action while maintaining a smooth, noise-filtered representation of market dynamics.
Conclusion
The Dynamic Momentum Bands indicator offers a versatile and insightful approach to tracking market momentum and volatility. Its adaptive design and multifactor methodology make it suitable for traders who seek a deeper understanding of price behavior beyond conventional moving average envelopes. By delivering a visually rich and responsive analysis tool, it empowers users to make more informed trading decisions across various market environments.
Disclaimer
This indicator is intended for educational and informational purposes only. It does not constitute financial advice or a recommendation to buy or sell any financial instrument. Users are advised to conduct their own analysis and consult with a licensed financial advisor before making any trading decisions.
DEMA SuperTrendDEMA SuperTrend
Introduction
The DEMA SuperTrend is a sophisticated trend-following indicator that integrates the speed and smoothness of the Double Exponential Moving Average (DEMA) with the classic SuperTrend methodology. Designed for traders seeking a more responsive alternative to standard trend indicators, the DEMA SuperTrend helps identify the prevailing market direction with minimal lag. It plots directly on the price chart, making it intuitive and accessible for real-time analysis across various timeframes and trading instruments.
Key Features
DEMA-Based Smoothing: Enhances traditional SuperTrend signals by applying DEMA, reducing signal lag and improving responsiveness to market changes.
Dynamic Trend Visualization: Clearly marks uptrend and downtrend phases with adaptive bands that follow price action.
Customizable Inputs: Users can tailor the ATR period, multiplier, and DEMA length to suit their strategy and trading style.
Visual Themes: Custom color schemes and line styles offer a personalized charting experience, supporting better clarity and decision-making.
How It Works
The DEMA SuperTrend calculates the Average True Range (ATR) to measure market volatility and applies a multiplier to determine the band offset. Instead of using a standard moving average, it employs the Double Exponential Moving Average to smooth the price series. The result is a responsive overlay that adjusts more quickly to market shifts compared to the traditional SuperTrend.
Uptrend: Triggered when the price closes above the DEMA-adjusted upper band.
Downtrend: Triggered when the price closes below the DEMA-adjusted lower band.
Band Switching: When a crossover occurs, the indicator switches the band to the opposite side of the price, signaling a potential change in trend direction.
Visual cues and color-coded zones on the chart enhance interpretability, making it easier for traders to react promptly to shifts in momentum.
Conclusion
The DEMA SuperTrend indicator combines the best of both worlds—robust trend-following logic and advanced smoothing—offering traders a powerful tool for identifying and tracking market trends with enhanced accuracy. Its versatility, responsiveness, and customization features make it suitable for both intraday and swing trading strategies.
Disclaimer
This indicator is intended for educational and informational purposes only. It does not constitute financial advice or a recommendation to buy or sell any financial instrument. Users should conduct their own research and risk assessment before making trading decisions.
BINANCE:BTCUSDT RSI📊 BTC RSI Deviation Visualizer
This indicator visualizes the deviation of BTC RSI from the neutral level (50) to highlight momentum extremes and potential reversal zones in a simplified and color-coded format.
It is specifically designed for traders who prefer to monitor RSI strength centered around neutrality (0 as midpoint) instead of absolute RSI values.
🧠 Concept
This tool subtracts 50 from the RSI of BINANCE:BTCUSDT, creating a deviation value:
java
복사
편집
RSI Deviation = RSI - 50
This approach allows traders to interpret bullish or bearish bias more intuitively:
RSI > 50 → positive deviation → bullish
RSI < 50 → negative deviation → bearish
The result is plotted as a zero-centered histogram, where color and shape dynamically indicate the strength of deviation.
🔍 Visual Components
Color-coded Histogram:
Gradient bar colors reflect the size and direction of deviation.
Strong bullish (+10 to +30): light to dark orange
Strong bearish (-10 to -30): light to dark blue
Extreme values (>|30|): highlighted in yellow
Reversal Zone Circles:
Green circles are plotted when RSI deviation exceeds +30
Red circles appear when deviation is below -30
Circles are rate-limited to avoid visual noise (one signal every 5+ bars)
Reference Lines:
0 line (neutral RSI 50)
±35 threshold lines for identifying abnormal momentum
🔧 Settings
RSI Length: Default 14 (can be adjusted based on your time frame or strategy)
✅ Use Cases
Momentum Strength Monitoring:
Identify when BTC is showing sustained buying/selling pressure above typical ranges.
Reversal Signal Layer:
Use the circle markers to flag possible overbought/oversold peaks in conjunction with other tools.
Trend Filtering:
Use deviation direction (+/-) as an additional filter for trend-based strategies.
🧩 Compatibility
Works on any time frame
Only uses BINANCE:BTCUSDT price
Lightweight and highly responsive
🔐 Originality & Value
Unlike traditional RSI plots, this indicator offers a centered and directional perspective on RSI momentum.
The design emphasizes trend pressure, not just overbought/oversold thresholds, making it highly compatible with scalping, swing, or trend-following strategies.
Money Wave [Dakon]This indicator combines Money Flow with the powerful Wave Trend Oscillator (TCI) to detect market momentum, potential reversals, and divergence setups.
The system is built for precise entry signals when both tools align — especially around the zero line crossovers and momentum color flips.
1️⃣ RSI + MFI Area (Money Flow Zone)
Based on the relative movement between open, close, high, and low, smoothed by HMA.
A sensitive oscillator that detects buying/selling pressure and volume aggression.
Visually plotted as a dynamic histogram:
🟢 Above 0: Buying Pressure (Green Gradient)
🔴 Below 0: Selling Pressure (Red Gradient)
2️⃣ Wave Trend Oscillator
A classic momentum oscillator based on channel deviation and EMA smoothing.
Helps to catch waves and trends early, and detect when momentum shifts.
Color-coded bars:
🟢 Uptrend Acceleration
🔴 Downtrend Acceleration
Buy Signal:
✅ MFI crosses above 0, AND/OR its changes from red to green
✅ Wave changes color to green (indicating upside momentum)
Sell Signal:
✅ MFI crosses below 0, AND/OR its changes from green to red
✅ Wave changes color to red (indicating downside pressure)
Cycle Trend - [Dakon]The Cycle Trend indicator is a visual tool designed to help traders identify the trend structure and potential cycle momentum in the market
Simple and Powerful indicator
It combines a custom channel based on RMA (Running Moving Average) of the high, low, and close prices with multiple long-term RMA lines to give a clearer view of the price's rhythm and trend behavior.
How It Works:
PAC Channel (Hi, Lo, Close):
Smoothed with RMA, the channel envelopes the price action to highlight the average high and low range over a configurable period (High Low Close)
The middle line (Close PAC RMA) represents the core direction of price movement.
Cycle Smoothing Lines (RMA 36 / 54 / 72):
These lines act as long-term filters for identifying trend phases and the momentum cycle.
Useful for spotting convergence/divergence and trend transitions.
✅ How to Use:
Trend Direction:
When price stays above the PAC and slope upwards → Bullish trend.
When price stays below the PAC and slope downwards → Bearish trend.
Support/Resistance:
The band (High and Low) act as dynamic support/resistance zones during trends or consolidation phases.
Cycle Timing:
The layered RMAs (36/54/72) help identify early trend changes, late-stage trends, or price compression zones.
Identifying cycle-based trends in crypto, forex, and stock markets
Regarded Cycle OscillatorOscillator that indicates the cycle high and low and provides a prediction for the next cycle using averages.
2x Marubozu Signal (Wick ≤ 30%)The 2x Marubozu Signal (Wick ≤ 30%) is a powerful, momentum-based price action indicator designed to catch strong bullish or bearish trends early. It scans for two consecutive Marubozu-style candles (where wicks are ≤ 30% of the total candle size) to identify moments of solid conviction from buyers or sellers.
This indicator detects:
Bullish Signal: Two green candles in a row, both with tiny wicks (≤ 30% of total candle size), indicating strong buying pressure and momentum.
Bearish Signal: Two red candles in a row, both with tiny wicks (≤ 30%), signaling dominant selling pressure.
The signal appears on the second candle — confirming the continuation move after initial momentum.
Key Features:
🔍 Wick Ratio Filter: Only triggers if both candles have upper and lower wicks less than or equal to 30% of the full candle range (High - Low).
📈 Visual Signal Arrows:
Green Up Arrow on bullish 2x Marubozu
Red Down Arrow on bearish 2x Marubozu
⚙️ Clean and Lightweight: No lag, perfect for intraday, swing, or trend-based strategies.
🎯 Use Case:
Trend Confirmation: Enter after the second strong Marubozu to ride breakout moves.
Momentum Filter: Combine with your existing strategy to filter only high-conviction price action setups.
Reversal Spotting: Catch reversals at key support/resistance when Marubozus form.
🧠 Pro Tips:
Works best on 15m–1D charts, especially after consolidation.
Combine with support/resistance, volume, or EMA/SMA zones for confirmation.
Avoid overtrading in choppy zones—this is a momentum-only tool.
🚀 Who’s It For?
Price Action Traders
Scalpers & Swing Traders
Trend-followers
Crypto, Forex, Stocks
📌 Author Note:
This indicator was crafted for traders who trust pure candle structure over lagging indicators. If you respect momentum, this is your edge.
Multi-SMA Dashboard (10 SMAs)Description:
This script, "Multi-SMA Dashboard (10 SMAs)," creates a dashboard on a TradingView chart to analyze ten Simple Moving Averages (SMAs) of varying lengths. It overlays the chart and displays a table with each SMA’s direction, price position relative to the SMA, and angle of movement, providing a comprehensive trend overview.
How It Works:
1. **Inputs**: Users define lengths for 10 SMAs (default: 5, 10, 20, 50, 100, 150, 200, 250, 300, 350), select a price source (default: close), and customize table appearance and options like angle units (degrees/radians) and debug plots.
2. **SMA Calculation**: Computes 10 SMAs using the `ta.sma()` function with user-specified lengths and price source.
3. **Direction Determination**: The `sma_direction()` function checks each SMA’s trend:
- "Up" if current SMA > previous SMA.
- "Down" if current SMA < previous SMA.
- "Flat" if equal (no strength distinction).
4. **Price Position**: Compares the price source to each SMA, labeling it "Above" or "Below."
5. **Angle Calculation**: Tracks the most recent direction change point for each SMA and calculates its angle (atan of price change over time) in degrees or radians, based on the `showInRadians` toggle.
6. **Table Display**: A 12-column table shows:
- Columns 1-10: SMA name, direction (Up/Down/Flat), Above/Below status, and angle.
- Column 11: Summary of Up, Down, and Flat counts.
- Colors reflect direction (lime for Up/Above, red for Down/Below, white for Flat).
7. **Debug Option**: Optionally plots all SMAs and price for visual verification when `debug_plots_toggle` is enabled.
Indicators Used:
- Simple Moving Averages (SMAs): 10 user-configurable SMAs ranging from short-term (e.g., 5) to long-term (e.g., 350) periods.
The script runs continuously, updating the table on each bar, and overlays the chart to assist traders in assessing multi-timeframe trend direction and momentum without cluttering the view unless debug mode is active.
Goichi Hosoda TheoryGreetings to traders. I offer you an indicator for trading according to the Ichimoku Kinho Hyo trading system. This indicator determines possible time cycles of price reversal and expected asset price values based on the theory of waves and time cycles by Goichi Hosoda.
The indicator contains classic price levels N, V, E and NT, and is supplemented with intermediate levels V+E, V+N, N+NT and x2, x3, x4 for levels V and E, which are used in cases where the wave does not contain corrections and there is no possibility to update the impulse-corrective wave.
A function for counting bars from points A B and C has also been added.
Supply & Demand with Candle SignalsUnlock the power of Supply & Demand Zones combined with high-probability Bullish/Bearish Engulfing patterns to spot strong market reversals and trends. This strategy helps identify key price levels where major market moves are likely to occur. By using Engulfing candlesticks within these zones, you can make more informed and accurate trading decisions, enhancing your chances of success. Ideal for traders looking for a robust technical approach to maximize market opportunities.
Multi Oscillator OB/OS Signals v3 - Scope TestIndicator Description: Multi Oscillator OB/OS Signals
Purpose:
The "Multi Oscillator OB/OS Signals" indicator is a TradingView tool designed to help traders identify potential market extremes and momentum shifts by monitoring four popular oscillators simultaneously: RSI, Stochastic RSI, CCI, and MACD. Instead of displaying these oscillators in separate panes, this indicator plots distinct visual symbols directly onto the main price chart whenever specific predefined conditions (typically related to overbought/oversold levels or line crossovers) are met for each oscillator. This provides a consolidated view of potential signals from these different technical tools.
How It Works:
The indicator calculates the values for each of the four oscillators based on user-defined settings (like length periods and price sources) and then checks for specific signal conditions on every bar:
Relative Strength Index (RSI):
It monitors the standard RSI value.
When the RSI crosses above the user-defined Overbought (OB) level (e.g., 70), it plots an "Overbought" symbol (like a downward triangle) above that price bar.
When the RSI crosses below the user-defined Oversold (OS) level (e.g., 30), it plots an "Oversold" symbol (like an upward triangle) below that price bar.
Stochastic RSI:
This works similarly to RSI but is based on the Stochastic calculation applied to the RSI value itself (specifically, the %K line of the Stoch RSI).
When the Stoch RSI's %K line crosses above its Overbought level (e.g., 80), it plots its designated OB symbol (like a downward arrow) above the bar.
When the %K line crosses below its Oversold level (e.g., 20), it plots its OS symbol (like an upward arrow) below the bar.
Commodity Channel Index (CCI):
It tracks the CCI value.
When the CCI crosses above its Overbought level (e.g., +100), it plots its OB symbol (like a square) above the bar.
When the CCI crosses below its Oversold level (e.g., -100), it plots its OS symbol (like a square) below the bar.
Moving Average Convergence Divergence (MACD):
Unlike the others, MACD signals here are not based on fixed OB/OS levels.
It identifies when the main MACD line crosses above its Signal line. This is considered a bullish crossover and is indicated by a specific symbol (like an upward label) plotted below the price bar.
It also identifies when the MACD line crosses below its Signal line. This is a bearish crossover, indicated by a different symbol (like a downward label) plotted above the price bar.
Visualization:
All these signals appear as small, distinct shapes directly on the price chart at the bar where the condition occurred. The shapes, their colors, and their position (above or below the bar) are predefined for each signal type to allow for quick visual identification. Note: In the current version of the underlying code, the size of these shapes is fixed (e.g., tiny) and not user-adjustable via the settings.
Configuration:
Users can access the indicator's settings to customize:
The calculation parameters (Length periods, smoothing, price source) for each individual oscillator (RSI, Stoch RSI, CCI, MACD).
The specific Overbought and Oversold threshold levels for RSI, Stoch RSI, and CCI.
The colors associated with each type of signal (OB, OS, Bullish Cross, Bearish Cross).
(Limitation Note: While settings exist to toggle the visibility of signals for each oscillator individually, due to a technical workaround in the current code, these toggles may not actively prevent the shapes from plotting if the underlying condition is met.)
Alerts:
The indicator itself does not automatically generate pop-up alerts. However, it creates the necessary "Alert Conditions" within TradingView's alert system. This means users can manually set up alerts for any of the specific signals generated by the indicator (e.g., "RSI Overbought Enter," "MACD Bullish Crossover"). When creating an alert, the user selects this indicator, chooses the desired condition from the list provided by the script, and configures the alert actions.
Intended Use:
This indicator aims to provide traders with convenient visual cues for potential over-extension in price (via OB/OS signals) or shifts in momentum (via MACD crossovers) based on multiple standard oscillators. These signals are often used as potential indicators for:
Identifying areas where a trend might be exhausted and prone to a pullback or reversal.
Confirming signals generated by other analysis methods or trading strategies.
Noting shifts in short-term momentum.
Disclaimer: As with any technical indicator, the signals generated should not be taken as direct buy or sell recommendations. They are best used in conjunction with other forms of analysis (price action, trend analysis, volume, fundamental analysis, etc.) and within the framework of a well-defined trading plan that includes risk management. Market conditions can change, and indicator signals can sometimes be false or misleading.