MACD_DIXCHANGE with Divergences and Target PricesSummary
This indicator is an advanced momentum oscillator, inspired by the work of DAVIDGLZ. It is designed to help traders visualize the strength and direction of the current trend, identify potential market exhaustion or turning points through automatic divergence detection, and provides key reference levels and price estimates for a more comprehensive analysis.
Main Tools and Features
Main Oscillator: The colored line that fluctuates above and below a central zero line.
· Its position (above/below zero) indicates the general direction of momentum
(bullish/bearish).
· Its color changes gradually (typically green/lime for bullish, red/maroon for bearish) and
can suggest the strength of that momentum.
Signal Line: A smoothed version (moving average) of the main line. Crossovers between the main line and the signal line are key events that can generate early warning signals of potential changes.
Histogram (MACD Style): The vertical bars representing the difference (strength) between the Main Oscillator and its Signal Line.
· The height of the bars indicates the magnitude of the difference.
· Its colors change to help visualize whether momentum is accelerating (brighter colors like
Lime Green or Red) or decelerating (darker colors like Green or Maroon).
Key Horizontal Levels: Three reference lines: an Upper Level, a Lower Level (both user-configurable), and the central Zero Line. The area between the upper and lower levels is shaded, creating a visual "operating zone". These levels help identify when the oscillator reaches zones considered relatively over-extended.
Crossover Alerts: Small visual triangles (green for bullish crossover, red for bearish) that mark exactly when the Main Oscillator crosses its Signal Line.
Automatic Divergence Detector: A powerful tool that compares price movement with the Histogram's movement to find discrepancies:
· Detects Regular Bullish Divergences: Price makes lower lows, but the Histogram makes higher lows (potential bottom).
· Detects Regular Bearish Divergences:Price makes higher highs, but the Histogram makes lower highs (potential top).
Divergence Visualization: When a divergence is detected, it automatically draws:
· A dotted line directly on the Histogram connecting the two relevant lows (bullish) or highs (bearish) that form the divergence.
·A small "DIV" text label positioned centered on the midpoint of that dotted divergence line.
Estimated Price Labels: Very useful contextual information displayed to the right of the indicator (only on the last chart bar):
· Shows the approximate price the asset would need to reach right now for the Main Oscillator to touch the Upper Level (H ≈ ...), the Lower Level (L ≈ ...), the Zero Line (Mid ≈ ...), or the crossover point with the Signal Line (Cruce ≈ / Cross ≈ ...). These are dynamic estimates, not fixed predictions.
· Optional Background Color ("Double Peak" Pattern): (If enabled in settings) The indicator's panel background changes to green or red to highlight a specific condition: when the histogram forms two impulses ("mountains") in the same direction, and the second impulse begins to show signs of exhaustion by retreating towards zero.
·Information Panel: Displays the stylized name of the indicator in the bottom-right corner.
How to Interpret and Use the Tools
· Trend and Momentum: Use the Main Oscillator's position (above/below zero) and its crossovers with the Signal Line as basic directional indicators. Confirm strength and acceleration with the Histogram.
· Reversal Signals: Divergences are key signals of potential trend exhaustion. A bullish divergence after a downtrend, or a bearish divergence after an uptrend, warns of a possible change in direction. Important: Do not trade divergences alone; always seek confirmation (price action, patterns, other indicators).
· Extreme Conditions: Use the Upper and Lower Levels as guides to identify when the indicator reaches relatively overextended zones, where a pullback or pause might be more likely.
· Price Context: The Estimated Price Labels help you relate the indicator's levels to specific price points on the asset in the current moment.
· Exhaustion Signal (Background): If the background color feature is active, use it as an additional alert that a secondary push in the histogram might be failing.
Configuration
The indicator offers a wide range of customizable settings via its Inputs:
· Adjust the "speed" or sensitivity of the Main Oscillator (by changing its Moving Average settings).
· Adjust the smoothing of the Signal Line.
· Define your own Upper and Lower Horizontal Levels.
· Adjust the sensitivity of Divergence detection (by changing pivot parameters).
· Enable or disable most visual features (divergence lines/labels, price labels, optional
background color).
"This indicator is intended for use on timeframes of 3 minutes or higher and comes pre-configured with functional default settings. Modifying these settings may alter the original intended functionality of the indicator."
Disclaimer
This indicator is a tool for technical analysis and should not be considered investment advice or an infallible signal. Trading involves risks. Use this indicator as part of a well-defined trading strategy, alongside other analysis tools and proper risk management. Always conduct your own research.
Credits
Based on the original concept "Insane MACD_DIXCHANGE" by DAVIDGLZ, with multiple enhancements and added functionalities during development.
This English version should effectively convey the indicator's features and usage on TradingView.
Penunjuk dan strategi
shogirtlarim uchunIndicator: Shogirtlarim uchun
This is a professional trading tool designed to detect high-probability BUY and SELL zones using an adaptive range system based on ATR (Average True Range).
🔹 Features:
Automatically plots dynamic upper and lower channel boundaries.
Sends BUY signals when the price exits the lower zone, and SELL signals when exiting the upper zone.
Optional signal filtering based on trend direction.
Detects and marks potential fakeouts.
Cooldown logic to prevent frequent signals.
⚙️ Works best on intraday timeframes (1m to 1h), especially on volatile assets like XAUUSD, BTCUSD, NASDAQ, etc.
📌 Backtest and demo before using live. For educational and informational purposes only.
AlgoRanger Supply & Demand Zones/@version=5
indicator(" AlgoRanger Supply & Demand Zones", overlay=true, max_boxes_count = 500)
//inputs
candleDifferenceScale = input.float(defval = 1.8, minval = 1, title = 'Zone Difference Scale', tooltip = 'The scale of how much a candle needs to be larger than a previous to be considered a zone (minimum value 1.0, default 1.😎', group = 'Zone Settings')
zoneOffset = input.int(defval = 15, minval = 0, title="Zone Extension", group = 'Display Settings', tooltip = 'How much to extend zones to the right of latest bar in bars')
displayLowerTFZones = input.bool(false, title="Display Lower Timeframe Zones", group = 'Display Settings', tooltip = 'Whether to or not to display zones from a lower timeframe (ie. 2h zones on 4h timeframe, Recommended OFF)')
supplyEnable = input(true, title = "Enable Supply Zones", group = "Zone Personalization")
supplyColor = input.color(defval = color.rgb(242, 54, 69, 94), title = 'Supply Background Color', group = 'Zone Personalization')
supplyBorderColor = input.color(defval = color.rgb(209, 212, 220, 90), title = 'Supply Border Color', group = 'Zone Personalization')
demandEnable = input(true, title = "Enable Demand Zones", group = "Zone Personalization")
demandColor = input.color(defval = color.rgb(76, 175, 80, 94), title = 'Demand Background Color', group = 'Zone Personalization')
demandBorderColor = input.color(defval = color.rgb(209, 212, 220, 80), title = 'Demand Border Color', group = 'Zone Personalization')
textEnable = input(true, title = "Display Text", group = 'Text Settings')
displayHL = input.bool(false, title="Display High/Low", group = 'Text Settings', tooltip = 'Whether to or not to display the tops and bottoms of a zone as text (ie. Top: 4000.00 Bottom: 3900.00)')
textColor = input.color(defval = color.rgb(255, 255, 255), title = 'Text Color', group = 'Text Settings')
textSize = input.string("Small", title="Text Size", options= , group = 'Text Settings')
halign = input.string("Right", title="Horizontal Alignment", options= , group = 'Text Settings')
supplyValign = input.string("Bottom", title="Vertical Alignment (Supply)", options= , group = 'Text Settings')
demandValign = input.string("Top", title="Vertical Alignment (Demand)", options= , group = 'Text Settings')
display30m = input.bool(true, title="Show 30m Zones", group = 'Timeframe Options')
display45m = input.bool(true, title="Show 45m Zones", group = 'Timeframe Options')
display1h = input.bool(true, title="Show 1h Zones", group = 'Timeframe Options')
display2h = input.bool(true, title="Show 2h Zones", group = 'Timeframe Options')
display3h = input.bool(true, title="Show 3h Zones", group = 'Timeframe Options')
display4h = input.bool(true, title="Show 4h Zones", group = 'Timeframe Options')
displayD = input.bool(false, title="Show 1D Zones", group = 'Timeframe Options')
displayW = input.bool(false, title="Show 1W Zones", group = 'Timeframe Options')
// variables
currentTimeframe = timeframe.period
if currentTimeframe == 'D'
currentTimeframe := '1440'
if currentTimeframe == 'W'
currentTimeframe := '10080'
if displayLowerTFZones
currentTimeframe := '0'
momentCTD = math.round(time(timeframe.period) + (zoneOffset * 60000 * str.tonumber(currentTimeframe)))
textSize := switch textSize
"Auto" => size.auto
"Tiny" => size.tiny
"Small" => size.small
"Normal" => size.normal
"Large" => size.large
"Huge" => size.huge
halign := switch halign
'Left'=> text.align_left
'Center' => text.align_center
'Right' => text.align_right
supplyValign := switch supplyValign
'Bottom'=> text.align_bottom
'Center' => text.align_center
'Top' => text.align_top
demandValign := switch demandValign
'Bottom'=> text.align_bottom
'Center' => text.align_center
'Top' => text.align_top
var box supply_HT = array.new_box()
var box demand_HT = array.new_box()
//plotting zones
createSupplyDemandZones(timeframe) =>
= request.security(syminfo.tickerid, timeframe, [open , high , low , close ], lookahead = barmerge.lookahead_on)
timeframeFormatted = switch timeframe
'1' => '1m'
'3' => '3m'
'5' => '5m'
'16' => '15m'
'30' => '30m'
'45' => '45m'
'60' => '1h'
'120' => '2h'
'180' => '3h'
'240' => '4h'
'D' => '1D'
'W' => '1W'
redCandle_HT = close_HT < open_HT
greenCandle_HT = close_HT > open_HT
neutralCandle_HT = close_HT == open_HT
candleChange_HT = math.abs(close_HT - open_HT)
var float bottomBox_HT = na
var float topBox_HT = na
momentCTD_HT = time(timeframe)
if (((redCandle_HT and greenCandle_HT ) or (redCandle_HT and neutralCandle_HT )) and (candleChange_HT / candleChange_HT ) >= candleDifferenceScale and barstate.isconfirmed and supplyEnable and close_HT >= close_HT and open_HT <= open_HT)
if displayHL
timeframeFormatted := timeframeFormatted + ' Top: ' + str.tostring(topBox_HT) + ' Bottom: ' + str.tostring(open_HT )
if high_HT >= high_HT
topBox_HT := high_HT
else
topBox_HT := high_HT
box supply = box.new(left=momentCTD_HT, top=topBox_HT, right=momentCTD, bgcolor=supplyColor, bottom=open_HT , xloc=xloc.bar_time)
box.set_border_color(supply, supplyBorderColor)
if textEnable
box.set_text(supply, timeframeFormatted)
box.set_text_size(supply, textSize)
box.set_text_color(supply, textColor)
box.set_text_halign(supply, halign)
box.set_text_valign(supply, supplyValign)
array.push(supply_HT, supply)
if (((greenCandle_HT and redCandle_HT ) or (greenCandle_HT and neutralCandle_HT )) and (candleChange_HT / candleChange_HT ) >= candleDifferenceScale and barstate.isconfirmed and demandEnable and close_HT <= close_HT and open_HT >= open_HT)
if displayHL
timeframeFormatted := timeframeFormatted + ' Top: ' + str.tostring(open_HT ) + ' Bottom: ' + str.tostring(bottomBox_HT)
if low_HT <= low_HT
bottomBox_HT := low_HT
else
bottomBox_HT := low_HT
box demand = box.new(left=momentCTD_HT, top=open_HT , right=momentCTD, bottom=bottomBox_HT, bgcolor=demandColor, xloc=xloc.bar_time)
box.set_border_color(demand, demandBorderColor)
if textEnable
box.set_text(demand, timeframeFormatted)
box.set_text_size(demand, textSize)
box.set_text_color(demand, textColor)
box.set_text_halign(demand, halign)
box.set_text_valign(demand, demandValign)
array.push(demand_HT, demand)
// initiation
// remove comments to add these zones to the chart (warning: this will break replay mode)
// if str.tonumber(currentTimeframe) <= 5
// createSupplyDemandZones('5')
//if str.tonumber(currentTimeframe) <= 15
// createSupplyDemandZones('15')
//if str.tonumber(currentTimeframe) <= 10
// createSupplyDemandZones('10')
//if str.tonumber(currentTimeframe) <= 15
// createSupplyDemandZones('15')
if display30m and str.tonumber(currentTimeframe) <= 30
createSupplyDemandZones('30')
if display45m and str.tonumber(currentTimeframe) <= 45
createSupplyDemandZones('45')
if display1h and str.tonumber(currentTimeframe) <= 60
createSupplyDemandZones('60')
if display2h and str.tonumber(currentTimeframe) <= 120
createSupplyDemandZones('120')
if display3h and str.tonumber(currentTimeframe) <= 180
createSupplyDemandZones('180')
if display4h and str.tonumber(currentTimeframe) <= 240
createSupplyDemandZones('240')
if displayD and str.tonumber(currentTimeframe) <= 1440
createSupplyDemandZones('D')
if displayW and str.tonumber(currentTimeframe) <= 10080
createSupplyDemandZones('W')
// remove broken zones
i = 0
while i < array.size(supply_HT) and array.size(supply_HT) > 0
box currentBox = array.get(supply_HT, i)
float breakLevel = box.get_top(currentBox)
if high > breakLevel
array.remove(supply_HT, i)
box.delete(currentBox)
int(na)
else
box.set_right(currentBox, momentCTD)
i += 1
int(na)
i2 = 0
while i2 < array.size(demand_HT) and array.size(demand_HT) > 0
box currentBox = array.get(demand_HT, i2)
float breakLevel = box.get_bottom(currentBox)
if low < breakLevel
array.remove(demand_HT, i2)
box.delete(currentBox)
int(na)
else
box.set_right(currentBox, momentCTD)
i2 += 1
int(na)
VWAP Bounce + TP/SL ZonesWhat’s New in This Script:
Automatic Take Profit (TP) and Stop Loss (SL) levels based on:
Your entry candle
A customizable risk-to-reward ratio
Visual dotted lines for TP and SL
Optional disable signals if bounce is “too far” above VWAP
LeV Bull/Bear TP/SL v2🚀A utiliser pour du scalp ou du swing, utiliser le avec le RSI, MACD, ADX et le CHOP
ZONE ZERO📊 Overview:
The "ZONE ZERO" indicator is a multi-functional trading overlay built to enhance price action analysis. It overlays:
- OHLC lines from a user-defined higher timeframe
- EMAs and SMAs for trend direction
- Two anchored VWAPs with customizable periods
- Custom candle coloring based on body structure ("stacking")
- This is ideal for traders who analyze confluence zones, trend strength, and want contextual
guidance from higher timeframes.
🛠️ User Inputs and Configuration
✅ Primary Inputs:
- Lookback (lb): Determines which historical bar from the higher timeframe (HTF) is referenced (e.g., 0 = current HTF bar, 1 = previous).
- Timeframe (tf): Selects the higher timeframe used to extract OHLC data.
🎨 Line Customization Inputs:
- Each HTF price level (open, high, low, close, midpoint) can be customized via:
- Line style (Solid, Dashed, Dotted)
📈 EMA Inputs:
- EMA 1: Fast EMA (default: 8)
- EMA 2: Medium EMA (default: 15)
- EMA 3: Long EMA (default: 200)
🧮 SMA Inputs:
- 4 daily SMAs (20, 50, 100, 200) calculated from the close price by default.
⚖️ VWAP Anchoring Options:
- Two anchored VWAPs, each with independent anchor options:
Session
Week
Month
Quarter
Year
📏 Technical Logic and Features
🔹 HTF OHLC + Midpoint Lines:
- Fetches open, high, low, close from the higher timeframe using request.security().
- Calculates the midpoint as (high + low)/2.
- Plots persistent horizontal lines for each level starting from the HTF bar timestamp.
- Each line is drawn dynamically from the HTF bar's origin to its end using line.set_xy1() and line.set_xy2().
🔸 EMA Plotting:
- EMAs are plotted on the current chart using ta.ema().
- Provides a real-time view of market momentum and directional bias.
🔸 Daily SMAs on Intraday Charts:
- Daily timeframe SMAs are fetched and plotted even on intraday charts using request.security().
- Allows higher timeframe trend overlays during intraday trading.
🔸 Anchored VWAPs (Volume-Weighted Average Price):
- VWAPs are calculated using (high + low)/2 instead of the default hlc3, providing a price-action centric view.
- Reset logic is based on the selected anchor (e.g., session reset, weekly, etc.).
- VWAP line color dynamically changes:
- Colors 1/2 when price is above VWAP
- Colors 3/4 when price is below
- This gives instant visual feedback on whether price is trading with or against volume-weighted trend direction.
🔸 Custom Candle Coloring (Stacked Candle Logic):
- Bullish Stacked Candle:
Current open is above midpoint of previous body
Current close is above open
- Bearish Stacked Candle:
Current open is below midpoint of previous body
Current close is below open
These conditions highlight strong continuation candles, and are colored:
- Green for bullish stacking
- Red for bearish stacking
- All other candles are not affected.
⚠️ Warning System
A smart warning label appears if the user selects a lower timeframe than the chart's resolution (e.g., selecting 1H on a daily chart), which can cause errors in data visibility.
✅ Best Use Cases:
- Intraday traders seeking HTF context
- Swing traders wanting EMA + VWAP confluence
- Price action traders spotting structure-based momentum
- Scalpers using stacked candle setups in combination with VWAP/EMA
Super Target KingSuper Target King
This Indicator provided Targets as entry price, Stop loss, TP1,TP2,TP3 and TP4
including table multi time frame for rsi, macd, ma, vloume, and buy sell signals
Impulse-Momentum EngineThe Impulse-Momentum Engine is a minimalistic yet powerful tool that detects price shifts driven by strong breakout impulses and synchronized momentum. Designed for traders who value clean signals, visual clarity, and responsive alerts.
Core Features:
• Impulse Trend Detection using ATR-based dynamic breakouts
• Momentum Filter with zero-lag adaptive logic
• Background Highlighting to visualize current trend state
• Signal Arrows and Labels for immediate action
• Persistent Trend State with colored background
• Heikin Ashi–friendly logic for better candle structure
• Fully configurable input settings
• No repainting; works on all timeframes and assets
Customization Options:
• Impulse Window — sets the sensitivity for impulse detection (default: 20)
• ATR Length — controls the ATR smoothing period (default: 100)
• ATR Multiplier — adjusts the breakout strength threshold (default: 1.0)
How to Use:
• A BUY signal appears when impulse, momentum, and trend synchronization all align bullish
• A SELL signal is triggered under bearish alignment
• Background changes color based on current trend regime
• Works best when applied to Heikin Ashi candles
• Tune the new inputs to match your trading style — shorter impulse window for scalping, longer for swing trades
Best For:
Scalpers, swing traders, and anyone who prefers structured and clean directional signals with minimal noise
Volume Spike Buys + TableGood for swing trend. This combines with other indicators such as macd, rsi, and stochastic makes a powerful confluence to compliment with your support and resistance. This will focus more on volume. Volume is like a fuel on your engine, without fuel your car wont move.
Swing Trend Confluence Panel 📊 (Lean)Good for swing trend. This combines with othre indicators such as macd, rsi, and stochastic makes a powerful confluence to compliment with your support and resistance. It has tables to show the quality of the stocks. You enter only when its grade A and be cautious when its grade b but scrap the grade c.
Nyx-AI Market Intelligence DashboardNyx AI Market Intelligence Dashboard is a non-signal-based environmental analysis tool that provides real-time insight into short-term market behavior. It is designed to help traders understand the quality of current price action, volume dynamics, volatility conditions, and structural behavior. It informs the trader whether the current market environment is supportive or hostile to trading and whether any active signal (from other tools) should be trusted, filtered, or avoided altogether.
Nyx is composed of seven intelligent modules. Each module operates independently but is visually unified through a floating dashboard panel on the chart. This panel renders live diagnostics every few bars, maintaining a low visual footprint without drawing overlays or modifying price.
Market Posture Engine
This module reads individual candlesticks using real-time candle anatomy to interpret directional bias and sentiment. It examines body-to-range ratio, wick imbalances, and compares them to prior bars. If the current candle is a large momentum body with minimal wick, it is interpreted as a directional thrust. If it is a small body with equal wicks, it is considered indecision. Engulfing patterns are used to detect potential liquidity tests. The system outputs a plain-text posture signal such as Building Bullish Intent, Bearish Momentum, Indecision Zone, Testing Liquidity (Up or Down), or Neutral.
Flow Reversal Engine
This module monitors short-term structural shifts and volume contraction to detect early signs of reversal or exhaustion. It looks for lower highs or higher lows paired with weakening volume and closing behavior that implies loss of momentum. It also monitors divergence between price and volume, as well as bar-to-bar momentum stalls (where highs and lows stop expanding). When these conditions are met, it outputs one of several states including Top Forming, Bottom Forming, Flow Divergence, Momentum Stall, or Neutral. This is useful for detecting inflection points before they manifest on trend indicators.
Fractal Context Engine
This engine compares the current bar’s range to its surrounding structural context. It uses a dynamic lookback length based on volatility. It determines whether the market is in expansion (strong directional trend), compression (shrinking range), or a transitional phase. A special case called Flip In Progress is triggered when the current high and low exceed the entire recent range, which often precedes sharp reversals or volatility expansion. The result is one of the following: Trend Expansion, Trend Breakdown, Sideways or Coil, Flip In Progress, or Expansion to Coil.
Candle Behavior Analyzer
This module analyzes the last five candles as a set to detect behavioral traits that a single candle may not reveal. It calculates average body and wick size, and counts how many recent candles show thrust (large body dominance), trap behavior (price returns inside wicks), or weakness (small bodies with high wick ratios). The module outputs one of the following behaviors: Aggressive Buying, Aggressive Selling, Trap Pattern, Trap During Coil, Low Participation, Low Energy, or Fakeout Candle. This helps the trader assess sentiment quality and the reliability of price movement.
Volatility Forecast and Compression Memory
This module predicts whether a breakout is likely based on recent compression behavior. It tracks how many of the last 10 bars had significantly reduced range compared to average. If a certain threshold is met without any recent large expansion bar, the system forecasts that a volatility expansion is likely in the near future. It also records how many bars ago the last high volatility impulse occurred and classifies whether current conditions are compressing. The outputs are Expansion Likely, Active Compression, and Last Burst memory, which provide breakout timing and energy insights.
Entry Filter
This module scores the current bar based on four adaptive criteria: body size relative to range, volume strength relative to average, current volatility versus historical volatility, and price position relative to a 20-period moving average. Each factor is scored as either 1 or 2. The total score is adjusted by a behavioral modifier that adds or subtracts a point if recent candles show aggression or trap behavior. Final scores range from 4 to 8 and are classified into Optimal, Mixed, or Avoid categories. This module is not a trade signal. It is a confluence filter that evaluates whether conditions are favorable for entry. It is particularly effective when layered with other indicators to improve precision.
Liquidity Intent Engine
This engine checks for price behavior around recent swing highs and lows. It uses adaptive pivots based on volatility to determine if price has swept above a recent high or below a recent low. This behavior is often associated with institutional liquidity hunts. If a sweep is detected and price has moved away from the sweep level, the engine infers directional intent and compares current distance to the high and low to determine which liquidity pool is more dominant. The output is Magnet Above, Magnet Below, or Conflict Zone. This is useful for anticipating directional bias driven by smart money activity.
Sticky Memory Tracking
To avoid flickering between states on low volatility or noisy price action, Nyx includes a sticky memory system. Each module’s output is preserved until a meaningful change is detected. For example, if Market Posture is Neutral and remains so for several bars, the previous non-neutral value is retained. This makes the dashboard more stable and easier to interpret without misleading noise.
Dashboard Rendering
All module outputs are displayed in a clean two-column panel anchored to any corner of the chart. Text values are color-coded, tooltips are added for context, and the data refreshes every few bars to maintain speed. The dashboard avoids clutter and blends seamlessly with other chart tools.
This tool is intended for informational and educational purposes only. It does not provide financial advice or trading signals. Nyx analyzes price, volume, structure, and volatility to offer context about the current market environment. It is not designed to predict future price movements or guarantee profitable outcomes. Traders should always use independent judgment and risk management. Past performance of any analysis logic does not guarantee future results.
53 ToolkitTest
No functions
5-minute candlestick 3-tick rule: How to find a rebound point (short-term bottom) when a correction comes after an uptrend
The most stable way to make a profit when trading short-term is to accurately determine the point of rebound in the 'rise -> fall -> rebound' pattern.
Based on the premise that a decline is followed by a rebound, this is a formula created by analyzing the patterns of coins that frequently rebound.
Prevents being bitten at the high point by forcibly delaying the entry point according to market conditions. (HOW?)
Mostly 5-minute and 15-minute candles are used, but 30-minute candles can also be used depending on the situation.
VWAP Bounce Entry [Long Only]VWAO Bounce
How to Use:
Works on any asset (but tuned for BTC/USD 5m)
Only triggers after a real retracement + bounce
You can increase minBounceDistance to reduce noise
Toggle SHORT signals on only if you want to counter-trade
Buy/Sell Signal - RSI + EMA + MACDBUY/SELL based on RSI/MACD/EMA by ArunE
chatgpt powered
Signal 'Buy' if all of the following three conditions are true
Rsi crosses above 55
Ema 9 crosses over ema 21
Macd histogram shows second green on
Signal 'Sell' if all of the following three conditions are true
Rsi crosses below 45
Ema 9 crosses below Ema 21
Macd histogram shows second red on
CRCRYPTOA clean, adaptive support & resistance tool to track price between recent highs/lows.
✅ Auto-adjusts for your timeframe
✅ Shows trend bias with color (green = up, red = down)
✅ Includes ATR bands for volatility zones
Perfect for spotting dynamic bounce/reject levels on any TF.
© 2025 CRCRYPTO. This script is proprietary. Do not copy, redistribute, or resell without explicit permission.
X: x.com
Trend [ALEXtrader]📈 MACD Indicator (Moving Average Convergence Divergence)
1. Function:
MACD is a momentum and trend-following indicator that helps traders identify the direction, strength, and potential reversals of a price trend.
2. Key Components:
MACD Line: The difference between the 12-period EMA and the 26-period EMA.
Signal Line: A 9-period EMA of the MACD line.
Histogram: The difference between the MACD line and the Signal line, displayed as vertical bars.
3. How It Works:
When the MACD line crosses above the Signal line, it generates a bullish (buy) signal.
When the MACD line crosses below the Signal line, it generates a bearish (sell) signal.
When the histogram shifts from negative to positive, it suggests increasing bullish momentum, and vice versa.
4. Practical Use:
Identify entry and exit points.
Confirm trends and reversals.
Combine with other tools like RSI, Moving Averages, or support/resistance levels for higher accuracy.
5. Pros & Cons:
✅ Pros: Easy to use, widely available, effective in trending markets.
❌ Cons: Can give late or false signals in sideways/ranging ma
Scalping Indicator [fikri invite only.3]Update 1. 02.04.25
Update 2. 22.05.25
Update 3. 05.05.25
Description
📊 Scalping Indicator – Fully Automated Trading Indicator 🚀
This indicator is designed, created, and developed by Fikri Production as the result of a combination of dozens of technical analysis elements, ultimately forming a Smart Multi Indicator. It operates automatically, following market movements. By using this indicator, you no longer need to add other indicators to strengthen trading signals, as dozens of key elements are already integrated into one accurate and automated system.
This signal is my highest achievement in analysis, incorporating multiple indicators and decades of trading experience, all distilled into a single powerful, sensitive, complex, and multifunctional signal indicator with high accuracy.
With this indicator, your trading will be more controlled, preventing impulsive entries driven by emotion or confusion about price direction. You will know where the price is moving and when it will stop or reverse.
🎯 Key Features:
✅ Automatic BUY & SELL signals with high accuracy.
✅ Entry points complete with Stop Loss (SL) & three Take Profit (TP) levels.
✅ Automatic trend filter, displaying only valid signals in line with market direction.
✅ Fully automated indicator—you only need to follow what is displayed on the chart.
⚙️ How the Indicator Works
📍 This indicator displays several important elements for trading:
1️⃣ Long-tailed arrow → Main signal for BUY or SELL entry.
2️⃣ Arrowhead without tail → Reversal warning to watch for.
3️⃣ Black circle → Indication of weak trend or sideways market (unclear direction).
4️⃣ Trendline → Measures the strength and direction of price movement.
5️⃣ EMA 30 (Blue) → Determines the primary trend direction.
6️⃣ EMA 10 (Yellow) & EMA 5 (Black) → Identifies the best momentum for entry.
📈 Trading Rules Using This Indicator
📉 SELL Signal
✔️ Formation of bearish patterns (Bearish Engulfing, Bearish Pin Bar, or Doji).
✔️ Price is below EMA30.
✔️ EMA30 is sloping downward → Confirms bearish trend.
🚨 Avoid entries if EMA30 is flat!
📈 BUY Signal
✔️ Formation of bullish patterns (Bullish Engulfing, Bullish Pin Bar, or Doji).
✔️ Price is above EMA30.
✔️ EMA30 is sloping upward → Confirms bullish trend.
🚨 Avoid entries if EMA30 is flat!
⚙️ Trading Conclusion
Only open SELL when the candle is below the blue line. Ignore BUY signals if the candle is below the blue line, and vice versa.
Never open SELL or BUY when the blue line is flat, even if many signals appear. The best entry points occur when the TP, Entry, and SL levels appear for the first time.
Ideal and strong conditions occur when a SELL signal appears while the candle is below the downward-sloping blue line, followed by the entry line—this is the best setup. The same applies to BUY signals.
Arrowheads without tails are not the main signal—they serve as an early warning of a potential reversal. Black circular signals indicate weak price movement and no clear direction, serving as an alert for caution.
🎯 Advantages of This Indicator
✔️ Filters false signals using EMA30 as the main trend filter.
✔️ Combines Price Action & Trend for optimal entry identification.
✔️ Easy to use across multiple time frames.
✔️ Equipped with automatic SL & TP, simplifying risk management.
🚀 Use Fikri Multi Indicator to maximize profits and minimize risks in your trading! 💹
====================================================================
Update 1. 02.04.25
Update 2. 22.05.25
Update 3. 05.05.25
Description
📊 Scalping Indicator – Indikator Trading Serba Otomatis 🚀
Indikator ini dirancang, dibuat, dan dikembangkan oleh Fikri Production, sebagai hasil dari perpaduan puluhan elemen analisis teknikal yang akhirnya menciptakan satu indikator Smart multi indicator. berjalan secara otomatis mengikuti arah pergerakan pasar. Dengan menggunakan indikator ini, Anda tidak perlu lagi menambahkan indikator lain untuk memperkuat sinyal trading, karena puluhan elemen penting telah terintegrasi dalam satu sistem yang otomatis dan akurat.
Signal ini adalah pencapaian tertinggi saya dalam menganalisa dengan berbagi macam indicator dan pengalaman trading puluhan tahun yang mana semua itu aku tuangkan dalam 1 wadah sehingga menjadi 1 indicator signal yang tangguh, sensitif, kompex dan multi fungsi dengan akurasi tinggi.
Dengan indicator ini trading anda akan lebih terkendali tidak bar-bar atau asal entry karena terbawa emosi atau kebingungan menentukan arah harga. anda akan ttau kemana arah harga bergerak dan kapan berhentinya atau balik arahnya.
🎯 Fitur Utama:
✅ Sinyal Otomatis BUY & SELL dengan akurasi tinggi.
✅ Entry point lengkap dengan Stop Loss (SL) & 3 level Take Profit (TP).
✅ Filter tren otomatis, hanya menampilkan sinyal yang valid sesuai arah pasar.
✅ Indikator serba otomatis, Anda hanya perlu mengikuti apa yang ditampilkan di chart.
⚙️ Cara Kerja Indikator
📍 Indikator ini menampilkan beberapa elemen penting untuk trading:
1️⃣ Panah dengan ekor panjang → Sinyal utama untuk entry BUY atau SELL.
2️⃣ Kepala panah tanpa ekor → Tanda pembalikan arah yang perlu diperhatikan.
3️⃣ Bulatan hitam → Indikasi tren sedang lemah atau pasar sideways (tidak jelas arah).
4️⃣ Garis Trendline → Mengukur kekuatan dan arah pergerakan harga.
5️⃣ EMA 30 (Biru) → Menentukan arah tren utama.
6️⃣ EMA 10 (Kuning) & EMA 5 (Hitam) → Menentukan momentum terbaik untuk entry.
📈 Aturan Trading Menggunakan Indikator Ini
📉 Sinyal SELL
✔️ Terbentuk pola bearish (Bearish Engulfing, Bearish Pin Bar, atau Doji).
✔️ Harga berada di bawah EMA30.
✔️ EMA30 condong turun → Konfirmasi tren bearish.
🚨 Hindari entry jika EMA30 datar!
📈 Sinyal BUY
✔️ Terbentuk pola bullish (Bullish Engulfing, Bullish Pin Bar, atau Doji).
✔️ Harga berada di atas EMA30.
✔️ EMA30 condong naik → Konfirmasi tren bullish.
🚨 Hindari entry jika EMA30 datar!
⚙️ Kesimpulan cara trading.
Hanya open sel ketika lilin dibawah garis biru. Abaikan sinyal buy jika lilin dibawah garis biru dan begitu jg sebaliknya.
Jangan sekali2 open sel atau buy ketika garis biru datar biarpun banyak bermunculan signal sel dan buy.
Yang paling bagus open nya adalah ketika tanda TP. Entry dan SL keluar pertama kali. Dan itupun harus juga dilihat keluarnya garis entry itu kondisi lilin harus sesuai aturan. Misal. Jika garis entry menunjukkan sel tapi lilin ada diatas garis biru maka itu kurang kuat. Begitu jg sebaliknya.
Kondisi yg ideal dan kuat adalah ketika keluar sinyal sel kondisi lilin dibawah garis biru yg condong ke bawah lalu disusul keluar garis entry maka itu yg paling bagus. Begitu jg sebaliknya untuk sinyal buy.
Untuk sinyal yg berbentuk kepala panah tanpa ekor, Itu bukan sinyal utama.itu sinyal hanya sebagai aba2 atau pertanda akan ada arah balik. Ingat..... Hanya aba2 atau peringatan untuk melakukan kewaspadaan dan jaga2 itu bukan signal yg utama. Dan sinyal bulat hitam. Itu juga hanya informasi kalo disaat itu kondisi pergerakan sedang lemah tak punya arah. Itu jg sebagai pertanda kewaspadaan.
🎯 Keunggulan Indikator Ini
✔️ Menyaring sinyal palsu dengan EMA30 sebagai filter tren utama.
✔️ Menggabungkan Price Action & Tren untuk identifikasi entry terbaik.
✔️ Mudah digunakan dalam berbagai time frame.
✔️ Dilengkapi dengan SL & TP otomatis, memudahkan pengelolaan risiko.
🚀 Gunakan Fikri Multi Indicator untuk memaksimalkan profit dan meminimalkan risiko dalam trading Anda! 💹🔥
VOLATISPHEREVOLATISPHERE Band v1.0
An adaptive volatility-based channel system designed to spot overbought/oversold zones and potential price reversals.
Key Features:
Dynamic upper/mid/lower bands based on ATR and standard deviation
Mean reversion heatmap (normalized scale from -4 to +4)
Buy/Sell signals based on extreme price deviation
Visual cues: arrows, band shading, color-coded trend zones
Built-in alerts for price crossing bands or reversal signals
Scalping Indicator [Scalping indicator-fikri invite only.2]Update 1. 02.04.25
Update 2. 22.05.25
Update 3. 05.05.25
Description
📊 Scalping Indicator – Fully Automated Trading Indicator 🚀
This indicator is designed, created, and developed by Fikri Production as the result of a combination of dozens of technical analysis elements, ultimately forming a Smart Multi Indicator. It operates automatically, following market movements. By using this indicator, you no longer need to add other indicators to strengthen trading signals, as dozens of key elements are already integrated into one accurate and automated system.
This signal is my highest achievement in analysis, incorporating multiple indicators and decades of trading experience, all distilled into a single powerful, sensitive, complex, and multifunctional signal indicator with high accuracy.
With this indicator, your trading will be more controlled, preventing impulsive entries driven by emotion or confusion about price direction. You will know where the price is moving and when it will stop or reverse.
🎯 Key Features:
✅ Automatic BUY & SELL signals with high accuracy.
✅ Entry points complete with Stop Loss (SL) & three Take Profit (TP) levels.
✅ Automatic trend filter, displaying only valid signals in line with market direction.
✅ Fully automated indicator—you only need to follow what is displayed on the chart.
⚙️ How the Indicator Works
📍 This indicator displays several important elements for trading:
1️⃣ Long-tailed arrow → Main signal for BUY or SELL entry.
2️⃣ Arrowhead without tail → Reversal warning to watch for.
3️⃣ Black circle → Indication of weak trend or sideways market (unclear direction).
4️⃣ Trendline → Measures the strength and direction of price movement.
5️⃣ EMA 30 (Blue) → Determines the primary trend direction.
6️⃣ EMA 10 (Yellow) & EMA 5 (Black) → Identifies the best momentum for entry.
📈 Trading Rules Using This Indicator
📉 SELL Signal
✔️ Formation of bearish patterns (Bearish Engulfing, Bearish Pin Bar, or Doji).
✔️ Price is below EMA30.
✔️ EMA30 is sloping downward → Confirms bearish trend.
🚨 Avoid entries if EMA30 is flat!
📈 BUY Signal
✔️ Formation of bullish patterns (Bullish Engulfing, Bullish Pin Bar, or Doji).
✔️ Price is above EMA30.
✔️ EMA30 is sloping upward → Confirms bullish trend.
🚨 Avoid entries if EMA30 is flat!
⚙️ Trading Conclusion
Only open SELL when the candle is below the blue line. Ignore BUY signals if the candle is below the blue line, and vice versa.
Never open SELL or BUY when the blue line is flat, even if many signals appear. The best entry points occur when the TP, Entry, and SL levels appear for the first time.
Ideal and strong conditions occur when a SELL signal appears while the candle is below the downward-sloping blue line, followed by the entry line—this is the best setup. The same applies to BUY signals.
Arrowheads without tails are not the main signal—they serve as an early warning of a potential reversal. Black circular signals indicate weak price movement and no clear direction, serving as an alert for caution.
🎯 Advantages of This Indicator
✔️ Filters false signals using EMA30 as the main trend filter.
✔️ Combines Price Action & Trend for optimal entry identification.
✔️ Easy to use across multiple time frames.
✔️ Equipped with automatic SL & TP, simplifying risk management.
🚀 Use Fikri Multi Indicator to maximize profits and minimize risks in your trading! 💹
===========================================================================
Regression Analysis Fibonacci ColorThis indicator brings together visual appeal, flexibility, and the power of technical analysis through a comprehensive approach, offering users a robust analytical tool. By utilizing linear regression and slope analysis to evaluate price movements, it provides insight not only into the current trend direction but also into the strength and momentum of the trend. This enables users to make more accurate predictions about trend continuation.
The indicator includes price-based dynamic Fibonacci levels, which are calculated using historical price action. As a result, they generate more precise support and resistance zones compared to traditional fixed levels. The visual transitions between these levels are enhanced with varying color tones, presenting complex data on the chart in a clear and streamlined manner.
In addition, the chart displays clearly marked buy and sell signals, reflecting different conditions through intuitive markers. This significantly accelerates the decision-making process for traders. With multiple types of signals defined for various strategic approaches, users can filter and adapt the indicator to suit different market environments.
The indicator also supports multi-timeframe analysis, incorporating EMA data from various periods to enhance the strength of its signals. This is especially useful in short-term trading strategies where confirmation from higher timeframes is essential.
In conclusion, this indicator serves as a comprehensive, customizable, and professional-grade analytical solution for both beginners and advanced technical analysts. Thanks to its user-friendly interface and solid mathematical foundation, it delivers a charting experience that is not only visually appealing but also highly functional.
BTC EMA+RSI Strong Signals//@version=5
indicator("BTC EMA+RSI Strong Signals", overlay=true)
ema100 = ta.ema(close, 100)
ema200 = ta.ema(close, 200)
rsi = ta.rsi(close, 14)
// Фильтры тренда
isUptrend = ema100 > ema200
isDowntrend = ema100 < ema200
// Условия входа
longCondition = isUptrend and ta.crossover(close, ema100) and rsi < 30
shortCondition = isDowntrend and ta.crossunder(close, ema100) and rsi > 70
// TP/SL
tpLong = close * 1.025
slLong = close * 0.985
tpShort = close * 0.975
slShort = close * 1.015
// Отображение
plot(ema100, color=color.orange, title="EMA 100")
plot(ema200, color=color.red, title="EMA 200")
plot(longCondition ? tpLong : na, title="TP LONG", color=color.green)
plot(longCondition ? slLong : na, title="SL LONG", color=color.red)
plot(shortCondition ? tpShort : na, title="TP SHORT", color=color.green)
plot(shortCondition ? slShort : na, title="SL SHORT", color=color.red)
// Метки сигнала
plotshape(longCondition, location=location.belowbar, color=color.green, style=shape.labelup, text="LONG")
plotshape(shortCondition, location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT")
// Alertconditions
alertcondition(longCondition, title="BTC LONG", message='BTC LONG сигнал по цене {{close}}')
alertcondition(shortCondition, title="BTC SHORT", message='BTC SHORT сигнал по цене {{close}}')
// Webhook Alerts
if longCondition
alert('{"chat_id": "@exgosignal", "text": "BTC LONG сигнал по цене ' + str.tostring(close) + ' (TP +2.5%, SL -1.5%)"}', alert.freq_once_per_bar_close)
if shortCondition
alert('{"chat_id": "@exgosignal", "text": "BTC SHORT сигнал по цене ' + str.tostring(close) + ' (TP +2.5%, SL -1.5%)"}', alert.freq_once_per_bar_close)
if close >= tpLong
alert('{"chat_id": "@exgosignal", "text": "BTC LONG: цель достигнута по цене ' + str.tostring(close) + '"}', alert.freq_once_per_bar_close)
if close <= slLong
alert('{"chat_id": "@exgosignal", "text": "BTC LONG: сработал стоп по цене ' + str.tostring(close) + '"}', alert.freq_once_per_bar_close)
if close <= tpShort
alert('{"chat_id": "@exgosignal", "text": "BTC SHORT: цель достигнута по цене ' + str.tostring(close) + '"}', alert.freq_once_per_bar_close)
if close >= slShort
alert('{"chat_id": "@exgosignal", "text": "BTC SHORT: сработал стоп по цене ' + str.tostring(close) + '"}', alert.freq_once_per_bar_close)
Apex Edge – Super RSIThe Apex Edge™ – Super RSI is not your average RSI. This is an institutional-grade signal engine designed for serious traders who want confluence, control, and confidence — all wrapped into one visual powerhouse.
━━━━━━━━━━━━━━━━━━━━
🔥 KEY FEATURES
━━━━━━━━━━━━━━━━━━━━
✔ **RSI + Divergence Engine**
• Classic & Hidden Divergences (auto-detected)
• Labelled with shapes:
▲ Green Triangle – Buy Signal (strength-based size)
▼ Red Triangle – Sell Signal
◆ Green Diamond – Classic Bullish Divergence
◆ Red Diamond – Classic Bearish Divergence
● Green Circle – Hidden Bullish Divergence
● Red Circle – Hidden Bearish Divergence
Note - Users can edit symbol colours in settings for better clarity
✔ **Trap Detection System**
• Detects low-move, high-signal clusters (liquidity traps)
• Automatically suppresses signals for X bars after detection
• Trap zones shown with shaded background (optional)
✔ **Signal Scoring Logic**
• Each signal is scored 1–6 based on:
• RSI Threshold Break
• RSI Slope
• Divergence Detected
• Trap Avoidance
• Multi-Timeframe Confluence (optional)
• The plotted shape size reflects the strength of the entry signal
✔ **Multi-Timeframe Confluence (MTF)**
• Optional filter that uses HTF and VHTF RSI alignment
• Prevents countertrend signals
• MTF Bias shown on HUD panel
✔ **Always-On HUD Panel**
• Displays:
• Signal Type
• Signal Score
• Divergence Type
• RSI (LTF & HTF)
• Trap & Cooldown Status
• MTF Bias
• Volatility %
✔ **Alert Ready**
• Buy/Sell alerts
• Trap Detected alert
• Divergence alert with dynamic message
• Perfect for webhook integrations
━━━━━━━━━━━━━━━━━━━━
📘 HOW TO TRADE IT
━━━━━━━━━━━━━━━━━━━━
✅ **Buy Setup**
• Green triangle (▲) appears **below bar**
• RSI is oversold and rising
• HTF RSI agrees (optional)
• Signal score is 3+ for best confidence
• Avoid signals during cooldown zone
✅ **Sell Setup**
• Red triangle (▼) appears **above bar**
• RSI is overbought and falling
• HTF RSI agrees (optional)
• Signal score is 3+ for best confidence
✅ **Divergences**
• Use diamonds/circles to identify momentum shifts
• Strongest when aligned with score 4–6
❗**Trap Zones**
• When background is shaded, wait for cooldown
• Signals during traps are suppressed for safety
━━━━━━━━━━━━━━━━━━━━
📊 BEST USED WITH
━━━━━━━━━━━━━━━━━━━━
🔹 Apex Edge™ – Session Sweep (to visualize liquidity levels)
🔹 Volume Profile or OBV (volume-based confirmation)
🔹 EMA Ribbon (for trend alignment)
🔹 Fair Value Gap indicator (smart money models)
━━━━━━━━━━━━━━━━━━━━
🧠 PRO TIPS
━━━━━━━━━━━━━━━━━━━━
• Use the HUD for decision confidence — if everything aligns, you’ve got an Apex-grade setup.
• Wait for candle close to confirm divergence-based entries.
• Score 5–6 = sniper entries. Score 1–2 = warning shots.
This indicator can be used alongside ApexEdge Session Sweep Pro for better visual clarity.
━━━━━━━━━━━━━━━━━━━━
© Apex Edge™ | All rights reserved.