指標和策略
Zone Finder Draw 4 resistance lines and 4 support lines based on the 1-day closing candle. Then, close all indicators. On the following day, switch to the 5-minute timeframe and observe the intraday price action.
In the settings, a candle offset of 0 means the levels are shown based on the current closing candle. If you change it to 1, the values are shown based on the previous candle.
Use the current candle to set levels for the next day. Only change the offset setting if you want to backtest — otherwise, leave it unchanged.
For more use cases, feel free to contact me.
Spectra RS Inferno | QauntEdgeBIntroducing Spectra RS Inferno
-> Relative Strength Ranking Engine by QuantEdgeB
1. Purpose
Spectra RS Inferno is a multi-asset comparative ranking algorithm designed to surface the strongest-performing altcoins from a basket of up to 25 user-defined assets. Rather than scanning assets in isolation, it calculates relative strength pairwise across all assets producing a 625-signal matrix used to identify true outperformers.
This is a selection engine, not a trade signal generator. It helps you filter noise and allocate focus to statistically dominant assets.
2. Core Philosophy
-> Markets are competitive arenas - not everyone can be a winner at once. Spectra RS Inferno is built on the principle that
-> "Relative strength is the clearest signal of current dominance."
-> Unlike standalone momentum, this system assesses how each asset performs relative to others, making it invaluable for rotating markets, altcoin seasonality, and macro filtering.
3. Feature Architecture
1. Asset Universe
• You can define up to 25 assets (cryptos, forex, indices, etc.).
• Assets are ranked against each other using relative RSI scoring.
2. Relative Strength Score
• Assets are then ranked descendingly based on the sum of their relative strength against the other assets
4. Top Asset Selection
• The top 3 strongest assets (by score) are identified and stored.
• Their:
o Live Price
o Rate of Change (ROC)
o UNI2 Filter Signal
o Asset name
are extracted for use in allocation simulation and dashboard tables.
4. Signal Filtering
• Signals are further validated by a macro regime filter using a universal strategy, which acts as a universal market condition filter.
• The activation threshold is customizable.
• If none of the top assets pass the universal filter, the system allocates to cash (no position).
5. Equity Simulation Logic
✅ Simulation Mode (Optional)
• A non-executing equity curve is calculated to show what would happen if:
o You only held the top asset(s) passing the filter
o With no leverage and full capital rotation
⚙️ Simulation Settings
• Equity curve starts at 1 unit
• Updated at every bar post start date
• Drawdown, Sharpe, Sortino, and Omega ratios are calculated
• Allocation change count tracks how often the asset holding switches
⚠️ Disclaimer:
1. While the backtest feature demonstrates performance potential, this is not the recommended live trading mode. The best use-case for Spectra RS Inferno is asset selection, not execution. Combine it with your personal trading edge or system for superior risk/reward and entry timing.
2. Past performance is not indicative of future performance. Always conduct your own research before investing!
6. Visualization
1. Main Dashboard Table (Right)
-> Signal: ⬆️ if currently allocated; 🔄 otherwise
-> Returns: Total net return across all allocations
-> Max Drawdown: Worst equity drop during any allocation period
2. Backtest Panel (Left-Bottom)
-> Equity Max DD: Worst peak-to-trough drawdown
-> Sharpe Ratio: Return / Volatility (risk-adjusted)
-> Sortino Ratio: Return / Downside Deviation
-> Omega Ratio: Positive Return Area / Negative Return Area
-> Net Profit: Net % return from start
-> Position Changes: Allocation changes across time
3. Top 3 Display (Top Right)
-> Always shows the current top 3 ranked assets.
-> Updated live at every bar.
Color Coding
• Customizable themes ("Strategy", "Solar", "Warm", etc.)
• Active allocation is optionally color-coded per asset
7. Advanced Notes
Pairwise Architecture
The core RS function compares A/B performance via RSI, but the real magic happens in how this comparison is done for all possible asset pairs — creating a relational strength model.
Regime Filtering
Universal Strategy signal is used as a meta-filter, ensuring trades are only allowed in favorable environments. This reduces exposure to false positives in volatile markets.
Alerts
Built-in alert triggers notify when allocation changes - so you never miss a momentum shift.
✅ Ideal Use Case
• Traders or investors managing altcoin portfolios
• Rotational strategies
• Smart allocation across high momentum assets
• Avoiding laggards and weak performers
• Strategic analysis - not auto execution
🔚 Conclusion
Spectra RS Inferno is your momentum microscope, scanning relative strength with mathematical precision. Whether you're rotating into altcoins, leading sectors, or currencies, this tool answers the question:
1. "What’s winning the performance war right now?"
2. It’s not a trigger - it’s your targeting system.
3. Use it to deploy your capital only where strength is proven.
📌 Trade with Statistical Precision | Powered by QuantEdgeB
🔹 Disclaimer: Past performance is not indicative of future results.
🔹 Strategic Advice: Always backtest, optimize, and align parameters with your trading objectives and risk tolerance before live trading.
Intraday S/R Breaks (Clean)//@version=5
indicator("Intraday S/R Breaks (Clean)", overlay=true)
length = input.int(6, title="Volume MA Period")
showLines = input.bool(true, title="Show S/R Lines?")
showZones = input.bool(false, title="Show Zones?")
// Volume logic
volMA = ta.sma(volume, length)
// Fractal logic (basic 5-bar high/low with volume filter)
isFractalUp = high > high and high > high and high > high and high > high and volume > volMA
isFractalDown = low < low and low < low and low < low and low < low and volume > volMA
var float resistance = na
var float support = na
if isFractalUp
resistance := high
if isFractalDown
support := low
// Plot lines/zones
resLine = showLines and not na(resistance) ? line.new(x1=bar_index , y1=resistance, x2=bar_index, y2=resistance, extend=extend.right, color=color.red, width=1) : na
supLine = showLines and not na(support) ? line.new(x1=bar_index , y1=support, x2=bar_index, y2=support, extend=extend.right, color=color.green, width=1) : na
// Alerts
resBreak = ta.crossover(close, resistance)
supBreak = ta.crossunder(close, support)
alertcondition(resBreak, title="Resistance Break", message="Resistance Break!")
alertcondition(supBreak, title="Support Break", message="Support Break!")
if resBreak
label.new(bar_index, high, "📈 RESISTANCE BROKEN", style=label.style_label_down, color=color.red, textcolor=color.white)
if supBreak
label.new(bar_index, low, "📉 SUPPORT BROKEN", style=label.style_label_up, color=color.green, textcolor=color.white)
OI + Intraday Levels Tool for HoonMheeThis tool is designed specifically for drawing horizontal lines based on Hoonmhee trading data. It is not a complete trading strategy and does not generate any buy or sell signals.
MA cross X MAdiff<>atrfilter)📈 MA cross X MAdiff<>ATR filter
Smarter Trend Confirmation Using Adaptive Volatility Thresholds
🔍 What It Does
This indicator upgrades classic moving average crossovers by adding volatility awareness via ATR filtering. Instead of reacting to every small crossover, it waits for the distance between two moving averages to exceed a volatility-adjusted threshold, making signals more meaningful and less noisy.
⚙️ Core Logic
Calculates the difference between a Fast MA and a Slow MA.
Uses Average True Range (ATR) as a dynamic volatility filter.
Confirms trend only when MA difference exceeds:
diff > ATR × multiplier → Bullish
diff < -ATR × multiplier → Bearish
Otherwise: Neutral (gray zone)
The gray zone avoids false signals by detecting indecision or choppy markets.
🧠 Customizable Inputs
Choose any MA type independently for Fast and Slow:
SMA, EMA, WMA, VWMA, RMA, DEMA, TEMA, LSMA, Kijun
Control sensitivity via:
ATR Length
ATR Multiplier
✅ Why It Works
Reduces fake outs in ranging markets.
Adapts to volatility automatically.
Fully customizable for any asset or style.
Ideal for trend traders, momentum entries, or as a confluence layer.
SPY Current Price (Customizable)This indicator will show the current SPY pricing on any chart you're on so you don't have to bounce back and forth between charts and wonder where it currently is.
Stochastic Monitor [NT-DIGITALS]Stochastic Monitor is a visual multi-timeframe indicator that displays the Stochastic RSI (%K) across 11 timeframes, from 30 seconds to 1 day.
Each cell shows the current StochRSI value and changes color:
Green if the value is below 20 (oversold)
Red if the value is above 80 (overbought)
Black otherwise
It helps spot price extremes and potential reversals across multiple time horizons.
5-facher EMA mit individuellen EinstellungenThis is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
This is a good EMA.
This is a good EMA
This is a good EMA
MACD + RSI Strategy//@version=5
indicator("MACD + RSI Strategy", overlay=true)
// Parameter untuk MACD
macdShort = input.int(12, title="MACD Short Period")
macdLong = input.int(26, title="MACD Long Period")
macdSignal = input.int(9, title="MACD Signal Period")
// Parameter untuk RSI
rsiLength = input.int(14, title="RSI Period")
rsiOverbought = input.int(70, title="RSI Overbought Level")
rsiOversold = input.int(30, title="RSI Oversold Level")
// Hitung MACD dan RSI
= ta.macd(close, macdShort, macdLong, macdSignal)
rsi = ta.rsi(close, rsiLength)
// Sinyal Beli dan Jual
buySignal = ta.crossover(macdLine, signalLine) and rsi < rsiOversold
sellSignal = ta.crossunder(macdLine, signalLine) and rsi > rsiOverbought
// Plot sinyal di chart
plotshape(series=buySignal, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY")
plotshape(series=sellSignal, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL")
// Plot MACD dan Signal
plot(macdLine, color=color.blue, title="MACD Line")
plot(signalLine, color=color.orange, title="Signal Line")
hline(0, "Zero Line", color=color.gray)
Pattern Entry with Toggles - CleanThis script detects various candlestick patterns on a chart and marks potential entry points when certain conditions are met.
Script Contents:
1. Trend Filter (EMA)
Calculates an exponential moving average (EMA) with an adjustable period (emaPeriod).
Determines whether the market is currently trending up (isUptrend) or down (isDowntrend).
2. Pattern Detection (variable activation)
There are settings to individually activate or deactivate patterns for long (buy) and short (sell) positions:
Long Patterns: Bullish Engulfing, Morning Star, Hammer, Doji
Short Patterns: Bearish Engulfing, Evening Star, Shooting Star, Doji
3. Pattern Detection:
Automatically defined conditions to detect the respective candlestick patterns, e.g.:
Bullish Engulfing: Small red candle followed by a large green candle that "envelops" the previous one.
Morning Star: Third pattern that signals an uptrend.
Doji: Very small candle that indicates uncertainty.
The same applies to the short pattern variants.
4. Signal Generation:
If a pattern is detected and the trend direction is correct, a potential entry price (entry price) is set.
The whole process is limited to at least 5 bars (minBars) to avoid signals that are too close together.
5. Visualization:
Draws a marker ("Entry") on the chart for each valid signal, with the color corresponding to long or short.
What can you adjust in the settings (on/off switch)?
You can individually specify the following in the inputs:
Pattern Function Default Value
Enable Bullish Engulfing Enable for long entries true
Enable Morning Star Enable for long entries true
Enable Hammer Enable for long entries true
Enable Doji Enable for long entries true
Enable Bearish Engulfing Enable for short entries true
Enable Evening Star Enable for short entries true
Enable Shooting Star Enable for short entries true
Enable Doji (Short) Enable for short entries true
If you set one of these options to false, this pattern will no longer be considered when generating signals, regardless of whether it is present or not.
ICT - Trading ToolsThis indicator is designed for traders who follow the ICT (Inner Circle Trader) concepts. It brings together several essential tools for contextual and time-based market analysis, helping to identify key moments throughout the trading day and highlighting important areas of interest.
🕒 Market Sessions
The indicator allows you to configure up to four distinct sessions: Asia, London, New York AM, and New York PM.
Each session is fully customizable:
Start and end times
Background or line colors
Displayed title on the chart
This makes it easy to quickly identify the different phases of the trading day and spot potential accumulation or distribution zones specific to each session.
⏰ Key Times
You can enable the display of major time-based reference points, such as:
New York Open
New York Midnight
International Midnight (UTC)
These time markers are individually toggleable and fully customizable to suit various timing strategies.
📊 Macro
The indicator also displays the timing of macro - Only displayed on TF < M5
Each macro can be:
Enabled or disabled
Visually customized (text, color, display duration)
This feature helps you anticipate volatility spikes related to economic news and manage your risk accordingly.
🧭 Contextual Display
The indicator also includes several useful visual elements:
Previous Day High/Low (PDH/PDL)
Previous Week High/Low (PWH/PWL)
A customizable title and subtitle at the top of the chart (e.g., strategy or setup name)
Optional display at the bottom of the chart showing: Currency pair, Date, Current timeframe (The position of this info box is configurable)
Stock vs SPY % ChangeStock vs SPY % Change Indicator
This Pine Script indicator helps you compare a stock's price performance to the S&P 500 (using SPY ETF) over a user-defined period. It calculates the percentage price change of the stock and SPY, then displays the difference as a relative performance metric. A positive value (plotted in green) indicates the stock is outperforming SPY (e.g., dropping only 3% while SPY drops 10%), while a negative value (plotted in red) shows underperformance.
Features:
Adjustable lookback period (default: 20 days) to analyze recent performance.
Visual plot with green/red coloring for quick interpretation.
Zero line to clearly separate outperformance from underperformance.
How to Use:
Apply the indicator to your stock's chart.
Set the "Lookback Period" in the settings (e.g., 20 for ~1 month).
Check the plot:
Green (above 0) = Stock's % change is better than SPY's.
Red (below 0) = Stock's % change is worse than SPY's.
Use on daily or weekly charts for best results.
Ideal for identifying stocks that hold up better during market downturns or outperform in uptrends. Perfect for relative strength analysis and to spot accumulation.
JT Bot AI
JT Bot AI
This is a description of the trading bot JT Bot AI, designed for scalping and long-term trading on cryptocurrency markets. Using flexible indicator settings, the bot analyzes volatility, support and resistance levels, trend, and other factors to generate buy or sell signals. It is suitable for various strategies and timeframes, and works particularly effectively with Heiken Ashi candlestick charts on a 7-minute timeframe.
The bot can catch movements of 2% for scalping trades and up to 20% for longer-term investments. With proper tuning and usage, it consistently brings an profit of from 30% to 100% per month. It is important to manually adjust the settings for each specific asset to achieve the best results.
This bot allows adaptation for different goal types — from one-time signals to scalping strategies. It is versatile and easily customizable to current market conditions. Easy setup and the ability to adapt to market changes significantly increase the efficiency and convenience of using this tool.
For feedback, contact us via Telegram @JTBott
Write to me on Telegram to receive settings for various coins
---------------------------------------------------------------------------------------------------------
JT Bot AI
Это описание торгового бота JT Bot AI, предназначенного для скальпинга и долгосрочных сделок на криптовалютных рынках. Используя гибкую настройку индикатора, бот анализирует волатильность, уровни поддержки и сопротивления, тренд и другие факторы, чтобы выдавать сигналы на покупку или продажу. Он подходит для различных стратегий и таймфреймов, особенно эффективно работает с графиком свечей Хейкен Аши на 7-минутном таймфрейме.
Бот способен ловить движения от 2% для скальпинг-трейдов и до 20% для более долгосрочных инвестиций. Он стабильно приносит от 30% до 100% прибыли в месяц при правильной настройке и использовании. При этом важно учитывать, что настройка для каждого конкретного актива должна быть скорректирована вручную, чтобы обеспечить наилучшие результаты.
Данный бот позволяет адаптироваться под разные типы целей — от однократных сигналов до скальпинг-стратегий. Он универсален и легко настраивается под текущие рыночные условия. Легкая настройка и возможность адаптации под текущие рыночные условия существенно увеличивают эффективность и удобство использования этого инструмента.
Для обратной связи пишите в Телеграмм @JTBott
Пишите мне в телеграмм что бы получить настройки на различные монеты
BooRSI
BooRSI Indicator
The BooRSI is an enhanced Relative Strength Index (RSI) tool that helps you identify momentum shifts and overbought/oversold conditions with greater flexibility and visual clarity.
It offers both classic line and candle‐style RSI displays, customizable gradient fills for the 30/50/70 zones
Optional Fibonacci retracement levels directly on the RSI scale. A weekly RSI-MA crossover background fill further highlights longer-term momentum changes.
Key Features:
• Standard or Candle-mode RSI calculation (OHLC inputs)
• Simple Moving Average on RSI for trend smoothing
• Optional 30/50/70 level bands with subtle gradient fills
• Dynamic or static Fibonacci retracement lines on RSI
• Weekly RSI vs. weekly RSI-MA background color for higher-timeframe context
Default Inputs:
• RSI Period = 14
• RSI MA Period = 14
• Fibonacci Length = 55
• Show 30/70 Bands = true
• Show Fibonacci Levels = false
• RSI Candle Mode = false
• Dynamic/Line Fibo Style = true (Solid/Dashed/Dotted)
Twitter : x.com
BooRSI
Göreceli Güç Endeksi (RSI) göstergesini daha esnek ve görsel olarak zengin hale getiren bir araçtır. Klasik çizgi veya mum formunda RSI görüntülemenin yanı sıra 30/50/70 bantları için gradyan doldurma, RSI üzerinde Fibonacci geri çekilme seviyeleri ve haftalık zaman dilimindeki RSI-MA kesişimlerine dayalı arka plan rengi vurguları sunar.
Öne Çıkan Özellikler:
• Klasik veya Mum Modu RSI hesaplaması (OHLC verisi)
• RSI’ye uygulanan Basit Hareketli Ortalama ile trendin pürüzsüzleştirilmesi
• 30/50/70 seviyeleri için isteğe bağlı gradyan dolgu
• RSI skalasında dinamik veya sabit Fibonacci seviyeleri
• Haftalık RSI ve haftalık RSI-MA kesişimlerine göre arka plan rengi
Varsayılan Girdiler:
• RSI Periyodu = 14
• RSI MA Periyodu = 14
• Fibonacci Periyodu = 55
• 30/70 Bantlarını Göster = true
• Fibonacci Seviyelerini Göster = false
• RSI Mum Modu = false
• Dinamik/Çizgi Fibo Stili = true (Solid/Dashed/Dotted)
Twitter : x.com
Smoothed Heiken Ashi - Multi TimeframeThis script displays Smoothed Heiken Ashi candles from three user-selectable timeframes directly on the chart.
You can fully customize smoothing method, length (pre/post), and candle appearance (body, wick, border).
Ideal for visual trend confirmation across multiple timeframes.
Based on TAExt.heiken_ashi() from the TAExt library.
🔹 Non-repainting.
🔹 Works on all assets and timeframes.
© 2025 Ben Deharde
Altitude Alpha | QuantEdgeB✨ Altitude Alpha | Altcoin Screener by QuantEdgeB ✨
1. Objective
Altitude Alpha is a quantitative altcoin screener designed to systematically identify the strongest outperforming assets from a universe of 20 selected altcoins. With 7 layered filters and a robust scoring engine, this system empowers traders to focus only on high-potential candidates, eliminating guesswork and emotional bias and maximize opportunity cost.
2. 🧠 Purpose & Core Philosophy
The primary goal of Altitude Alpha is not to trigger buy or sell signals, but to highlight where strength is concentrated in the altcoin space. In the most volatile and noisy market environment, relative strength is your compass. By identifying coins that not only outperform their peers but also meet trend, volatility, and statistical benchmarks, Altitude Alpha becomes your strategic alpha-finder.
💡 Winners are displayed visually and intuitively in the “🏆 Winners Dash” table at the bottom left.
3. ⚙️ What Makes It Powerful?
Altitude Alpha uses a multi-dimensional 7-filter scoring model built around these components:
🔹 1. Relative Strength Matrix
Each altcoin is scored relative to all others in the pool using pairwise strength logic. The result: the strongest of the strong rise to the top.
🔹 2. Trend Structure
Three independent trend assessments are used to validate the momentum. A coin must sustain multi-angle trend agreement to pass.
🔹 3. Regime Filter
Filters out noisy environments. Only coins in “Trending” or strong “Neutral” regimes are considered.
🔹 4. Beta Screening
Measures each asset’s sensitivity compared to the broader market (BTC Index by default). Higher beta = higher potential volatility-based opportunity.
🔹 5. Alpha Screening
Only assets showing positive alpha—returns exceeding what their beta would explain—are considered worthy of your attention.
🔹 6. Composite Score Threshold
Trend + Regime + Alpha/Beta strength must all align for a coin to qualify.
🔹 7. Top N Rank Filter
Customize your scope: allocate to top 1, 2, 3...5 ranked altcoins dynamically, based on their total composite score.
4. 🧪 Backtest Mode Explained
Altitude Alpha includes an optional backtest simulation, allocating capital to the currently top-ranked assets. This model applies equal-weight dynamic allocation to assets that pass all filters.
⚠️ Disclaimer:
1. While the backtest feature demonstrates performance potential, this is not the recommended live trading mode. The best use-case for Altitude Alpha is asset selection, not execution. Combine it with your personal trading edge or system for superior risk/reward and entry timing.
2. Past performance is not indicative of future performance. Always conduct your own research before investing!
5. ✅ Recommended Use
• Use Altitude Alpha to scan for the best-performing altcoins.
• Select 1–3 assets from the “🏆 Winners Dash” panel.
• Apply your own entry strategy or confirmation setup (e.g., price action, strategies, valution alignment, market structure, etc.)
• Only allocate capital when your personal system confirms opportunity.
• You may optionally allocate based on the system itself—just be aware this introduces higher exposure and risk.
6. 🧬 Customization Features
• 🖌️ Multiple color palettes (Strategy, Solar, Warm, Cool, etc.)
• 🌓 Text readability toggles (Dark/Light)
• 🔢 Adjustable Alpha/Beta periods and benchmark (BTC by default)
• 🔁 Allocation rank selection (Top 1–5)
7. 📈 Visual Output & Dashboards
• 🔍 Altitude Alpha Dashboard — Complete transparency into ranks, trends, scores, and regimes.
• 🏆 Winners Dash Table — Clean, minimal summary of top-selected altcoins.
• 📊 Backtest Panel — Equity curve and stats (Sharpe, Sortino, Omega, Max Drawdown).
• 🌌 Futuristic Glow Plotting — High-contrast equity visuals with layered gradients.
Conclusion & Key Highlights
Altitude Alpha is not just a screener—it's a precision instrument designed to cut through market noise and systematically reveal where true strength lies in the altcoin universe.
While most traders are busy chasing hype, Altitude Alpha offers clarity through quantitative filtration. It’s not about timing the perfect entry. It’s about focusing attention on the highest-potential coins, so you never waste energy on underperformers again.
📌 Key Takeaways:
🧭 Purpose-Built-> Helps identify the strongest altcoin out of 20 dynamically.
🧮 7-Layer Filter Logic-> Combines trend, regime, alpha, beta, and composite strength into one decision engine.
📊 Winners Dash Panel-> Clean display of current top performers — no noise, just output.
⚙️ Backtest Feature-> Optional equity curve based on rotating into ranked leaders (educational use).
🔎 Customizable Framework-> Tweak ranking depth, visual style, and filter sensitivity.
✅ Best Use Case ->Select strong coins, then apply your own entry strategy - maximize risk/reward.
📌 Trade with Statistical Precision | Powered by QuantEdgeB
🔹 Disclaimer: Past performance is not indicative of future results.
🔹 Strategic Advice: Always backtest, optimize, and align parameters with your trading objectives and risk tolerance before live trading.
Multi RSI IndicatorRSI is one of the best indicator for measuring the momentum and trend of any tradable asset, be it Stocks, crypto currencies, commodities, forex or their derivatives.
Higher period RSIs tells the trend and have lower sensitivity towards momentum while lower period RSIs are more sensitive towards momentum.
So a combination of different periods and different time frame RSIs will measure trend and momentum both.
For example if in 15 minute time frame, 35 period RSI is above 50, the trend is bullish and vice versa. But if 7 period RSI is above 70 means momentum is high. Along with that if 14 period RSI in 30 minute time frame is above 60 that means in higher time frame also momentum is high. So chances of success in bullish trade becomes high.
So this Multiple RSI indicator is a combination of 8 RSIs. 4 RSIs are of different periods such as 7,14, 21 and 28 (periods can be selected as per choice). Another 4 RSIs are of different time frames to measure the major trend and momentum. Such as on 5 minute chart, apart from different period RSIs of 5 minutes, you can also place 14 period RSIs of 15 minutes, 30 minutes, hourly and day time frames to give broader spectrum of trend and momentum. In this way you can get a clear picture of trend and momentum both and can trade in trend direction more accurately, thus enhancing you trade accuracy and profitability.
EMA/SMA Combo + ADR (v6)This script combines popular moving averages with a clean, info-rich ADR table – perfect for traders who trade breakouts.
✳️ Features:
• 🟦 EMA 10 / 20 / 50 / 100 / 200 → shown as dotted points
• 🔷 SMA 10 / 20 / 50 / 100 / 200 → shown as solid lines
• 🎛️ All lines can be individually toggled on/off
• 📊 ADR info table shows average range, today’s range & % of ADR
🎯 Ideal for:
• Intraday traders looking for clean MAs & volatility reference
• Swing traders seeking strong confluence zones
• Anyone who prefers a minimalistic, customizable overlay
🧠 Pro Tip: The ADR table is styled for light charts – black text, no background. You can customize the MA display exactly as you like.
Trade smart, stay sharp! 🚀
Max & Min Range AnalyzerRange Analyzer Dashboard — Your Ultimate Reversal & Volatility Edge
The Range Analyzer Dashboard is a precision trading tool designed to help you identify extreme price zones, volatility expansions, and high-probability reversal areas in real time.
Key Features:
Real-time detection of maximum and minimum price thresholds
Adaptive to changing market conditions and volatility
Clean, customizable dashboard for any trading style
Ideal for scalping, intraday, and swing trading
Works seamlessly across indices, forex, crypto, and stocks
How to Use:
➥ Watch for price to reach the upper or lower range extremes — these often signal exhaustion and a potential reversal.
➥ Combine with volume, momentum, or order flow tools for added confirmation.
➥ Adjust dashboard settings to match market conditions or trading sessions.
With the Range Analyzer Dashboard, you’ll have the clarity and edge to trade smarter and capture powerful market moves.
SuperTrend_akkamVolatility Length: Determines the period for calculating market volatility.
Deviation Length: Specifies the period for calculating standard deviation.
Deviation Multiplier: Adjusts the impact of deviation on calculations.
ATR Multiplier: Controls the value of ATR (Average True Range) affecting the calculations.
Profit Target: Defines the number of points to achieve profit before exiting the trade.
Spread: Allows adding the spread to the entry and exit prices for more accurate trade calculations.
Time Window: Defines the time periods during which signals should be active, such as the start and end times for trading during the day.
Higher Timeframe TrendMap [BigBeluga]🔵HTF TrendMap
A powerful visual overlay that brings higher timeframe market structure directly onto your intraday chart.
This tool maps directional bias, trend strength, and dynamic range boundaries from a user-selected HTF (like Daily or 4H), offering a real-time confluence layer for scalpers, day traders, and swing traders.
By plotting the evolving average (HL2), it acts as a volatility-weighted trend anchor, allowing you to align lower timeframe entries with higher timeframe intent.
Technical Overview:
At the close of each higher timeframe (HTF) candle, the indicator stores the high, low, and calculates the HL2 midpoint. These values are then referenced on the lower timeframe chart to plot trend direction and price boundaries.
🔵 KEY FEATURES
Maps the selected higher timeframe (HTF) (e.g., Daily) onto your current chart.
At the close of each HTF candle , it starts to calculate and store the highest, lowest, and average (HL2) price levels .
The average (HL2) value is treated as the HTF trend baseline —plotted in orange for uptrend , blue for downtrend .
Visual curve thickens and fades to show progress through the HTF period (stronger color = fresher data).
Horizontal dashed lines show HTF high and low levels that persist until the next period closes.
On every HTF close, two price labels are printed for the high and low levels.
Vertical separators visually mark the start of each HTF candle for easy structural recognition.
A real-time dashboard shows selected HTF, current trend direction (🢁/🢃), and updates dynamically.
🔵 HOW TO USE
Use the HTF average line as a bias filter —only long when the trend is up (orange), short when down (blue).
HTF high/low labels help identify key breakout or rejection zones .
Combine with intraday systems or reversal tools for multi-timeframe confluence setups .
Ideal for scalpers and swing traders who rely on HTF momentum shifts .
🔵 CONCLUSION
HTF TrendMap provides a clean, data-rich layer of higher timeframe context to any chart. With adaptive trend coloring, volatility mapping, and real-time data labeling, it enables traders to stay in sync with macro structure while executing on the micro.