Mark Last Day of Month Close + DashboardWill be given complimentary with Renko 05 strategy, that will help you to get the exact price at the starting of the month you have to set for your desired token
รูปแบบชาร์ต
RSI 14 Long/Short StrategyThis is a Bitcoin-only long strategy that uses the RSI (Relative Strength Index) indicator to identify potential buying opportunities. The strategy enters a long position when RSI is below the specified threshold and the price conditions are met, and it closes the position when the profit target is reached. It also includes a position averaging mechanism for additional entries during price drops.
Momentum SNR VIP [TP1-3 + SL Aligned Right]//@version=6
indicator("Momentum SNR VIP ", overlay=true)
// === Settings ===
pip = input.float(0.0001, "Pip Size", step=0.0001)
sl_pip = 50 * pip
tp1_pip = 40 * pip
tp2_pip = 70 * pip
tp3_pip = 100 * pip
lookback = input.int(20, "Lookback for S/R", minval=5)
// === SNR ===
pivotHigh = ta.pivothigh(high, lookback, lookback)
pivotLow = ta.pivotlow(low, lookback, lookback)
supportZone = not na(pivotLow)
resistanceZone = not na(pivotHigh)
plotshape(supportZone, title="Support", location=location.belowbar, color=color.blue, style=shape.triangleup, size=size.tiny)
plotshape(resistanceZone, title="Resistance", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.tiny)
// === Price Action ===
bullishEngulfing = close < open and close > open and close > open and open <= close
bearishEngulfing = close > open and close < open and close < open and open >= close
bullishPinBar = close < open and (low - math.min(open, close)) > 1.5 * math.abs(close - open)
bearishPinBar = close > open and (high - math.max(open, close)) > 1.5 * math.abs(close - open)
buySignal = supportZone and (bullishEngulfing or bullishPinBar)
sellSignal = resistanceZone and (bearishEngulfing or bearishPinBar)
// === SL & TP ===
rawBuySL = low - 10 * pip
buySL = math.max(close - sl_pip, rawBuySL)
buyTP1 = close + tp1_pip
buyTP2 = close + tp2_pip
buyTP3 = close + tp3_pip
rawSellSL = high + 10 * pip
sellSL = math.min(close + sl_pip, rawSellSL)
sellTP1 = close - tp1_pip
sellTP2 = close - tp2_pip
sellTP3 = close - tp3_pip
// === Plot Lines ===
plot(buySignal ? buySL : na, title="Buy SL", color=color.red, style=plot.style_line, linewidth=1)
plot(buySignal ? buyTP1 : na, title="Buy TP1", color=color.green, style=plot.style_line, linewidth=1)
plot(buySignal ? buyTP2 : na, title="Buy TP2", color=color.green, style=plot.style_line, linewidth=1)
plot(buySignal ? buyTP3 : na, title="Buy TP3", color=color.green, style=plot.style_line, linewidth=1)
plot(sellSignal ? sellSL : na, title="Sell SL", color=color.red, style=plot.style_line, linewidth=1)
plot(sellSignal ? sellTP1 : na, title="Sell TP1", color=color.green, style=plot.style_line, linewidth=1)
plot(sellSignal ? sellTP2 : na, title="Sell TP2", color=color.green, style=plot.style_line, linewidth=1)
plot(sellSignal ? sellTP3 : na, title="Sell TP3", color=color.green, style=plot.style_line, linewidth=1)
// === Floating Labels on Right ===
if buySignal
label.new(x=bar_index + 20, y=buySL, text="SL : " + str.tostring(buySL, format.mintick), style=label.style_label_right, color=color.red, textcolor=color.white)
label.new(x=bar_index + 21, y=buyTP1, text="TP 1 : " + str.tostring(buyTP1, format.mintick), style=label.style_label_right, color=color.green, textcolor=color.white)
label.new(x=bar_index + 22, y=buyTP2, text="TP 2 : " + str.tostring(buyTP2, format.mintick), style=label.style_label_right, color=color.green, textcolor=color.white)
label.new(x=bar_index + 23, y=buyTP3, text="TP 3 : " + str.tostring(buyTP3, format.mintick), style=label.style_label_right, color=color.green, textcolor=color.white)
if sellSignal
label.new(x=bar_index + 20, y=sellSL, text="SL : " + str.tostring(sellSL, format.mintick), style=label.style_label_right, color=color.red, textcolor=color.white)
label.new(x=bar_index + 21, y=sellTP1, text="TP 1 : " + str.tostring(sellTP1, format.mintick), style=label.style_label_right, color=color.green, textcolor=color.white)
label.new(x=bar_index + 22, y=sellTP2, text="TP 2 : " + str.tostring(sellTP2, format.mintick), style=label.style_label_right, color=color.green, textcolor=color.white)
label.new(x=bar_index + 23, y=sellTP3, text="TP 3 : " + str.tostring(sellTP3, format.mintick), style=label.style_label_right, color=color.green, textcolor=color.white)
// === Signal Markers ===
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// === Alerts ===
alertcondition(buySignal, title="Buy Alert", message="🟢 BUY at Support Zone + Price Action")
alertcondition(sellSignal, title="Sell Alert", message="🟡 SELL at Resistance Zone + Price Action")
Yutan Mumlar)E Bars Engulfing candles. The bullish signal is given when the green candle engulfs the previous red candle, and the bearish signal is given when the red candle engulfs the previous green candle.
IFVG Scanner Charts Algo
The IFVG Scanner (Inversion Fair Value Gap Scanner)is a powerful ICT concept -based multi-symbol scanner that identifies bullish and bearish inversion fair value gaps (IFVGs) across up to 40 assets simultaneously.
This scanner helps traders monitor market structure shifts and liquidity rejections by automatically highlighting when price breaks and returns to an FVG zone—a prime entry condition used by smart money traders.
🧠 What Is an IFVG?
An Inversion Fair Value Gap forms when a Fair Value Gap is broken, and then price returns to it. At that moment, the gap becomes a reversal or continuation zone—often acting as dynamic support/resistance.
The IFVG Scanner is designed to:
Spot real-time price entry into IFVG zones
Differentiate bullish vs bearish setups
Alert you when these zones become actionable
🛠️ How to Use It on TradingView
Add the indicator to any chart.
Input up to 40 symbols (tickers you want to scan).
The script will monitor and scan all tickers live.
Watch for real-time alerts and visual table updates:
Bullish IFVGs show up in the green column.
Bearish IFVGs show in the red column.
Click on the corresponding symbols in your watchlist to analyze the full setup.
✅ Want to scan more than 40 symbols?
Simply add the IFVG Scanner again as a second (or third) instance on your chart, and input a new batch of tickers. Each version operates independently and updates in real-time.
📋 Settings Overview
🔁 Show Last IFVG
Controls how many recent IFVG zones are shown on the chart.
Keeps your visuals clean and focused on the latest opportunities.
📏 ATR Multiplier
Filters out tiny gaps.
Only shows IFVGs where the gap is larger than ATR × Multiplier.
Default is 0.25 (adjust higher for stronger volatility filters).
💧 Liquidity Rejection Filters
Ensures the zone was formed with strong wick rejection (fakeouts/liquidity grabs).
Choose Points or Percentage to define the minimum wick size.
Helps confirm that the setup had real institutional interest.
🚫 Max Gap Threshold
Prevents detection of unreliable or massive gaps.
Filters out IFVGs formed with abnormal candles (like during news or illiquid sessions).
Define by Points or Percent between candles in the FVG.
🎨 Visual Settings
Bull Color: Color of bullish IFVG zones (typically green)
Bear Color: Color of bearish IFVG zones (typically red)
Midline Color: Dashed midline inside IFVG zones
Extend IFVG?: Extend boxes to the right and show auto-generated Buy/Sell signal labels
📊 Symbol Inputs (1 to 40)
Enter up to 40 tickers using the inputs (NASDAQ:AAPL, NYSE:TSLA, etc.)
🧾 Table Display
Show Exchange: Toggle full ticker format like "NASDAQ:MSFT"
Table Position: Choose where the IFVG table appears
Table Background Color: Customize visual style
Displays:
✅ IFVG Bullish (Green)
❌ IFVG Bearish (Red)
🧠 Example Use Case
Let’s say you're monitoring 40 stocks across the S&P 500. The IFVG Scanner alerts you that AAPL and NVDA have both returned to bullish IFVG zones after a clean liquidity sweep and ATR-validated imbalance.
You then:
Open the chart
Confirm the smart money reaction
Execute a long trade with high confluence
🔔 Alerts
Alerts automatically trigger when:
Price enters a bullish IFVG zone
Price enters a bearish IFVG zone
Each alert shows the ticker name and direction. You can customize alert messages within TradingView.
⚠️ Disclaimer
Charts Algo tools are developed for educational and informational purposes only. They are not trading advice or investment recommendations. Always conduct your own research and apply proper risk management before making trading decisions. Markets involve risk, and past performance is not indicative of future results.
Chart Pattern Scanner
The Chart Pattern Scanner is a comprehensive multi-symbol scanning tool designed to detect 25+ popular chart patterns across up to 40 tickers simultaneously. Whether you’re tracking wedges, flags, head & shoulders, or double tops/bottoms, this tool highlights pattern signals visually and in a customizable table — right on your chart.
🔎 What It Does
Scans up to 40 symbols at once using Pine Script’s multi-symbol request system
Detects bullish, bearish, and neutral chart patterns such as:
Double Bottom / Double Top
Triple Bottom / Triple Top
Broadening Formations (Asc, Desc, Symmetrical)
Bull/Bear Flags & Pennants
Head and Shoulders (Regular, Ascending, Descending)
Elliott Waves
Alt Flags
Ascending / Descending Wedges
Outputs the scan in a scrollable table that updates in real-time
Draws detected patterns visually on your current chart if applicable
⚙️ Settings Overview
📁 Pattern Filters
Toggle which chart patterns you want to scan for. You can enable/disable specific formations to streamline your results:
Example: Only enable “Double Bottom” and “Bull Flag” for bullish setups
🎨 Drawing Customization
Customize the look of patterns and drawings:
Bullish Color, Bearish Color, Neutral Color
Change Label Text Color, Dotted Line Style, etc.
📐 Pattern Logic Configuration
Set your tolerances for pattern recognition:
AB Minimum Ratio, BC/BE Max Ratios: Control flag/pennant symmetry
Lower & Upper Tolerance: Allow flexibility in structure recognition
🧾 Symbol Entry
Use the “Symbols” input field to list up to 40 tickers (comma-separated).
Example:
Copy
Edit
AAPL,MSFT,TSLA,NVDA,AMD
🧱 Table Settings
Choose table position: Top left, center, bottom right, etc.
Customize table text color and size
➕ Want to Scan More Than 40 Symbols?
Simply add the indicator again from your script list.
Each new instance allows another 40 symbols — for example:
1st script = 40 tickers
2nd script = another 40
3rd script = 40 more, and so on...
This gives you unlimited scanning potential with minimal setup effort.
🖼️ Visual Drawings on Active Chart
The script also overlays drawings directly on your chart if any pattern is detected on your current symbol and timeframe:
Trendlines, necklines, wedge boundaries, and wave counts
Automatically labeled with clean formatting
Styles adjust dynamically depending on selected color preferences
To enable or disable drawing visibility, use the "Display Drawings?" toggle in the settings.
🛎️ Alerts
Alerts can be set to notify when new patterns are detected across any of your selected symbols.
⚠️ Disclaimer
This indicator is provided by Charts Algo for educational and informational purposes only. It does not constitute financial advice or trading recommendations. Always conduct your own analysis before making any trading decisions. Use at your own risk.
RSI Levels on Candle Chart (40/50/60)//@version=5
indicator("RSI Levels on Candle Chart (40/50/60)", overlay=true)
// === RSI Calculation ===
rsi = ta.rsi(close, 21)
// === Define RSI Levels to Draw ===
rsi_40 = 40
rsi_50 = 50
rsi_60 = 60
// === Define RSI min/max range for scaling to price
rsi_min = 30
rsi_max = 70
// === Get visible price range for mapping
price_min = ta.lowest(low, 100)
price_max = ta.highest(high, 100)
// === Function to map RSI to price chart Y-axis
rsiToPrice(rsiLevel) =>
price_min + (rsiLevel - rsi_min) / (rsi_max - rsi_min) * (price_max - price_min)
// === Map RSI levels to price scale
price_rsi_40 = rsiToPrice(rsi_40)
price_rsi_50 = rsiToPrice(rsi_50)
price_rsi_60 = rsiToPrice(rsi_60)
// === Plot horizontal lines at RSI levels
plot(price_rsi_40, title="RSI 40 (Red)", color=color.red, linewidth=2)
plot(price_rsi_50, title="RSI 50 (Blue)", color=color.blue, linewidth=2)
plot(price_rsi_60, title="RSI 60 (Green)", color=color.green, linewidth=2)
SMC Simple Multi-TF High/Low (w/ Labels)How this works:
• Each line is plotted only on the current candle (not extended right).
• Each label sits at the very end of the line, right on the price/candle edge.
• Only the latest high/low for each type is shown and updated live.
• No future bars! Everything stays “anchored” to the real candle.
SMC Simple Multi-TF High/Low (w/ Labels)How this works:
• Each line is plotted only on the current candle (not extended right).
• Each label sits at the very end of the line, right on the price/candle edge.
• Only the latest high/low for each type is shown and updated live.
• No future bars! Everything stays “anchored” to the real candle.
RelicusRoad - Gold & Bitcoin90% of traders lose money because they do not know what they are doing. They do not have a system in place that works. They do not have a mentor to guide them. They do not have a community to support them. They do not have the right tools to help them make better decisions.
RelicusRoad is the ultimate trading system that will help you make better decisions and become a better trader. It is the result of years of research and development by a team of professional traders who have been in the market for over 10 years.
The STRAT Scanner
The STRAT Scanner is a powerful multi-symbol screener designed to detect actionable price action setups based on The Strat framework, made popular by Rob Smith. This tool is built for serious traders looking to monitor up to 30 symbols at once, across any timeframe, with crystal-clear identification of candlestick combinations and The Strat sequences.
🧠 What This Indicator Does:
This scanner runs real-time screening on your selected watchlist and highlights The Strat patterns directly on the chart and in a clean, organized table view.
It detects:
✅ Doji
✅ Hammer & Inverted Hammer
✅ Failed 2U & 2D Setups
✅ 3-bar Reversals (Full Outside Bars)
✅ 2-1, 1-1, 3-1, 1-3, 3-3
✅ Potential 3s
You can visually see each pattern directly on the chart using triangle markers and track symbol-by-symbol signal summaries in a live table on-screen.
⚙️ How to Use It:
Apply the Indicator:
Search for The STRAT Scanner in your Indicators tab (after being invited), then apply it to any chart.
Customize Your Symbols (Up to 30):
Inside the settings panel under the “Symbols” section, you can select up to 30 stocks to scan. Each symbol has a checkbox and ticker field. Only checked symbols will be active.
View the Table:
On your chart, you'll see a compact table that dynamically updates as new signals form across your selected symbols.
Pattern Detection Labels:
On the main chart (overlay), triangle shapes will highlight pattern signals as they appear:
🔺 Below the bar for bullish signals (green candles)
🔻 Above the bar for bearish signals (red candles)
Change Table Location and Size:
In the settings, you can:
Adjust table position (Top Left, Bottom Right, etc.)
Change text size
Customize table colors
🔁 Want to Scan More Than 30 Symbols?
To scan more than 30 symbols, simply:
Add this indicator again to the same chart
Adjust the second instance with a new set of 30 tickers
You can run multiple copies of this scanner to monitor 60, 90, 120+ tickers simultaneously.
📈 Best Use Cases:
Traders following The Strat method
Options traders using multi-ticker setups
Day and swing traders scanning for pattern-based entries
⚠️ Disclaimer
This indicator is developed by Charts Algo for educational and informational purposes only. It does not constitute financial advice. Always conduct your own analysis and risk management before making any trading decisions. Past performance does not guarantee future results.
AlphaTrend (BASIC)AlphaTrend is an advanced trading indicator that leverages proprietary tools, real-time data, and custom metrics to give traders a competitive edge. Designed for all experience levels, it works instantly—no advanced charting skills required.
ADVANCED and PRO versions are available. (See below)
🔍 How It Works
At the core of AlphaTrend is Dynamic Reversion Bands — a sophisticated real-time system that adapts to price action by automatically adjusting to evolving market conditions.
These bands act like a roadmap, helping traders identify:
Mean reversion trade opportunities
Trend strength
Emotion-driven market conditions (like FOMO)
The system is rooted in Mean Reversion Theory:
If an asset's price deviates significantly from its historical average, it tends to “revert” back to that average over time. Traders can use this behavior to spot potential buying or selling opportunities:
Overbought Conditions: If the price moves too far above the mean, it may signal a pullback—traders might sell or short.
Oversold Conditions: If the price drops well below the mean, it may be undervalued—traders might buy in anticipation of a bounce.
⚪🟡🔴🟡⚪ Dynamic DOTS
AlphaTrend visualizes market overextension through dynamic DOTS:
White DOTS = Average conditions
Yellow DOTS = Above average conditions
Red DOTS = Extreme conditions
The DOTS update in real time as the candle is forming—appearing, disappearing, and shifting color based on current intensity levels. Once the candle closes, however, the DOTS do not repaint. This ensures clarity and confidence in every signal.
This is crucial, as many indicators repaint and revise data after the fact, undermining traders’ trust. With AlphaTrend, once a candle closes, the data remains permanently fixed.
📊 Adaptability and Market Insight
AlphaTrend adapts to any timeframe, but performs best on longer-duration candles, where signals are fewer but more reliable. Multi-interval displays (e.g., 1hr, 4hr, Daily) are highly recommended. That being said it does tend to give strong signals on all time frames even down to 1 min candles.
The tool also integrates several intuitive market overlays:
Auto-generated support and resistance levels
Real-time supply and demand zones
Money flow tracking from institutions and banks
⚠️ FOMO Candles (ADVANCED/PRO ONLY)
FOMO stands for Fear of Missing Out—a key emotional driver in volatile markets. AlphaTrend identifies FOMO candles, which change color (customizable by the user) to indicate potential emotionally irrational buying or selling activity.
Although these conditions can persist short-term due to macroeconomic or geopolitical catalysts, they often lack sustainability. FOMO candles serve as an early warning system, signaling caution and highlighting potential trend reversals.
💰 Institutional Money Flow (ADVANCED/PRO ONLY)
AlphaTrend tracks the flow of money from major institutions and banks, highlighting when significant capital enters or exits the market. These flows appear as blue and yellow plots in the lower panel of the chart and help traders distinguish between moves driven by retail traders and those driven by “smart money.”
📈 Auto-Generated Trendlines (ADVANCED/PRO ONLY)
AlphaTrend (PRO) automatically plots trendlines to identify key support and resistance levels.
Resistance Trendlines (Green): Signal a breakout when the stock price moves above the line, indicating potential bullish momentum.
Support Trendlines (Red): Signal a breakdown when the stock price moves below the line, suggesting bearish momentum.
⌚ Multi-Timeframe Support and Resistance Lines (ADVANCED/PRO ONLY)
AlphaTrend (PRO) allows users to plot support and resistance lines from multiple timeframes
👷 Areas of Interest (Supply/Demand Zones) (ADVANCED/PRO ONLY)
AlphaTrend (PRO) auto-generates Supply and Demand Zones based on the user’s current chart timeframe.
🔫 Overbought/Oversold Banners (PRO ONLY)
This feature displays banners to indicate potential overbought or oversold conditions
🌊 Dynamic Reversion Bands (PRO ONLY)
Dynamic Reversion Bands are adaptive bands that identify when a stock or index is overextended relative to its typical price behavior.
🔑 Key Features
✅ Dynamic DOTS – Real-time visual indicators that shift based on buying/selling intensity. DOTS do not repaint after a candle closes.
✅ Multi-Timeframe Adaptability – Works across all timeframes. Longer durations provide more accurate, reliable signals but also effective on lower timeframes. Multi-interval chart setups are recommended.
✅ Institutional Money Flow Plots – Reveal whether major financial players are entering or exiting a trade.
✅ Universal Compatibility – Supports stocks, crypto, forex, and commodities.
✅ User-Friendly & Customizable – Plug-and-play design with extensive customization options.
🚫FEATURES NOT INCLUDED IN BASIC (available on PRO version)
✅ Support & Resistance Mapping – Automatically identifies critical price levels (works with 5m, 15m, 30m, 1H, 4H, and custom intervals).
✅ FOMO Candles – Highlight emotionally driven price moves that often precede reversals.
✅ Supply & Demand Zones – Auto-populated zones that reinforce support and resistance areas.
✅ Dynamic Reversion Bands – Proprietary, real-time indicators that adapt to price behavior and highlight overbought/oversold conditions.
🚀 How to Gain Access
📩 Reach Out to the Author: Visit our profile and send a direct message.
💳 Purchase & Unlock: After payment, DM the author your TradingView username + payment email. Access will be granted within 48 hours. Add to favorites and search for it in the invite-only section.
📈 Start Trading: Add AlphaTrend to your charts and you're ready to go!
Trade smarter, not harder — let AlphaTrend’s intelligent design give you the edge you need.
AlphaTrend (ADVANCED) and AlphaTrend (PRO) versions are only available by direct request. Please contact the author for more information.
>>>>>>>>>>>>>>>>>
⚖️ Legal Disclaimer
By accessing or using the AlphaTrend stock indicator (“the Software”), you (“the User”) agree to the following terms:
Authorized Use:
The AlphaTrend indicator is intended for personal use only, specifically for trading stocks, commodities, or other financial instruments.
Restrictions on Use:
You may not reproduce, redistribute, sublicense, sell, or otherwise distribute the AlphaTrend indicator, its source code, or any derivative in any format or method—electronic, mechanical, or otherwise.
Legal Enforcement:
Unauthorized use or distribution constitutes a violation of intellectual property rights and is subject to civil and/or criminal penalties. The AlphaTrend creator reserves all legal rights and remedies.
By using the software, you affirm that you have read, understood, and agree to these terms.
📌 Risk Disclosure
Past performance is not indicative of future results. All investments involve risk, and there is no guarantee any strategy or indicator mentioned will be suitable or profitable.
Changing market conditions may render parts of this content outdated. This indicator is not a substitute for personalized financial advice. Please consult a qualified professional before making investment decisions.
Engulfing Pattern LineThe "Engulfing Pattern Line" is a custom TradingView indicator designed to identify and visualize engulfing candlestick patterns on a price chart, which are commonly used in technical analysis to predict potential reversals or continuations in market trends. This indicator specifically detects bullish and bearish engulfing patterns and draws a line extending from the engulfed candle for a user-defined number of candles.
نصي البرمجي//
@version
=5
indicator("Multi Indicator Template - Stoch, MACD, Donchian, SMI, EMA, Volume", overlay=true)
// 1. EMA (متوسط متحرك أسي)
show_ema = input(true, title="Show EMA")
ema_length = input.int(14, title="EMA Length")
ema_val = ta.ema(close, ema_length)
plot(show_ema ? ema_val : na, color=http://color.blue, title="EMA")
// 2. Donchian Trend Ribbon
show_donchian = input(true, title="Show Donchian Trend Ribbon")
donchian_length = input.int(20, title="Donchian Length")
donchian_upper = ta.highest(high, donchian_length)
donchian_lower = ta.lowest(low, donchian_length)
donchian_mid = (donchian_upper + donchian_lower) / 2
donchian_trend = close > donchian_mid ? 1 : close < donchian_mid ? -1 : 0
bgcolor(show_donchian ? (donchian_trend == 1 ? color.new(http://color.green, 85) : donchian_trend == -1 ? color.new(http://color.red, 85) : na) : na, title="Donchian Trend Ribbon")
// 3. Stochastic Oscillator
show_stoch = input(true, title="Show Stochastic")
stoch_k_len = input.int(14, title="Stoch K Length")
stoch_d_len = input.int(3, title="Stoch D Length")
k = ta.stoch(close, high, low, stoch_k_len)
d = ta.sma(k, stoch_d_len)
plot(show_stoch ? k : na, color=color.purple, title="Stoch %K")
plot(show_stoch ? d : na, color=http://color.orange, title="Stoch %D")
hline(20, "Oversold", color=color.gray)
hline(80, "Overbought", color=color.gray)
// 4. MACD
show_macd = input(true, title="Show MACD")
= ta.macd(close, 12, 26, 9)
macd_hist_plot = plot(show_macd ? hist : na, color=http://color.red, style=http://plot.style_columns, title="MACD Histogram")
macd_line_plot = plot(show_macd ? macdLine : na, color=http://color.blue, title="MACD Line")
signal_line_plot = plot(show_macd ? signalLine : na, color=http://color.orange, title="Signal Line")
// 5. SMI (Stochastic Momentum Index)
show_smi = input(true, title="Show SMI")
smi_k_len = input.int(14, title="SMI K Length")
smi_d_len = input.int(3, title="SMI D Length")
smi_smooth = input.int(3, title="SMI Smooth")
smi = ta.sma(ta.stoch(close, high, low, smi_k_len), smi_smooth)
smi_signal = ta.sma(smi, smi_d_len)
plot(show_smi ? smi : na, color=color.fuchsia, title="SMI")
plot(show_smi ? smi_signal : na, color=color.teal, title="SMI Signal")
hline(-40, "SMI Oversold", color=http://color.red)
hline(40, "SMI Overbought", color=http://color.green)
// 6. Volume (أحجام التداول)
show_vol = input(true, title="Show Volume")
plot(show_vol ? volume : na, color=color.gray, style=http://plot.style_columns, title="Volume")
// إشارات الشراء حسب شروطك (تشبع بيعي SMI أقل من -40، الدونشيان أخضر، ستوكاستك أقل من 20، خط MACD ليس أسفل الهيستوجرام)
buy_signal = smi < -40 and donchian_trend == 1 and k < 20 and macdLine >= hist
plotshape(buy_signal, style=shape.triangleup, location=location.belowbar, color=http://color.green, size=size.small, title="Buy Signal")
SnD SCANNER V 1.0This is a test script, will update on going.
This Indicator will help you find the unfilled order in the market.
Such as RBR DBR or DBD RBD.
Still on going test, so I will update this on the run.
[TH] Advanced SMC/ICT Strategy (Condark2)### **Indicator Settings (English)**
This script is designed to analyze market structure and identify trading opportunities based on Smart Money Concept (SMC) and Inner Circle Trader (ICT) principles. Users can customize the following settings:
#### **Timeframe Settings**
* **Higher Timeframe (HTF) - For Main Structure:** Sets the higher timeframe used to analyze the main market structure (e.g., the primary trend). The default is 5 minutes.
* **Lower Timeframe (LTF):** This is the current chart timeframe you are on, used for more precise entry timing.
---
#### **Market Structure Settings**
* **Swing Lookback (HTF/LTF):** Defines the number of candles used to identify Swing Highs and Swing Lows on both the HTF and LTF.
* **Break of Structure (BOS) Line Color:** Sets the color for lines indicating the price has broken the previous structure in the direction of the trend.
* **Change of Character (CHoCH) Line Color:** Sets the color for lines indicating a potential change in the market trend.
---
#### **Point of Interest (POI) Settings**
* **Order Block Color (Bullish/Bearish):** Sets the color for "Order Block" zones (areas with anticipated significant buy or sell orders) for both uptrends and downtrends.
* **Show Premium/Discount Zones:** Toggles the display of expensive (Premium) and cheap (Discount) price zones, calculated from the last swing, to aid in deciding whether to look for buy or sell setups.
---
#### **Trade & Risk Management Settings**
* **Entry Type:** This is a key setting that defines your entry strategy. There are four options:
1. **Confirmation Candle:** Waits for a confirmation candle to form within the Order Block before entering (most conservative).
2. **Instant OB Edge Entry (Limit Entry):** Sets a limit order to enter as soon as the price touches the edge of the Order Block.
3. **50% of OB Entry (Aggressive Limit):** Sets a limit order at the midpoint of the Order Block for a better price, but with higher risk.
4. **Confirmation + Candle SL (Aggressive):** Waits for a confirmation candle and then places the Stop Loss right at the wick of that candle. This is the most aggressive entry style.
* **Stop Loss Placement:** Determines where the stop loss is placed, based on the LTF Order Block, the last LTF swing, or the last HTF swing. (This is ignored if using the "Aggressive SL" entry type).
* **Take Profit Mode:** Sets the profit target, which can be an HTF Liquidity level or a fixed Risk/Reward Ratio from 1R to 5R.
* **SL Buffer (multiplied by ATR):** Adds a small buffer to the Stop Loss, calculated using the ATR, to help prevent being stopped out by minor volatility.
* **Number of Trade History to Display:** Sets how many past trades are shown on the performance dashboard.
---
#### **Display Settings**
* **Enable Alerts:** Toggles alerts for new trade signals and when a trade is closed (for either a win or a loss).
***
### **คำอธิบายการตั้งค่า (ภาษาไทย)**
สคริปต์นี้ถูกออกแบบมาเพื่อวิเคราะห์โครงสร้างตลาดและหาจังหวะเข้าเทรดตามหลักการ Smart Money Concept (SMC) และ Inner Circle Trader (ICT) โดยผู้ใช้สามารถปรับแต่งค่าต่างๆ ได้ดังนี้
#### **การตั้งค่า Timeframe**
* **Higher Timeframe (HTF) - สำหรับโครงสร้างหลัก:** ใช้สำหรับกำหนดไทม์เฟรมที่ใหญ่กว่าเพื่อวิเคราะห์โครงสร้างตลาดหลัก (เช่น แนวโน้มหลัก) ค่าเริ่มต้นคือ 5 นาที
* **Lower Timeframe (LTF):** คือไทม์เฟรมปัจจุบันของกราฟที่คุณเปิดอยู่ ใช้สำหรับหาจังหวะการเข้าเทรดที่ละเอียดขึ้น
---
#### **การตั้งค่าโครงสร้างตลาด (Market Structure)**
* **ระยะมองหา Swing (HTF/LTF):** กำหนดจำนวนแท่งเทียนที่จะใช้ในการระบุจุดสูงสุด (Swing High) และจุดต่ำสุด (Swing Low) ทั้งในไทม์เฟรมหลักและไทม์เฟรมปัจจุบัน
* **สีเส้น Break of Structure (BOS):** กำหนดสีของเส้นที่บ่งบอกว่าราคาสามารถทะลุโครงสร้างเดิมไปในทิศทางเดียวกับแนวโน้ม
* **สีเส้น Change of Character (CHoCH):** กำหนดสีของเส้นที่บ่งบอกว่าราคาเริ่มมีการเปลี่ยนทิศทางของแนวโน้ม
---
#### **การตั้งค่าจุดสนใจ (Point of Interest)**
* **สี Order Block (Bullish/Bearish):** กำหนดสีของโซน "Order Block" (โซนที่คาดว่ามีคำสั่งซื้อขายรออยู่) สำหรับแนวโน้มขาขึ้นและขาลง
* **แสดงโซน Premium/Discount:** เปิด/ปิดการแสดงโซนราคาแพง (Premium) และราคาถูก (Discount) ซึ่งคำนวณจาก Swingล่าสุด เพื่อช่วยในการตัดสินใจว่าควรหาจังหวะซื้อหรือขาย
---
#### **การตั้งค่าการเข้าเทรดและจัดการความเสี่ยง**
* **รูปแบบการเข้าเทรด (Entry Type):** เป็นหัวใจสำคัญในการกำหนดกลยุทธ์ มี 4 รูปแบบให้เลือก:
1. **ยืนยันด้วยแท่งเทียน (Confirmation):** รอแท่งเทียนยืนยันการกลับตัวในโซน Order Block ก่อนเข้าเทรด (ปลอดภัยที่สุด)
2. **เข้าที่ขอบ OB ทันที (Limit Entry):** ตั้งคำสั่งรอเข้าเทรดที่ขอบของโซน Order Block ทันทีเมื่อราคาวิ่งเข้ามา
3. **เข้าที่ 50% ของ OB (Aggressive Limit):** ตั้งคำสั่งรอเข้าเทรดที่จุดกึ่งกลางของโซน Order Block เพื่อให้ได้ราคาที่ดีขึ้นแต่เสี่ยงกว่า
4. **ยืนยัน + SL ที่แท่งเทียน (Aggressive):** รอแท่งเทียนยืนยัน แล้ววางจุดตัดขาดทุน (Stop Loss) ไว้ที่ปลายไส้ของแท่งเทียนนั้นทันที เป็นรูปแบบที่ดุดันและมีความเสี่ยงสูงสุด
* **รูปแบบการวาง Stop Loss:** กำหนดตำแหน่งของจุดตัดขาดทุน โดยอิงจาก Order Block, Swing ล่าสุดใน LTF, หรือ Swing ล่าสุดใน HTF (ตัวเลือกนี้จะถูกข้ามไปหากเลือกเข้าเทรดแบบ "Aggressive SL")
* **รูปแบบ Take Profit:** กำหนดเป้าหมายการทำกำไร โดยสามารถเลือกเป็นจุดสภาพคล่อง (Liquidity) ใน HTF หรือกำหนดเป็นอัตราส่วนความเสี่ยงต่อผลตอบแทน (Risk/Reward Ratio) ตั้งแต่ 1R ถึง 5R
* **ระยะห่าง SL (คูณด้วย ATR):** เพิ่มระยะห่างของ Stop Loss เล็กน้อยโดยคำนวณจากค่า ATR เพื่อป้องกันการถูกเกี่ยว SL โดยไม่จำเป็น
* **จำนวนประวัติการเทรดที่จะแสดง:** กำหนดจำนวนผลการเทรดย้อนหลังที่จะแสดงบน Dashboard
---
#### **การตั้งค่าการแสดงผล**
* **เปิดใช้งานการแจ้งเตือน:** สามารถเปิด/ปิดการแจ้งเตือนเมื่อมีสัญญาณการเข้าเทรด หรือเมื่อการเทรดปิดลง (ทั้งกำไรและขาดทุน)
Filtered FVG - Impulsive Only📌 Filtered Fair Value Gap (FVG) — Impulse-Based Detection Only
This indicator detects Fair Value Gaps (FVGs) that occur only after strong, impulsive price moves, helping traders avoid false signals during sideways or choppy markets.
🔍 Key Features:
• ✅ Filters out weak FVGs formed in ranging conditions.
• ✅ Marks only FVGs where the candle body is ≥ your defined % of total range (default: 60%).
• ✅ Plots bullish and bearish FVGs as colored boxes.
• ✅ Optional display of unmitigated levels for tracking.
• ✅ Clean and lightweight for intraday or swing setups.
🎯 Why Use This?
Not all FVGs carry institutional intent. This script narrows focus to only those gaps that emerge after displacement candles, improving quality of setups and reducing chart noise.
⚙️ Customizable Inputs:
• Minimum body size for impulsive move.
• Extend length for FVG zone display.
• Color settings and unmitigated level tracking.
Babanov_ETHUSDT V2🧪 Deep Backtest Results (ETH 5-Min Strategy)
Backtest conducted on ETHUSDT.P (Bybit) using a 5-minute chart timeframe over several weeks of data.
! imgur.com
⚠️ Важно: Инструкции за правилна употреба на скрипта!
Ако искате да използвате този скрипт с webhook alerts за автоматична търговия, моля, обърнете внимание на следните стъпки:
✅ 1. Активирайте "Live Trading Mode"
Преди да създадете какъвто и да е alert, отидете в таба "Inputs" и задължително активирайте опцията "Live Trading Mode". Без нея скриптът няма да изпраща правилни сигнали.
✅ 2. Въведете търговската сума в USD
В таба "Properties", въведете сумата в USD, която ботът ще използва за търговия с ETH.
- Препоръчително е сумата да бъде такава, която може да бъде разделена на 50 (например 50, 100, 150, 200 и т.н.), за да се гарантира коректно управление на позициите и обемите при търговия.
✅ 3. Препоръчителна платформа: Bybit - BYBIT:ETHUSDT.P
Скриптът е оптимизиран и тестван за търговия на Bybit. Използването му на други платформи може да доведе до различни резултати, тъй като графиките и ценовите движения може да се различават.
-----------------------------------------------------------------------------------------------
⚠️ Important: Instructions for Proper Use of This Script
If you want to use this script with webhook alerts for automated trading, please follow the steps below carefully:
✅ 1. Enable "Live Trading Mode"
Before creating any alerts, go to the "Inputs" tab and make sure to enable the "Live Trading Mode" option.
Without it, the script will not generate correct trading signals.
✅ 2. Enter Your Trading Amount in USD
In the "Properties" tab, enter the amount in USD that the bot will use for ETH trading.
It is strongly recommended to enter an amount that can be divided by 50 (e.g., 50, 100, 150, 200, etc.) to ensure proper position sizing and trade management.
✅ 3. Recommended Exchange: Bybit - BYBIT:ETHUSDT.P
The script is optimized and tested specifically for Bybit.
Using it on other exchanges may result in different outcomes due to variations in chart data and price movements.
ASK $🚀 My Exclusive Indicator on TradingView
Carefully designed to capture the best entry and exit opportunities, combining smart analysis with user-friendly simplicity.
Now available only for premium users – message me to get access and have your username added!
ASK $🚀 My Exclusive Indicator on TradingView
Carefully designed to capture the best entry and exit opportunities, combining smart analysis with user-friendly simplicity.
Now available only for premium users – message me to get access and have your username added!
BankNifty Auto S/R LevelsAttention BankNifty Option Traders,
Introducing the most accurate indicator which draws precise support and resistance lines automatically. Most important thing is this indicator auto adjusts the levels as the price rises or falls. To check the accuracy and efficacy of these support and resistance, change the time frame to 1H. You will be astonished to see its precision.
Thank you.
Babanov_BTCUSDT V2🧪 Deep Backtest Results (BTC 5-Min Strategy)
Backtest conducted on BTCUSDT.P (Bybit) using a 5-minute chart timeframe over several weeks of data.
! (i.imgur.com)
⚠️ Важно: Инструкции за правилна употреба на скрипта!
Ако искате да използвате този скрипт с webhook alerts за автоматична търговия, моля, обърнете внимание на следните стъпки:
✅ 1. Активирайте "Live Trading Mode"
Преди да създадете какъвто и да е alert, отидете в таба "Inputs" и задължително активирайте опцията "Live Trading Mode". Без нея скриптът няма да изпраща правилни сигнали.
✅ 2. Въведете търговската сума в USD
В таба "Properties", въведете сумата в USD, която ботът ще използва за търговия с BTC.
- Препоръчително е сумата да бъде такава, която може да бъде разделена на 50 (например 50, 100, 150, 200 и т.н.), за да се гарантира коректно управление на позициите и обемите при търговия.
✅ 3. Препоръчителна платформа: Bybit - BYBIT:BTCUSDT.P
Скриптът е оптимизиран и тестван за търговия на Bybit. Използването му на други платформи може да доведе до различни резултати, тъй като графиките и ценовите движения може да се различават.
-----------------------------------------------------------------------------------------------
⚠️ Important: Instructions for Proper Use of This Script
If you want to use this script with webhook alerts for automated trading, please follow the steps below carefully:
✅ 1. Enable "Live Trading Mode"
Before creating any alerts, go to the "Inputs" tab and make sure to enable the "Live Trading Mode" option.
Without it, the script will not generate correct trading signals.
✅ 2. Enter Your Trading Amount in USD
In the "Properties" tab, enter the amount in USD that the bot will use for BTC trading.
It is strongly recommended to enter an amount that can be divided by 50 (e.g., 50, 100, 150, 200, etc.) to ensure proper position sizing and trade management.
✅ 3. Recommended Exchange: Bybit – BYBIT:BTCUSDT.P
The script is optimized and tested specifically for Bybit.
Using it on other exchanges may result in different outcomes due to variations in chart data and price movements.