Deepsek IndicatorThis TradingView Pine Script indicator combines EMA crossovers (for trend direction) and RSI (for momentum) to generate Buy/Sell signals. It includes customizable Take Profit (TP) and Stop Loss (SL) levels, plotted directly on the chart.
Key Features
Signal Types:
EMA Crossover: Triggers Buy when a fast EMA crosses above a slow EMA; Sell on the reverse.
RSI Divergence: Buy when RSI exits oversold (30); Sell when RSI exits overbought (70).
Risk Management:
Set TP/SL as fixed percentages (e.g., 2% TP) or fixed price points.
Visual horizontal lines mark entry price, TP (teal dashed), and SL (red dashed).
Visual Clarity:
Labels (BUY/SELL) with arrows at signal points.
Plots EMAs (fast/slow) and RSI for trend/momentum confirmation.
Flexibility:
Adjust parameters (EMA lengths, RSI settings, TP/SL rules) via input settings.
Alerts for real-time signal notifications.
Purpose:
Designed to simplify entries/exits with clear rules, enforce disciplined risk management, and adapt to multiple markets (stocks, forex, crypto).
Indikator-Indikator Rentang
FVG & Imbalance Detector with Buy/Sell SignalsGerçeğe Uygun Değer Boşluğu (FVG) ve Dengesizlik bölgelerini tespit eder, bu bölgeleri vurgular ve fiyatların FVG seviyeleriyle etkileşimine bağlı olarak alım/satım dağıtma üretir. Başka bir ekleme veya farklı
Order Block Finder [RTM/ICT] by Hamid OmraniOrder Block شناسایی میشه:
اگر یه کندل، High یا Low جدید ایجاد کنه و بعدش برگشت قیمت اتفاق بیفته، اون ناحیه به عنوان Order Block در نظر گرفته میشه.
برای High Block: کندل باید یه High جدید ایجاد کنه و بعدش بستهشدن کندل پایینتر از Open باشه.
برای Low Block: کندل باید یه Low جدید ایجاد کنه و بعدش بستهشدن کندل بالاتر از Open باشه.
Order Blockها رسم میشن:
High Blockها با رنگ قرمز و Low Blockها با رنگ سبز روی چارت نمایش داده میشن.
تنظیمات:
میتونی دوره Lookback و قدرت Order Block رو تغییر بدی تا با استراتژیت هماهنگ بشه.
DH.Y. Candle Levels with Current and Previous LabelsThe calculation done here is fully automatic and dynamic, contrary to other similar scripts, this one uses a mathematical calculation that extracts the 1, 2 or 3 leftmost digits and calculate the previous and next level by incrementing/decrementing these digits. This means it works for any symbol under any price range.
[COG]MTF RZP Heatmap MTF RZP Heatmap (Range Zone Pulse)
What It Does
This indicator creates three visual heatmaps that show how current price movement compares to the average range of different timeframes. It helps traders:
Identify when price moves are overextended
Compare momentum across different timeframes
Spot potential reversal points
Understand the relative strength of price movements
How It Works
Range Calculation:
For each selected timeframe, it calculates an average range based on the specified number of periods
The range is measured from high to low for each period
A moving average of these ranges creates a dynamic "normal" range for that timeframe
Position Calculation:
Measures how far price has moved from the period's opening price
Compares this movement to the average range
Converts the movement into a percentage (-100% to +100%)
Visual Display:
Shows three vertical heatmaps, one for each timeframe
Colors graduate from bearish (typically red) to bullish (typically green)
A dot indicator shows the current position within each range
Percentage labels show exact movement relative to average range
Trading Applications
Trend Trading:
Multiple timeframes aligned in the same color suggest strong trend
Use larger timeframes (Daily/Weekly) for trend direction
Use smaller timeframes (4H/1H) for entry timing
Mean Reversion:
Extreme readings (near +100% or -100%) suggest overextended moves
Look for divergences between timeframes
Use when shorter timeframes show extremes but larger timeframes don't
Volatility Trading:
Compare current moves to average ranges
Identify when markets are more volatile than usual
Adjust position sizes based on range expansion/contraction
Multi-Timeframe Analysis:
Compare price action across different time horizons
Identify conflicting signals between timeframes
Use for timeframe alignment in trading decisions
Best Practices for Usage
Timeframe Selection:
Set the first timeframe to your trading timeframe
Set the second timeframe to your trend timeframe
Set the third timeframe to your entry timeframe
Range Period Settings:
Default is 5 periods
Increase for more stable readings
Decrease for more responsive readings
Color Interpretation:
Darker colors indicate stronger moves
Look for alignment across timeframes
Watch for extremes in any timeframe
Trading Setups:
Wait for alignment in multiple timeframes
Use extreme readings for counter-trend trades
Combine with other indicators for confirmation
Automatic Fibonacci retracement based on the highest high and loThe chart is fractal, meaning that what happens can always be broken down into smaller portions.
This is often seen in various AR (Algorithmic Rules) concepts, such as breakers, order blocks, etc., where the price reacts.
I’ve visualized this behavior with this indicator.
This indicator takes the highest high and the lowest low from the past 5 weeks, excluding the current week.
The lowest low will represent 0%, and the highest high will represent 100% (green lines).
It then divides this range into 25%, 50%, 75%, and 100% levels (red and blue lines).
The indicator works on all charts and all timeframes, automatically adjusting when you switch charts or timeframes. No manual input is required.
Additionally, above 100%, it will create levels at 125%, 150%, 175%, and 200%, while below 0%, it will create levels at -25%, -50%, -75%, and -100%.
Your chart will now be divided into these 25% levels, allowing you to observe how the price either respects or breaks through them.
Again, this isn’t something “groundbreaking,” but simply a visual aid to identify levels where the price finds support/resistance or breaks through.
It helps me gain a broader perspective and determine whether my trade is moving in the right direction or if I should remain cautious.
Gold Trading Strategy//@version=5
indicator("Gold Trading Strategy", overlay=true)
// Input parameters
shortMA = ta.sma(close, 9)
longMA = ta.sma(close, 21)
rsi = ta.rsi(close, 14)
= ta.bb(close, 20, 2)
// Time filter (IST time range)
timeFilter = (hour >= 12 and hour < 14) or (hour >= 18 and hour < 21)
// Buy condition
buyCondition = ta.crossover(shortMA, longMA) and rsi > 50 and close > bbMiddle and timeFilter
// Sell condition
sellCondition = ta.crossunder(shortMA, longMA) and rsi < 50 and close < bbMiddle and timeFilter
// Plot MAs
plot(shortMA, color=color.blue, title="9 MA")
plot(longMA, color=color.red, title="21 MA")
// Plot Bollinger Bands
plot(bbUpper, color=color.gray, title="BB Upper")
plot(bbMiddle, color=color.gray, title="BB Middle")
plot(bbLower, color=color.gray, title="BB Lower")
// Plot Buy & Sell signals
plotshape(series=buyCondition, location=location.belowbar, color=color.green, style=shape.labelup, size=size.large, title="Buy Signal")
plotshape(series=sellCondition, location=location.abovebar, color=color.red, style=shape.labeldown, size=size.large, title="Sell Signal")
// Plot Entry & Exit Markers
plotshape(series=buyCondition, location=location.belowbar, color=color.blue, style=shape.triangleup, size=size.large, title="Entry")
plotshape(series=sellCondition, location=location.abovebar, color=color.orange, style=shape.triangledown, size=size.large, title="Exit")
// Add text labels for entry and exit points
var float labelOffset = ta.atr(14) // Offset labels for better visibility
if buyCondition
label.new(x=time, y=low - labelOffset, text="Entry", color=color.blue, textcolor=color.white, size=size.large, style=label.style_label_down)
if sellCondition
label.new(x=time, y=high + labelOffset, text="Exit", color=color.orange, textcolor=color.white, size=size.large, style=label.style_label_up)
YCLK Al-Sat İndikatörüRSI Period (RSI Periyodu): Adjustable RSI period (default is 14).
Overbought Level (RSI Aşırı Alım): Sets the RSI threshold for overbought conditions (default is 70).
Oversold Level (RSI Aşırı Satım): Sets the RSI threshold for oversold conditions (default is 30).
Take Profit Ratio (Kâr Alma Oranı): Percentage ratio for take-profit levels (default is 1.05 or 5% profit).
Stop Loss Ratio (Zarar Durdurma Oranı): Percentage ratio for stop-loss levels (default is 0.95 or 5% loss).
RSI Calculation: The script calculates the Relative Strength Index (RSI) using the defined period.
Buy Signal: Generated when RSI crosses above the oversold level.
Sell Signal: Generated when RSI crosses below the overbought level.
Buy/Sell Signal Visualization:
Buy Signal: Green upward arrow labeled as "BUY".
Sell Signal: Red downward arrow labeled as "SELL".
Dynamic Take Profit and Stop Loss Levels:
Entry Price: Tracks the price at which a Buy signal occurs.
Take Profit (TP): Automatically calculated as Entry Price * Take Profit Ratio.
Stop Loss (SL): Automatically calculated as Entry Price * Stop Loss Ratio.
These levels are plotted on the chart with:
Blue circles for TP levels.
Red circles for SL levels.
Fibonacci Targets: The script also calculates Fibonacci levels based on the entry price:
Fibonacci 1.236 Level: Shown in purple.
Fibonacci 1.618 Level: Shown in orange.
Additional Visual Details:
Displays the current RSI value at each bar as a yellow label above the chart.
How to Use:
Apply the indicator to your TradingView chart.
Adjust the input parameters (RSI period, overbought/oversold levels, profit/loss ratios) based on your strategy.
Use the Buy and Sell signals to identify potential trade entries.
Use the TP and SL levels to manage risk and lock in profits.
Refer to the Fibonacci levels for extended profit targets.
Scorpion [SCPteam]this is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for testthis is for test
Support/Resistance + Donchian Channel (lord gozer)Better test before use it ,because its about your money not mine
RSI + MACD Combined by Majidbest of all i have combined the most traded indicators in one for you to ease the trading
Pivot all in onePivot all in one !
Pivot Strength
Pivot Significance
Pivot Distance
Support / Resistance via pivots.
Follow for more, Enjoy !
Multi-Timeframe Stoch RSIThe Multi-Timeframe Stoch RSI Indicator analyzes Stochastic RSI values across multiple timeframes (5m, 15m, 30m, 1h, 3h, and 1D) to help identify overbought and oversold conditions. It displays a visual table where each timeframe is color-coded—red for overbought (🐻) and green for oversold (✅)—allowing traders to quickly assess market momentum at different intervals. This helps in making informed trading decisions based on multi-timeframe confluence.
PHUAQU v.1.1The PHUAQU v.1.1 indicator is designed for trend analysis and generating trading signals based on a combination of several technical indicators. It uses ATR (Average True Range) to calculate a dynamic stop-loss, as well as SMA and EMA to determine the trend and direction of price movement. The main features of the indicator include:
Trend Filter: Utilizes SMA and EMA on the selected timeframe to identify an upward or downward trend.
EMA-Based Signals: Generates buy or sell signals when EMA 100 crosses SMA, while also considering the slope of the EMA to confirm the trend.
Flat Filter: Excludes signals in sideways market conditions by using price range (Range) and a flat threshold.
Dynamic Stop-Loss: Calculated based on ATR and adapts to market volatility.
Stop Signals: Stops positions when EMA 50 crosses EMA 100 if a buy or sell signal was previously generated.
The indicator is suitable for traders using trend-based strategies and helps minimize false signals through trend and flat filters.
Supertrend + MVWAP VWMA BreakoutSuper trend 73 MVWAP and VWMA BUY and Sell Singal
this indicator combines multi indicators to show single buy sell signal
Tabla BIAS Descripción:
Este indicador escrito en Pine Script v5 está diseñado para mostrar una tabla en tu gráfico que refleja el sesgo del mercado para diferentes marcos de tiempo, basado en la relación entre el precio de cierre y una Media Móvil Exponencial (EMA) específica. Aquí está cómo funciona:
Cálculo de la EMA: El script utiliza una EMA con una longitud predeterminada de 50 períodos, pero esto puede ser personalizado a través de una configuración de entrada. La EMA ayuda a determinar si el mercado está en tendencia ascendente o descendente en cada marco de tiempo.
Análisis por Marco de Tiempo:
Calcula el sesgo para 7 marcos de tiempo diferentes: 5 minutos (5m), 15 minutos (15m), 30 minutos (30m), 1 hora (1h), 4 horas (4h), Diario (D) y Semanal (W).
Para cada marco de tiempo, compara el precio de cierre con la EMA calculada para ese marco:
Si el precio está por encima de la EMA, el sesgo se etiqueta como "Up" y se colorea de verde.
Si el precio está por debajo de la EMA, el sesgo se etiqueta como "Down" y se colorea de rojo.
Visualización de la Tabla:
El script crea una tabla posicionada en la esquina superior derecha de tu gráfico.
La tabla tiene dos filas:
La primera fila enumera los marcos de tiempo (TF).
La segunda fila muestra el sesgo correspondiente ("Up" o "Down") para cada marco de tiempo, codificado por colores para una rápida referencia visual.
Personalización:
Los usuarios pueden ajustar la longitud de la EMA mediante una configuración de entrada.
Hay una opción para mostrar u ocultar la línea de EMA en el gráfico para referencia visual.
Aspecto Visual:
La tabla usa texto blanco sobre fondos de colores para mayor claridad.
La EMA, cuando se muestra, se dibuja en color azul.
Uso:
Este indicador es útil para traders que desean evaluar rápidamente el sentimiento del mercado a través de múltiples marcos de tiempo sin cambiar el marco de tiempo actual del gráfico.
Puede ayudar a entender si las tendencias a corto, mediano y largo plazo están alineadas o divergiendo, lo cual es crucial para tomar decisiones de trading informadas.
Nota:
El indicador se superpone sobre el gráfico, lo que significa que no crea un nuevo panel, sino que coloca su información directamente sobre el gráfico de precios existente.
Esta herramienta es puramente de ayuda visual y debe usarse junto con otros métodos de análisis para estrategias de trading completas.
Compatibilidad:
Este script es compatible con Pine Script v5 y debería funcionar en cualquier gráfico donde lo apliques, siempre y cuando la plataforma soporte esta versión.
Descargo de responsabilidad:
Siempre usa este indicador en conjunto con otras herramientas y métodos de análisis. Ningún indicador solo debería dictar decisiones de trading; considera el contexto del mercado, noticias y otros indicadores técnicos.
Double Zero Lag EMA with SignalsDouble Zero Lag EMA with Signals
This script is based on the work of John Ehlers and provides a modified version of the Zero Lag Exponential Moving Average (ZEMA). It includes two ZEMAs with customizable periods and visual signals (arrows) for crossovers between the two ZEMAs. This indicator is designed to help traders identify potential trend changes and trading opportunities.
How to Use
Add the Indicator to Your Chart:
Once you apply this script to your chart, it will overlay two Zero Lag EMAs (ZEMAs) on the price chart.
Customize the Periods:
The script allows you to customize the periods for the two ZEMAs:
Period 1: Default is 21 (faster ZEMA).
Period 2: Default is 50 (slower ZEMA).
You can adjust these values in the settings to suit your trading strategy.
Understand the ZEMAs:
The blue line represents the faster ZEMA (Period 1).
The red line represents the slower ZEMA (Period 2).
Crossover Signals:
The script generates visual signals when the two ZEMAs cross:
Green Up Arrow: Appears below the price bar when the faster ZEMA crosses above the slower ZEMA (bullish signal).
Red Down Arrow: Appears above the price bar when the faster ZEMA crosses below the slower ZEMA (bearish signal).
Alerts:
The script includes built-in alert conditions for both bullish and bearish crossovers:
Bullish Crossover Alert: Triggered when the faster ZEMA crosses above the slower ZEMA.
Bearish Crossover Alert: Triggered when the faster ZEMA crosses below the slower ZEMA.
You can set up alerts in TradingView to receive notifications when these crossovers occur.
How to Interpret the Signals
Bullish Signal (Green Arrow):
Indicates a potential upward trend or buying opportunity.
The faster ZEMA (blue) crossing above the slower ZEMA (red) suggests that short-term momentum is stronger than the longer-term trend.
Bearish Signal (Red Arrow):
Indicates a potential downward trend or selling opportunity.
The faster ZEMA (blue) crossing below the slower ZEMA (red) suggests that short-term momentum is weaker than the longer-term trend.
Best Practices
Use this indicator in combination with other tools, such as support/resistance levels, volume analysis, or other momentum indicators, to confirm signals.
Adjust the ZEMA periods based on your trading style:
Shorter periods (e.g., 9 and 21) for faster signals in shorter timeframes.
Longer periods (e.g., 50 and 100) for smoother signals in higher timeframes.
This script is ideal for traders looking for a responsive moving average system with clear visual signals for trend changes. It works well in trending markets and can help identify potential entry and exit points.
Dynamic trend lineHow to use the Dynamic Trend Line indicator for trading:
This indicator draws only one trend line, the color of which changes between green and red:
Green line: indicates an upward trend.
Red line: indicates a downward trend.
Buy signals:
Break from bottom to top (in an upward trend - green line):
Wait until the trend line turns green. This means we are in an upward trend.
Watch the price when it moves below the green trend line.
When the price breaks the green trend line upwards (from bottom to top), this is a buy signal. This breakout means that the price has bounced off the trend line, and the upward trend is likely to continue.
Sell signals:
Break from top to bottom (in a downward trend - red line):
Wait until the trend line turns red. This means we are in a downward trend.
Watch the price when it moves above the red trend line.
When the price breaks the red trend line downwards (from top to bottom), this is a sell signal. This breakout means that the price has bounced off the trend line, and the downward trend is likely to continue.
Important points for successful trading:
Signal confirmation:
Do not rely only on a single signal from the indicator. Look for confirmations from other indicators (such as moving averages, RSI, MACD) or Japanese candlestick patterns.
The more confirmations, the stronger the signal.
Risk management:
Stop-Loss: Place a stop loss order below a recent low if you buy, and above a recent high if you sell. This protects your capital if the market moves against you.
Take-Profit: Set a take-profit level at a potential resistance level if you buy, and at a potential support level if you sell.
Patience: Do not rush into entering trades. Wait for a clear and confirmed signal to appear.
Test your strategy: Before trading with real money, test your strategy on historical data or on a demo account.
Practical example:
Price below a green trend line: You see that the trend line is green, and the price is moving below it.
Breakout: The price breaks the green trend line upwards.
Confirmation: You see that the RSI indicator indicates bullish momentum, and a bullish engulfing candle is formed.
Buy: You open a buy position with a stop loss below the last low.
Take profit: You set a take profit level at a previous resistance level.
The same logic applies to selling, but in a downward direction (red line).
Conclusion:
The Dynamic Trend Line indicator is a useful tool for identifying trading opportunities in the direction of the trend. Remember to use it in conjunction with other tools, and to strictly follow the risk management rules. Trade responsibly, and never risk more than you can afford to lose.
Trend Lines by PivotsHow to use the Trend Lines by Pivots indicator for trading:
This indicator is based on drawing two trend lines:
Upper trend line (red): connects two consecutive Pivots Highs.
Lower trend line (green): connects two consecutive Pivots Lows.
Buy signals:
Breaking the lower trend line (green) upwards: When the price breaks the lower trend line upwards, this is a potential buy signal. This break indicates that the downtrend has ended, and a new uptrend may start.
Sell signals:
Breaking the upper trend line (red) downwards: When the price breaks the upper trend line downwards, this is a potential sell signal. This break indicates that the uptrend has ended, and a new downtrend may start.
Key points:
Confirm signals: It is important to confirm buy and sell signals using other indicators or additional technical analysis tools. Do not rely solely on this indicator to make trading decisions.
Risk Management: Always set Stop Loss and Take Profit levels to manage risk and protect capital.
Indicator Testing: Before using the indicator in real trading, test it on historical data (Backtesting) or on a demo account (Demo Account) to evaluate its performance and better understand its behavior.
Adjusting Settings: As I mentioned earlier, you can adjust the leftLen and rightLen settings to change the sensitivity of the indicator. You may need to experiment with different values to find the settings that suit your trading style and the financial instrument you are trading.
Example:
Imagine that you are watching the chart of a certain stock. The indicator has drawn an upper trend line (red) and a lower trend line (green).
Buy Scenario: If the price is trading below the lower trend line (green) and then breaks it upwards, you might consider opening a buy position, with a stop loss placed below a recent low.
Sell Scenario: If the price is trading above the upper trend line (red) and then breaks it downwards, you might consider opening a sell position, with a stop loss placed above a recent high.
Conclusion:
The Trend Lines by Pivots indicator is a useful tool for identifying trends and potential reversal points. Use it in conjunction with other technical analysis and risk management tools to make informed trading decisions. Remember that this indicator, like any other, is not perfect, and you should always check and confirm signals before entering any trade.