XAU/USD Lot Size CalculatorThis indicator automatically calculates the optimal lot size for XAUUSD (gold) based on the level of risk the trader wants to take. It is designed for traders using MetaTrader 4 or 5 and helps adjust position size according to the specific volatility of gold. The user can set the percentage of capital they are willing to risk on a single trade, for example 1%. The indicator also takes into account the stop loss level, which can be entered in pips or in dollars, as well as the account size (balance or equity).
Based on these parameters, it calculates the exact lot size that matches the risk amount. It then displays on the chart the recommended lot size, the risk amount in dollars, the pip value for XAUUSD, and a confirmation of the stop loss level. This type of indicator is useful for maintaining disciplined risk management and avoiding position sizing errors, especially on a highly volatile asset like gold.
Indicatori e strategie
AdelVolume Clone//@version=6
indicator("Faisalvolume Clone", overlay=false)
// إعدادات
maLength = input.int(20, minval=1, title="Volume MA Length")
highVolumeMultiplier = input.float(1.5, title="High Volume Multiplier")
// بيانات
vol = volume
volMA = ta.sma(vol, maLength)
// شروط
isHighVol = vol > volMA * highVolumeMultiplier
isAboveMA = vol > volMA
// لون العمود
barColor = isHighVol ? color.red : isAboveMA ? color.lime : color.gray
// رسم المؤشر
plot(vol, title="Volume", style=plot.style_columns, color=barColor)
plot(volMA, title="Volume MA", color=color.orange, linewidth=2)
4wooindiDescription (한글)
이 지표는 BTC/ETH 가격 비율의 Z-Score와 개별 자산(BTC, ETH)의 RSI를 동시에 계산하여, 시장의 추세 강도와 과매수·과매도 구간을 한눈에 파악할 수 있는 통합 전략 대시보드를 제공합니다.
사용자 정의 가능한 기간(length) 및 진입·청산 임계값(threshold) 설정
캔들 차트 위에 오버레이 형태로 표시
트레이딩뷰 기본 툴바 및 알림 기능 완벽 호환
Description (English)
This indicator delivers an integrated strategy dashboard by calculating both the Z-Score of the BTC/ETH price ratio and the RSI of each asset (BTC, ETH), enabling you to visualize market trend strength and overbought/oversold conditions at a glance.
Customizable length and entry/exit threshold settings
Overlay display directly on your candlestick chart
Fully compatible with TradingView’s toolbar and alert system
Z-Score Pairs Trading Composite
z-score
Description (한글)
이 지표는 BTC/ETH 가격 비율의 Z-Score와 개별 자산(BTC, ETH)의 RSI를 동시에 계산하여, 시장의 추세 강도와 과매수·과매도 구간을 한눈에 파악할 수 있는 통합 전략 대시보드를 제공합니다.
사용자 정의 가능한 기간(length) 및 진입·청산 임계값(threshold) 설정
캔들 차트 위에 오버레이 형태로 표시
트레이딩뷰 기본 툴바 및 알림 기능 완벽 호환
Description (English)
This indicator delivers an integrated strategy dashboard by calculating both the Z-Score of the BTC/ETH price ratio and the RSI of each asset (BTC, ETH), enabling you to visualize market trend strength and overbought/oversold conditions at a glance.
Customizable length and entry/exit threshold settings
Overlay display directly on your candlestick chart
Fully compatible with TradingView’s toolbar and alert system
Crossing AveragesWe averages are crossing, volume increases. This script aims to plot the price relative to the averages that are crossing. If price markers are below the average lines, that usually indicates weakness.
RSI OS/OB Background StripesThe "RSI OS/OB Background Stripes" indicator is a simple tool designed to help traders visualize overbought and oversold market conditions using the Relative Strength Index (RSI). It highlights these conditions by displaying colored background stripes directly on your chart, making it easy to spot potential trading opportunities.
How It Works:RSI Calculation: The indicator calculates the RSI, a popular momentum indicator that measures the speed and change of price movements, using a default period of 14 (customizable).
Overbought/Oversold Levels: It marks areas where the RSI is above a user-defined overbought level (default: 70) with red background stripes, and below an oversold level (default: 30) with green background stripes.
Visual Feedback: The colored stripes appear on the chart when the RSI enters overbought (red) or oversold (green) zones, helping you quickly identify market conditions.
Customization: You can adjust the RSI period, overbought/oversold levels, background colors, and transparency. You can also choose to show the RSI line in a separate panel or display RSI values on the chart for debugging.
Alerts: The indicator includes optional alerts that notify you when the RSI crosses into overbought or oversold territory.
Who It’s For: This indicator is perfect for beginner and intermediate traders who want a clear, visual way to track RSI-based overbought and oversold conditions without cluttering their charts.
Key Features:Easy-to-read background stripes for overbought (red) and oversold (green) conditions.
Fully customizable RSI settings, colors, and transparency.
Optional RSI plot and value display for deeper analysis.
Alerts to keep you informed of key RSI level crossings.
This indicator is a straightforward way to monitor market momentum and make informed trading decisions.
Monday's Range by Fortis80This TradingView indicator displays the Monday’s high and low range clearly across all timeframes, making it easy for traders to identify weekly key levels.
Exclusive for Fortis80 Members.
4H Crypto System – EMAs + MACD//@version=5
indicator("4H Crypto System – EMAs + MACD", overlay=true)
// EMAs
ema21 = ta.ema(close, 21)
ema50 = ta.ema(close, 50)
ema200 = ta.ema(close, 200)
// MACD Settings (standard)
fastLength = 12
slowLength = 26
signalLength = 9
= ta.macd(close, fastLength, slowLength, signalLength)
// Plot EMAs
plot(ema21, title="EMA 21", color=color.orange, linewidth=1)
plot(ema50, title="EMA 50", color=color.blue, linewidth=1)
plot(ema200, title="EMA 200", color=color.purple, linewidth=1)
// Candle coloring based on MACD trend
macdBull = macdLine > signalLine
barcolor(macdBull ? color.new(color.green, 0) : color.new(color.red, 0))
// Buy/Sell signal conditions
buySignal = ta.crossover(macdLine, signalLine) and close > ema21 and close > ema50 and close > ema200
sellSignal = ta.crossunder(macdLine, signalLine) and close < ema21 and close < ema50 and close < ema200
// Alerts
alertcondition(buySignal, title="Buy Alert", message="Buy Signal: MACD bullish crossover and price above EMAs")
alertcondition(sellSignal, title="Sell Alert", message="Sell Signal: MACD bearish crossover and price below EMAs")
EMA 21, 55, 200 with Small LabelsThis is a combination of ema21/50/200. Helps to identify market trends. It comes with small labels so it won't confuse which line is which. I hope it helps and good luck with your trading!
Price Change Rate with Pivot Labels (%)Bull/Bear labels to show the exact price change percentage at the pivot.
1. Calculates Price Change %
Measures the percentage change in closing price over a user-defined number of bars.
2. Identifies Pivot Points
Finds local highs (pivot highs) and lows (pivot lows) using configurable left/right bar settings.
3. Labels Bullish/Bearish Trends
Bull label: Appears at pivot lows if price is rising and forming higher lows.
Bear label: Appears at pivot highs if price is falling and forming lower highs.
4. Displays % on Labels
Each label includes the current price change percentage, e.g.,
"Bull +2.34%"
"Bear -1.78%"
5. Optional Visuals
Pivot shapes (triangles) are plotted for clarity.
Weekly PSP HighlighterWeekly PSP Indicator which tell you by marking a purple Vertical line on Weekly Candle which is the PSP.
Lyrae/SMC 6-EMA StackLyrae/SMC EMA Stack — Usage & Functionality
This script plots six core EMAs used in the Lyrae/ATS/Smart Money Concepts strategy. Each EMA serves a specific role for institutional structure, trend bias, and execution:
EMA 5 (Yellow) — Microstructure Flow / Scalper Trigger:
Tracks immediate momentum and short-term price reversals.
Used for “commitment dot” entries and aggressive intrabar scalp signals.
Sharp move away from EMA5 often indicate exhaustion or liquidity sweeps.
EMA 21 (Blue) — Short-Term Bias / Sentiment Guide:
Defines the fast-moving market structure.
Confluence of EMA5 and EMA21 (stacked) confirms high conviction trends.
Ideal for pullback entries and early reversals.
EMA 50 (Orange) — Institutional Support/Resistance (Dynamic Order Block):
Key institutional level for pullbacks, mitigations, and liquidity grabs.
Price reacts here for most SMC mitigation setups and “expansion box” targets.
Also serves as a dynamic volatility anchor for dynamic stop placement.
EMA 63 (Green) — Session Mean Reversion / Volatility Filter:
Used to filter trend exhaustion and session mean reversion.
Great for identifying mid-session traps and SMC “liquidity void” re-tests.
Confluence with EMA50 often signals major pivots.
EMA 84 (Purple) — Higher Session Bias / Institutional Anchor:
Maps slow sessional trend changes and large institutional order flow.
Key for swing scalp entries and “order block defense” in trending markets.
Provides premium/discount levels relative to session range.
EMA 200 (Red) — Macro Trend / Smart Money Bias:
The ultimate directional filter — marks overall market regime.
Only take buys above EMA200 (unless strong reversal SMC context); only take sells below.
Major structure shifts and break-of-structure (BOS) signals are most powerful when occurring at/near EMA200.
How to Use:
EMA Stacking: The more EMAs stacked in order, the stronger the institutional trend conviction.
Pullbacks: Highest-probability entries occur at EMA50/63/84 with SMC structure alignment.
Momentum Breaks: Commitment candles breaking EMA5/21 often signal the start of high-RR moves.
Risk Management: Use EMA50/63 as dynamic stops and break-even triggers.
Best Timeframes:
Stack is valid for all timeframes; optimized for M1–M15 for entry precision, H1+ for trend bias.
Pro Tip:
Combine this EMA stack with order blocks, liquidity zones, and volume spikes for the highest accuracy and trap avoidance in volatile markets.
Market Up and Low VolatilityThis indicator identifies uptrends in the customizable index (e.g. SP500) together with a customizable volatility index (e.g. VIX) being below a threshold such as 20.
Painel de Velas 1H e 2HMulti-Timeframe Candlestick Panel with Signal Confluence
Description:
This advanced indicator displays a complete panel with candlestick information on multiple timeframes (from 30 minutes to 1 day), allowing simultaneous analysis of price behavior in different periods. The panel includes data on open, close, difference, candle type and time remaining until the close of each candle.
Main Features:
✅ Organized table with 9 different timeframes (30M, 1H, 2H, 3H, 4H, 6H, 12H, 1D and the current timeframe)
✅ Colored candlestick visualization (green for positive, red for negative)
✅ Accurate countdown to the close of each candle (hh:mm:ss format)
✅ Reference lines of the first candle of the day (4H)
✅ Confluence system that identifies buy/sell signals when all timeframes are aligned
✅ Configurable alerts for trading opportunities
How to Use:
Add the indicator to your chart
Follow the table in the upper right corner
Observe the confluence between timeframes
Use buy/sell signals when there is alignment in all periods
The orange lines mark the opening and closing of the first candle of the day (4H)
Benefits:
Analysis multi-timeframe in a single panel
Fast visual identification of trends
Save time in technical analysis
More assertive decision making with confirmation of multiple timeframes
Technical Configuration:
Developed in Pine Script v5
Low impact on chart performance
Real-time update
Notes:
For best results, combine this indicator with other technical analysis tools. Confluence signals are more relevant in markets with a defined trend.
SymFlex Band No1. - Momentum Weighted Volatility BandsSymFlex Band No1. - Momentum Weighted Volatility Bands (MWB)
SymFlex Band No1. is a custom volatility indicator that adapts to market momentum using RSI.
📌 Key Features:
Volatility bands scaled by RSI-based momentum weighting
Smoothing options: EMA, TEMA, ZeroLag EMA (2 types)
Compares with traditional Bollinger Bands
Highlights overextended price action beyond dynamic envelopes
This tool is ideal for spotting market overreactions and potential reversals in both ranging and trending conditions.
🔗 Source: K. I. Lee (surirang.com)
🎥 Video Guide Available
👉 YouTube link for this indicator:
EMA 20 – Yellow DotsA simple EMA 20 designed for high visibility to easily stand out amongst other indicators.
My script/@version=5
indicator("50 EMA - Green Up / Red Down", overlay=true)
// Calculate the 50 EMA
ema50 = ta.ema(close, 50)
// Determine if the EMA is rising or falling
color_ema = ema50 > ema50 ? color.green : color.red
// Plot the 50 EMA with dynamic color
plot(ema50, title="50 EMA", color=color_ema, linewidth=2)