Sniper Pro v4.4 – Candle & Flow Intelligence Edition
//@version=5
indicator("Sniper Pro v4.4 – Candle & Flow Intelligence Edition", overlay=true)
// === INPUTS ===
minScore = input.int(3, "Min Conditions for Entry", minval=1, maxval=5)
filterSideways = input.bool(true, "Block in Sideways?")
showDelta = input.bool(true, "Show Delta Counter?")
showSMA20 = input.bool(true, "Show SMA20")
showGoldenZone = input.bool(true, "Show Golden Zone?")
callColor = input.color(color.green, "CALL Color")
putColor = input.color(color.red, "PUT Color")
watchBuyCol = input.color(color.new(color.green, 70), "Watch Buy Color")
watchSellCol = input.color(color.new(color.red, 70), "Watch Sell Color")
// === INDICATORS ===
sma20 = ta.sma(close, 20)
// === DELTA CALCULATIONS ===
delta = (close - open) * volume
normalizedDelta = volume != 0 ? delta / volume : 0
deltaStrength = delta - delta
// === EXPLOSIVE CANDLE ===
body = math.abs(close - open)
wickTop = high - math.max(close, open)
wickBottom = math.min(close, open) - low
isRejection = wickTop > body or wickBottom > body
highVolume = volume > ta.highest(volume, 5)
efficiency = body / volume
isExplosive = isRejection and highVolume and efficiency > 0
// === SMART MONEY CANDLE LOGIC ===
smBuy = isExplosive and delta > 0 and close > open and close > sma20
smSell = isExplosive and delta < 0 and close < open and close < sma20
smStrength = math.min(5, math.round(math.abs(delta) / 100000))
if smBuy
label.new(bar_index, low, "SM Buy " + str.tostring(smStrength), style=label.style_label_up, size=size.normal, color=color.new(color.yellow, 0), textcolor=color.black)
if smSell
label.new(bar_index, high, "SM Sell " + str.tostring(smStrength), style=label.style_label_down, size=size.normal, color=color.new(color.orange, 0), textcolor=color.black)
// === BASIC SIGNAL SYSTEM ===
inGoldenZone = close > sma20 * 0.96 and close < sma20 * 1.04
buyScore = (inGoldenZone ? 1 : 0) + (normalizedDelta > 0.2 ? 1 : 0) + (close > sma20 ? 1 : 0)
sellScore = (inGoldenZone ? 1 : 0) + (normalizedDelta < -0.2 ? 1 : 0) + (close < sma20 ? 1 : 0)
watchBuy = buyScore == (minScore - 1)
watchSell = sellScore == (minScore - 1)
call = buyScore >= minScore
put = sellScore >= minScore
// === COLORING ===
barcolor(call ? callColor : put ? putColor : watchBuy ? watchBuyCol : watchSell ? watchSellCol : na)
// === LABELS ===
if call
label.new(bar_index, low, "CALL", style=label.style_label_up, size=size.normal, color=callColor, textcolor=color.white)
if put
label.new(bar_index, high, "PUT", style=label.style_label_down, size=size.normal, color=putColor, textcolor=color.white)
// === DELTA LABEL ===
deltaLabel = str.tostring(delta, "#.##")
if showDelta
label.new(bar_index, close, deltaLabel, style=label.style_label_left, size=size.tiny, textcolor=color.white, color=delta > 0 ? color.new(color.green, 70) : color.new(color.red, 70))
// === PLOTS ===
plot(showSMA20 ? sma20 : na, title="SMA20", color=color.yellow)
Candlestick analysis
EMA-MACD-RSI Strategy PRO//@version=5
strategy("EMA-MACD-RSI Strategy PRO", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10)
// === Indicatori ===
ema20 = ta.ema(close, 20)
ema50 = ta.ema(close, 50)
macdLine = ta.ema(close, 12) - ta.ema(close, 26)
signalLine = ta.ema(macdLine, 9)
rsi = ta.rsi(close, 14)
// === Condizioni Long ===
longCond = ta.crossover(ema20, ema50) and macdLine > signalLine and rsi > 50
if (longCond)
strategy.entry("Long", strategy.long)
// === Condizioni Short ===
shortCond = ta.crossunder(ema20, ema50) and macdLine < signalLine and rsi < 50
if (shortCond)
strategy.entry("Short", strategy.short)
// === Uscita ===
exitLong = ta.crossunder(macdLine, signalLine)
exitShort = ta.crossover(macdLine, signalLine)
if (exitLong)
strategy.close("Long")
if (exitShort)
strategy.close("Short")
// === Plot indicatori ===
plot(ema20, title="EMA 20", color=color.orange)
plot(ema50, title="EMA 50", color=color.teal)
// === Dashboard ===
var table dash = table.new(position.top_right, 2, 4, border_width=1)
if bar_index % 1 == 0
table.cell(dash, 0, 0, "Segnale", text_color=color.white, bgcolor=color.gray)
table.cell(dash, 1, 0, longCond ? "LONG" : shortCond ? "SHORT" : "-", text_color=color.white, bgcolor=longCond ? color.green : shortCond ? color.red : color.gray)
table.cell(dash, 0, 1, "RSI", text_color=color.white, bgcolor=color.gray)
table.cell(dash, 1, 1, str.tostring(rsi, format.mintick), text_color=color.white)
table.cell(dash, 0, 2, "MACD > Signal", text_color=color.white, bgcolor=color.gray)
table.cell(dash, 1, 2, str.tostring(macdLine > signalLine), text_color=color.white)
table.cell(dash, 0, 3, "EMA20 > EMA50", text_color=color.white, bgcolor=color.gray)
table.cell(dash, 1, 3, str.tostring(ema20 > ema50), text_color=color.white)
// === Alert ===
alertcondition(longCond, title="Segnale Long", message="LONG: EMA20 > EMA50, MACD > Signal, RSI > 50")
alertcondition(shortCond, title="Segnale Short", message="SHORT: EMA20 < EMA50, MACD < Signal, RSI < 50")
EMA Retest Signal Indicator (Indicator)EMA Retest Signal Indicator (Strict + Loose)
Overview:
This indicator is designed for active traders who want to identify high-probability retraction (pullback) opportunities within confirmed EMA trends. It highlights two categories of signal candles—strict and loose—based on how price interacts with fast and slow EMAs, giving you clear, visually-coded signals for both trend continuation and optimal entries.
How It Works
EMA Trend Confirmation:
The script uses a fast EMA (default 13) and a slow EMA (default 48). Trend confirmation occurs only after a user-defined number of candles have closed beyond an EMA crossover, filtering out false or premature trend shifts.
Strict Retraction Signals:
These appear when a retraction candle pulls back and tests both the fast and slow EMAs before resuming in the direction of the main trend. These are typically higher-confidence signals.
Loose Retraction Signals:
Designed to catch “shallower” or more flexible pullbacks. These signal when the candle either:
Touches only the fast EMA (but stays above/below slow EMA), or
Comes within a configurable maximum number of ticks from the slow EMA (but does not need to touch either EMA).
Blue diamonds indicate fast EMA tests; yellow diamonds indicate pure distance-based signals.
Chop Filter:
The script automatically suppresses signals if it detects the trend has shifted more than once within a configurable recent bar window (default: last 10 candles). This helps you avoid signals during choppy or sideways markets.
Trading Window Highlighting:
Optionally highlights your preferred trading hours on the chart background for visual clarity.
Inputs & Settings
Fast EMA & Slow EMA lengths
Number of bars to confirm trend after EMA crossover
Toggle for displaying strict/loose retraction signals
Maximum allowed tick distance for loose signals (yellow diamonds)
“Chop filter” (bars to look back for trend shifts)
Optional: show/hide trend background highlights
Visual Signals
Green triangle up: Strict long entry candidate
Red triangle down: Strict short entry candidate
Blue diamond: Loose retraction signal, tested fast EMA
Yellow diamond: Loose retraction signal, within max distance from slow EMA
Who Is This For?
Day traders and scalpers seeking precise pullback entries in strong trends
Algo/system traders wanting robust, visually intuitive signal logic
Anyone who wants an advanced, trend-following indicator for futures, forex, crypto, or equities
Usage Tips
Use in combination with your risk management and other confirmation tools.
Tune the “max loose ticks” and trend confirmation bars for your preferred market/volatility.
Strict retractions are usually higher confidence; loose can help catch moves that don’t quite reach the EMAs.
Note: This indicator is not financial advice and should be tested in a demo or backtest environment before live use.
Strategia 9-30 Candle con Dashboard//@version=5
indicator("Strategia 9-30 Candle con Dashboard", overlay=true)
// Impostazioni EMA
ema9 = ta.ema(close, 9)
ema30 = ta.ema(close, 30)
plot(ema9, color=color.blue, title="EMA 9")
plot(ema30, color=color.red, title="EMA 30")
// RSI e filtro
rsi = ta.rsi(close, 14)
rsiFiltroLong = rsi > 50
rsiFiltroShort = rsi < 50
// Volume e filtro
volFiltroLong = volume > ta.sma(volume, 20)
volFiltroShort = volume > ta.sma(volume, 20)
// Condizioni LONG
longCondition = ta.crossover(ema9, ema30) and close > ema9 and close > ema30 and rsiFiltroLong and volFiltroLong
plotshape(longCondition, title="Entrata Long", location=location.belowbar, color=color.green, style=shape.labelup, text="LONG")
exitLong = ta.crossunder(ema9, ema30)
plotshape(exitLong, title="Uscita Long", location=location.abovebar, color=color.orange, style=shape.labeldown, text="EXIT")
// Condizioni SHORT
shortCondition = ta.crossunder(ema9, ema30) and close < ema9 and close < ema30 and rsiFiltroShort and volFiltroShort
plotshape(shortCondition, title="Entrata Short", location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT")
exitShort = ta.crossover(ema9, ema30)
plotshape(exitShort, title="Uscita Short", location=location.belowbar, color=color.orange, style=shape.labelup, text="EXIT")
// Background per segnali forti
bgcolor(longCondition ? color.new(color.green, 85) : na, title="BG Long")
bgcolor(shortCondition ? color.new(color.red, 85) : na, title="BG Short")
// Trailing Stop
var float trailPriceLong = na
var float trailPriceShort = na
trailPerc = input.float(0.5, title="Trailing Stop %", minval=0.1, step=0.1)
if (longCondition)
trailPriceLong := close * (1 - trailPerc / 100)
else if (close > trailPriceLong and not na(trailPriceLong))
trailPriceLong := math.max(trailPriceLong, close * (1 - trailPerc / 100))
if (shortCondition)
trailPriceShort := close * (1 + trailPerc / 100)
else if (close < trailPriceShort and not na(trailPriceShort))
trailPriceShort := math.min(trailPriceShort, close * (1 + trailPerc / 100))
plot(trailPriceLong, title="Trailing Stop Long", color=color.green, style=plot.style_linebr, linewidth=1)
plot(trailPriceShort, title="Trailing Stop Short", color=color.red, style=plot.style_linebr, linewidth=1)
// Dashboard
var table dashboard = table.new(position.top_right, 2, 4, border_width=1)
bgCol = color.new(color.gray, 90)
signal = longCondition ? "LONG" : shortCondition ? "SHORT" : "-"
signalColor = longCondition ? color.green : shortCondition ? color.red : color.gray
if bar_index % 1 == 0
table.cell(dashboard, 0, 0, "Segnale:", text_color=color.white, bgcolor=bgCol)
table.cell(dashboard, 1, 0, signal, text_color=color.white, bgcolor=signalColor)
table.cell(dashboard, 0, 1, "RSI:", text_color=color.white, bgcolor=bgCol)
table.cell(dashboard, 1, 1, str.tostring(rsi, format.mintick), text_color=color.white, bgcolor=bgCol)
table.cell(dashboard, 0, 2, "Volume:", text_color=color.white, bgcolor=bgCol)
table.cell(dashboard, 1, 2, str.tostring(volume, format.volume), text_color=color.white, bgcolor=bgCol)
table.cell(dashboard, 0, 3, "EMA9 > EMA30:", text_color=color.white, bgcolor=bgCol)
table.cell(dashboard, 1, 3, str.tostring(ema9 > ema30), text_color=color.white, bgcolor=bgCol)
// Alert
alertcondition(longCondition, title="Segnale Long", message="LONG: EMA9 incrocia EMA30, RSI > 50, volume alto")
alertcondition(shortCondition, title="Segnale Short", message="SHORT: EMA9 incrocia EMA30 verso il basso, RSI < 50, volume alto")
alertcondition(exitLong, title="Uscita Long", message="Uscita da LONG: EMA9 incrocia EMA30 verso il basso")
alertcondition(exitShort, title="Uscita Short", message="Uscita da SHORT: EMA9 incrocia EMA30 verso l'alto")
AlgoFlex Gold (XAUUSD)**AlgoFlex Gold 5 Min HA Signals**
**Description**
Unlock precision buy/sell signals on XAUUSD using Heikin Ashi candles on the 5-minute timeframe. AlgoFlex Gold combines momentum detection with dynamic take-profit and stop-loss levels to help you catch short-term swings in gold with clear entry and exit guidance.
**Key Features**
* **Heikin Ashi Momentum Filter**: Smooths noise for cleaner trends.
* **Real-Time Buy/Sell Alerts**: Notifications fire immediately when setups trigger.
**How to Use**
1. Apply this script to any XAUUSD chart.
2. Set your chart type to **Heikin Ashi** and timeframe to **5 minutes**.
3. Enable Alerts: open TradingView’s Alerts panel, choose an AlgoFlex Gold condition (Buy or Sell), configure “Once Per Bar Close,” then **Create**.
**Disclaimer**
Signals are **recommendations only**. Always manage your own risk—losses can exceed deposits.
---
🔒 **Invite-Only Access**
This script is available by subscription only. To subscribe and unlock all AlgoFlex indicators:
• **Download “AlgoFlex Algo Market”** on the App Store or Google Play
• Purchase your invite-only access to XAUUSD Gold and the full suite of Forex, Indices & Commodities scripts
• Get in-app support.
Elevate your gold trading—subscribe today!
EMA MAs 7EMA(ERJUANSTURK)All ema mas values are entered. 20, 50, 100,150,200,300,400. The indicator is designed simply and elegantly.
Price Action Forecast (ERJUANSTURK)█ Overview
The Price Action Color Forecast Indicator, is an innovative trading tool that uses the power of historical price action and candlestick patterns to predict potential future market movements. By analyzing the colors of the candlesticks and identifying specific price action events, this indicator provides traders with valuable insights into future market behavior based on past performance.
█ Calculations
The Price Action Color Forecast Indicator systematically analyzes historical price action events based on the colors of the candlesticks. Upon identifying a current price action coloring event, the indicator searches through its past data to find similar patterns that have happened before. By examining these past events and their outcomes, the indicator projects potential future price movements, offering traders valuable insights into how the market might react to the current price action event.
The indicator prioritizes the analysis of the most recent candlesticks before methodically progressing toward earlier data. This approach ensures that the generated candle forecast is based on the latest market dynamics.
The core functionality of the Price Action Color Forecast Indicator:
Analyzing historical price action events based on the colors of the candlesticks.
Identifying similar events from the past that correspond to the current price action coloring event.
Projecting potential future price action based on the outcomes of past similar events.
█ Example
In this example, we can see that the current price action pattern matches with a similar historical price action pattern that shares the same characteristics regarding candle coloring. The historical outcome is then projected into the future. This helps traders to understand how the past pattern evolved over time.
█ How to use
The indicator provides traders with valuable insights into how the market might react to the current price action event by examining similar historical patterns and projecting potential future price movements.
█ Settings
Candle series
The candle lookback length refers to the number of bars, starting from the current one, that will be examined in order to find a similar event in the past.
Forecast Candles
Number of candles to project into the future.
-----------------
Disclaimer
The information contained in my Scripts/Indicators/Ideas/Algos/Systems does not constitute financial advice or a solicitation to buy or sell any securities of any type. I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from the use of or reliance on such information.
All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, backtest, or individual's trading does not guarantee future results or returns. Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
Renko Brick Color Change Alert (Simulated)//@version=5
indicator("Renko Brick Color Change Alert (Simulated)", overlay=true)
brickSize = input.float(10, "Brick Size", minval=0.1)
// Persistent variables
var float lastBrickClose = na
var int lastDirection = 0 // -1 = bearish, 1 = bullish
var int direction = 0
var int alertChange = 0
// Simulate Renko logic on close price
if na(lastBrickClose)
lastBrickClose := close
else
if close >= lastBrickClose + brickSize
direction := 1
lastBrickClose := close
else if close <= lastBrickClose - brickSize
direction := -1
lastBrickClose := close
else
direction := lastDirection
// Detect change in direction
if direction != lastDirection and direction != 0
alertChange := 1
else
alertChange := 0
// Update last direction
lastDirection := direction
// Plot shape on color change
plotshape(alertChange == 1, title="Color Change", location=location.abovebar, style=shape.labelup, color=color.red, size=size.small)
// Create alert condition
alertcondition(alertChange == 1, title="Renko Color Change Alert", message="Renko brick changed color (direction reversed).")
PnF ChartPoint and Figure (P&F) charts are a time-independent technical analysis tool that focuses purely on price movements, filtering out noise like minor price fluctuations and time. Unlike candlestick or bar charts, P&F charts ignore time and only record significant price changes based on predefined rules.
Key Characteristics of P&F Charts
No Time Axis
Only price movements matter; time is irrelevant.
Columns form based on reversals, not fixed time periods.
Uses X's and O's
X = Rising prices (demand in control)
O = Falling prices (supply in control)
Box Size (Price Increment)
Defines the minimum price change required to plot a new X or O.
Example: If the box size is **1∗∗,astockmustmoveatleast1∗∗,astockmustmoveatleast1 to record a new X or O.
Reversal Amount
Determines how much the price must reverse to switch from X's to O's (or vice versa).
Common reversal settings: 3-box reversal (price must reverse by 3x the box size).
How P&F Charts Work
1. Rising Prices (X-Columns)
A new X is added if the price rises by the box size.
If the price reverses down by the reversal amount, a new O-column starts.
2. Falling Prices (O-Columns)
A new O is added if the price falls by the box size.
If the price reverses up by the reversal amount, a new X-column starts.
Example of a P&F Chart
Suppose:
Box Size = $1
Reversal Amount = 3-box (i.e., $3)
Price Movement Chart Update
Stock rises from 10→10→11 X at $11
Rises to $12 X at $12
Drops to 9(9(12 → 9=9=3 drop) New O-column starts at 11,11,10, $9
Rises again to 12(12(9 → 12=12=3 rise) New X-column at 10,10,11, $12
About the Script:This Script uses columns instead of traditional X and O boxes.Column Printing (Red vs Green)
This Point and Figure chart alternates between two states:
X columns (green): Represent upward price movements
O columns (red): Represent downward price movements
When Green Columns (X) Are Printed:
A green column is printed when:
The script is in "X mode" (is_x is true)
A new column is created (new_column_created is true)
This happens after the price has reversed upward by at least the "reversal boxes" threshold from a previous O column
When Red Columns (O) Are Printed:
A red column is printed when:
The script is in "O mode" (is_x is false)
A new column is created (new_column_created is true)
This happens after the price has reversed downward by at least the "reversal boxes" threshold from a previous X column
How Trendlines Are Created
The script can draw two types of trendlines when the show_trendlines option is enabled:
Green Trendlines (Uptrend):
A green trendline is created when:
There's a transition from O to X columns (cond2 is true but wasn't true on the previous bar)
This represents the beginning of a potential uptrend
The trendline is solid and extends to the right
Red Trendlines (Downtrend):
A red trendline is created when:
There's a transition from X to O columns (cond1 is true but wasn't true on the previous bar)
This represents the beginning of a potential downtrend
The trendline is dashed and extends to the right
The script maintains two trendline objects - current_trendline and previous_trendline - and deletes the oldest one when a new trendline is created to prevent cluttering the chart.
In summary, this Point and Figure chart tracks price movements in discrete boxes and changes column types (and creates trendlines) when price reverses by a significant amount (defined by the reversal_boxes parameter). The chart also generates alerts when these trend changes occur, helping traders identify potential trend reversals.
Smart Volume Spike Helperhis indicator is designed to help confirm FU (liquidity sweep) candles and other smart money setups by highlighting volume spikes with directional bias.
🔍 Key Features:
Shows raw volume bars.
Plots a customizable volume moving average.
Highlights volume spikes based on a user-defined threshold (e.g., 1.5x average).
Color-coded for directional context:
🟢 Green = High volume bullish candle
🔴 Red = High volume bearish candle
⚪ Gray = Low/normal volume (no spike)
📈 Use this tool to:
Confirm FU candles or stop hunts with high volume
Filter out weak traps with low conviction
Spot institutional interest during London and NY Killzones
Complement smart money tools like Order Blocks, FVGs, and PDH/PDL sweeps
🔧 Inputs:
Volume MA Length (default: 20 bars)
Spike Threshold (default: 1.5× average volume)
💡 Best used in combination with price action or liquidity-based indicators. Works well on 15m to 1H timeframes.
Smart Money Cheat Code StrategyOrderblock scalps based strategy! BB is used to detects liquidity sweep with volume spikes. Confirmation for frequent trades.
Smart Money Strategy v6Marking all pivot points with imbalance and FVG. Automatically points out secured OB after valid liquidity sweeps with BOS and CHOCH indicator. Levels shows, Volatilities shown with BB. We want to move with smart money.
alademy-target-stoploss اسم المؤشر: الأديمي – Al-Ademy Indicator
الوصف العام:
مؤشر "الأديمي" هو أداة تحليل فني تعتمد على مزيج من مستويات الدعم والمقاومة الديناميكية، باستخدام منطق مستمد من حركة السعر الحقيقية، ومبني على خصائص شموع Heikin Ashi ومؤشر ATR.
يُستخدم المؤشر لتحديد مناطق الانعكاس المحتملة ، من خلال رسم مستويات صعود وهبوط تتفاعل مباشرة مع تغيرات السوق.
يتميز المؤشر بكونه:
- ✅ يعمل بشكل **تلقائي بالكامل** في رسم خطوط المقاومة وخطوط الدعم
- ✅ مُصمَّم ليعمل بكفاءة أعلى عند استخدام **شموع Heikin Ashi** (لا يُنصح باستخدام الشموع العادية).
- ✅ يناسب جميع الفريمات والزمنيات (من الدقيقة حتى الشهري).
---
### 🔍 **طريقة عمل المؤشر:**
- يرسم المؤشر:
- **6 خطوط مقاومة صعودية** (تظهر بالوان مختلفة فوق الشموع تدريجيًا).
- **6 خطوط دعم للهبوط (تظهر بالوان مختلفة تحت الشموع أو حسب الإعدادات).
- يعتمد على تحليل سلوك ** الانعكاس المحتمل** وإعادة رسم الخطوط عند حدوث الانعكاس
---
**آلية العمل :**
✅ احتمالية الصعود
- انتظر إفتح شمعة صعوديه خضراء Heikin Ashi واضحه فوق الخط الأول الذي باللون الاصفر** من خطوط المقاومة الأول
- يعتبر ذلك إشارة صعود محتملة
#### خطوط المقاومة
1. الخط الثاني الازرق = هو خط المقاومة الثاني
2. الخط الثالث الاحمر = هو خط المقاومة الثالث
3. الخط الرابع (أخضر غامق) = وعتبر هو خط المقاومة الرابع والاقوى والاحتمال ان يرتد منه السعر
4. الخط السادس = "منطقة التشبع"، احذر من الانعكاس.
#### ❌ للهبوط:
- احتمال الهبوط وهو عند **فتح شمعة حمراء واضحة Heikin Ashi تحت خط الاصفر للدعم الأول**.
وهاكذا مع بقية خطوط الدعم
- يتم اعتبار كل خط لاحق كمنطقة دعم واحتمال انعكاس إلى الأعلى
الخط الاخير يعتبر بمثابة تشبع بيعي وخليك مستعد لاحتمالية العوده والصعود
---
### ⚙️ **مميزات المؤشر:**
- يرسم الخطوط تلقائيًا حسب حركة الشموع والانكاسات.
- قابل للتخصيص:
- تغيير الألوان.
- تعريض الخطوط.
- تحريك الخطوط يمينًا ويسارًا.
- 🔔 يدعم التنبيهات
- 🟢 يظهر **أسهم خضراء** عند اختراقات صاعدة، و🔴 **أسهم حمراء** عند الاختراقات الهابطة.
### ✨ ملاحظة:
> المؤشر لا يقدم إشارات مضمونة 100%، لكن يعتمد على منطق فني. ننصح باستخدام أدوات تحليل إضافية لتعزيز القرار.
---
**Indicator Name: Al-Ademy Indicator
**General Description:**
The **Al-Ademy Indicator** is a technical analysis tool that combines dynamic support and resistance levels based on true price action logic. It is built using the characteristics of **Heikin Ashi candles** and the **ATR (Average True Range)** indicator.
This indicator is designed to identify **potential reversal zones** by plotting dynamic upward and downward levels that adapt in real-time to market changes.
Key Features:
* ✅ Fully **automated** plotting of support and resistance lines.
* ✅ Optimized for use with **Heikin Ashi candles** (not recommended with regular candles).
* ✅ Works on **all timeframes**, from 1-minute to monthly charts.
---
### 🔍 **How It Works:**
The indicator plots:
* **6 ascending resistance lines** (displayed in different colors above the candles progressively).
* **6 descending support lines** (displayed in different colors below the candles or as per settings).
* It uses reversal behavior analysis to dynamically redraw the lines when a reversal occurs.
---
### **Logic Behind the Indicator:**
✅ **Bullish Signal:**
* Wait for a **clear green Heikin Ashi bullish candle** to open **above the first yellow resistance line**.
* This is considered a potential bullish signal.
#### Resistance Lines:
1. **Blue line** = Second resistance level.
2. **Red line** = Third resistance level.
3. **Dark green line** = Fourth resistance level (strongest, high chance of price rejection).
4. **Sixth line** = “Overbought zone” – watch out for a possible reversal.
❌ **Bearish Signal:**
* A **clear red Heikin Ashi bearish candle** opening **below the first yellow support line** is considered a potential bearish signal.
* Each subsequent support line is treated as a potential **reversal zone to the upside**.
* The final support level represents an **oversold zone**, signaling a possible bullish reversal.
---
### ⚙️ **Indicator Features:**
* Automatically draws lines based on candle behavior and reversals.
* **Customizable settings:**
* Change colors.
* Adjust line thickness.
* Move lines horizontally.
* 🔔 **Alert support** for breakout conditions.
* 🟢 **Green arrows** for bullish breakouts, 🔴 **Red arrows** for bearish breakouts.
---
### ✨ **Note:**
> This indicator does not provide guaranteed signals. It is based on technical logic and should be used alongside other analysis tools for best results.
Session Highs and Lows (Individual)The "Session Highs and Lows (Individual)" indicator marks the highest and lowest price levels during a user-defined trading session (e.g., 14:00-22:00 CET) with horizontal lines. The session's start and end times, as well as the line end time, are fully customizable. The lines extend to a specified end time, which can be set to the next day (e.g., 3:00 CET the following day) if the session ends late. Users can also choose line colors, styles (solid, dashed, dotted), and whether to display only the current day's session. Ideal for traders analyzing specific session ranges.
VIsthis is to make it easy to identify volume imbalances and flat candles.
these are STRONG magnets that will attract price and you should be aware of them when trading
Avg Candle Size in Ticks (with Thresholds)This indicator measures and displays the average size of candles in ticks over a user-defined number of recent bars. It works by calculating the difference between the high and low of each candle, converting that into ticks based on a specified tick size, and then averaging those values over the chosen period. The result is shown in a floating table on the chart, rounded to one decimal place for clarity.
To help traders assess market volatility at a glance, the background color of the table changes dynamically based on two thresholds: a caution threshold and a danger threshold. If the average tick size drops below the danger level, the background turns red. If it’s between the caution and danger thresholds, it turns orange. Otherwise, it stays a neutral color. All three states use customizable colors, making the indicator flexible for different visual preferences.
Update 16-5-2025:
Updated with rounded Tick-sizes: xx.x
Also updated with another treshold that detects
21/50 EMA Breakout StrategyDuring the new york session, if the candle closes more than 2 points above a down facing 21 ema and if the 50 ema is also down, then you will get a sell signal and vice versa.
Impulse Zones | Flux Charts💎 GENERAL OVERVIEW
Introducing our new Impulse Zones indicator, a powerful tool designed to identify significant price movements accompanied by strong volume, highlighting potential areas of support and resistance. These Impulse Zones can offer valuable insights into market momentum and potential reversal or continuation points. For more information about the process, please check the "HOW DOES IT WORK ?" section.
Impulse Zones Features :
Dynamic Zone Creation : Automatically identifies and plots potential supply and demand zones based on significant price impulses and volume spikes.
Customizable Settings : Allows you to adjust the sensitivity of zone detection based on your trading style and market conditions.
Retests and Breakouts : Clearly marks instances where price retests or breaks through established Impulse Zones, providing potential entry or exit signals.
Alerts : You can set alerts for Bullish & Bearish Impulse Zone detection and their retests.
🚩 UNIQUENESS
Our Impulse Zones indicator stands out by combining both price action (impulsive moves) and volume confirmation to define significant zones. Unlike simple support and resistance indicators, it emphasizes the strength behind price movements, potentially filtering out less significant levels. The inclusion of retest and breakout visuals directly on the chart provides immediate context for potential trading opportunities. The user can also set up alerts for freshly detected Impulse Zones & the retests of them.
📌 HOW DOES IT WORK ?
The indicator identifies bars where the price range (high - low) is significantly larger than the average true range (ATR), indicating a strong price movement. The Size Sensitivity input allows you to control how large this impulse needs to be relative to the ATR.
Simultaneously, it checks if the volume on the impulse bar is significantly higher than the average volume. The Volume Sensitivity input governs this threshold.
When both the price impulse and volume confirmation criteria are met, an Impulse Zone is created in the corresponding direction. The high and low of the impulse bar define the initial boundaries of the zone. Zones are extended forward in time to remain relevant. The indicator manages the number of active zones to maintain chart clarity and can remove zones that haven't been touched for a specified period. The indicator monitors price action within and around established zones.
A retest is identified when the price touches a zone and then moves away. A break occurs when the price closes beyond the invalidation point of a zone. Keep in mind that if "Show Historic Zones" setting is disabled, you will not see break labels as their zones will be removed from the chart.
The detection of Impulse Zones are immediate signs of significant buying or selling pressure entering the market. These zones represent areas where a strong imbalance between buyers and sellers has led to a rapid price movement accompanied by high volume. Bullish Impulse Zones act as a possible future support zone, and Bearish Impulse Zones act as a possible future resistance zone. Retests of the zones suggest a strong potential movement in the corresponding direction.
⚙️ SETTINGS
1. General Configuration
Show Historic Zones: If enabled, invalidated or expired Impulse Zones will remain visible on the chart.
2. Impulse Zones
Invalidation Method: Determines which part of the candle (Wick or Close) is used to invalidate a zone break.
Size Sensitivity: Controls the required size of the impulse bar relative to the ATR for a zone to be detected. Higher values may identify fewer, larger zones. Lower values may detect more, smaller zones.
Volume Sensitivity: Controls the required volume of the impulse bar relative to the average volume for a zone to be detected. Higher values require more significant volume.
Labels: Toggles the display of "IZ" labels on the identified zones.
Retests: Enables the visual highlighting of retests on the zones.
Breaks: Enables the visual highlighting of zone breaks.
FVG Buy/Sell Bot"This strategy detects Fair Value Gaps and generates Buy/Sell signals with a 1:2 Risk-to-Reward setup. Webhook-enabled for automation."
当前币种差价百分比 (Bitstamp USD vs Binance USDT)A script for calculating the premium between BITSTAMP and Binance
RSIPro💥 RSIPro💥
RSIPro is an enhanced version of the classic RSI, built for traders who value both signal accuracy and visual clarity. This tool helps you instantly detect overbought and oversold zones using built-in color cues and automatic signal markers.
🚀 Key Features:
📊 Smooth RSI with adjustable period – fine-tune it for your strategy.
🔺🔻 Auto signals with arrows – when RSI crosses the 30 and 70 levels.
🎯 Dynamic background color – highlights overbought (red) and oversold (green) zones instantly.
⚙️ Customizable RSI zones – set your own overbought/oversold levels.
🔘 Clean horizontal lines: Overbought, Oversold, and Midline (50) for quick visual reference.
🧠 How to Use:
✅ Green background + up arrow = possible bounce from oversold zone.
⚠️ Red background + down arrow = potential correction from overbought zone.
Combine it with price action or trend filters for more powerful signals.
RSIPro makes RSI easy to read and even easier to trust.
Simple. Accurate. Effective. Ideal for traders of all levels.