Star Pattern IdentifierThe Star Pattern Identifier is a custom TradingView indicator designed to detect and mark Morning Star (MS) and Evening Star (ES) candlestick patterns, which are powerful reversal signals. This indicator offers a flexible and customizable approach by incorporating adjustable parameters for both the size and volume of the third candle in the pattern.
Key Features:
Morning Star (MS) : A bullish reversal pattern that occurs after a downtrend.
Evening Star (ES) : A bearish reversal pattern that occurs after an uptrend.
Adjustable Parameters:
Third Candle Size Multiplier : Define how large the body of the third candle should be relative to the second candle (default is 2x).
Third Candle Volume Multiplier : Control the minimum volume of the third candle in relation to the second candle (default is 0.5x).
The script ensures that the third candle’s volume is at least 50% of the second candle's volume and that its body is at least twice the size of the second candle, to filter out weaker signals.
The patterns are marked directly on the chart with "MS" (Morning Star) or "ES" (Evening Star) labels for easy identification.
Practical Use:
Use this indicator to spot potential trend reversals with more confidence by ensuring strong candlestick body and volume conditions.
Customize the parameters to suit your trading strategy and preferences.
How it Works:
The indicator looks for a bearish first candle , followed by a bullish or indecisive second candle , and a bullish third candle for the Morning Star pattern.
For the Evening Star, the indicator looks for a bullish first candle , followed by a bearish or indecisive second candle , and a bearish third candle .
The size and volume of the third candle are checked to ensure it meets the set parameters, confirming the strength of the reversal signal.
This tool is perfect for traders seeking to spot reversal signals in the market.
Pattern grafici
CryptoMitchX Memecoin ShorterUpdate for "CryptoMitchX Memecoin Shorter" Indicator
New Features & Improvements:
Conditional Hiding of Recommendations:
SHORT Recommendations: These are now hidden when the RSI (Relative Strength Index) falls below 30, preventing signals during potentially oversold conditions.
Take Profit Recommendations: Hidden when the RSI goes above 60, avoiding signals in potentially overbought market conditions.
Refined Alert System:
Alerts for both SHORT and Take Profit signals now only trigger when the RSI conditions are met, ensuring more targeted notifications.
Code Optimization:
The script has been updated to address scope-related errors, improving its reliability and performance on the TradingView platform.
Technical Details:
RSI Implementation: The RSI is calculated with a 14-period length to determine market momentum.
Conditional Plotting: Instead of using direct conditional statements inside plotting functions, we now use boolean variables to control which signals are plotted, avoiding local scope issues.
Signal Tracking: Continues to track consecutive signals, but now with the added condition of RSI thresholds for more nuanced trading signals.
Usage:
Users will see a cleaner chart with signals only appearing when they are most relevant according to RSI levels, reducing false signals and improving the overall trading strategy experience.
I nstallation:
Simply update or replace the existing indicator script with this new version in your TradingView Pine Script editor.
Known Issues & Limitations:
This update does not include real sentiment analysis due to the limitations of Pine Script in accessing external data. The sentiment is simulated based on price volatility and direction.
Feedback:
We're eager to hear your feedback on these changes. If you encounter any issues or have suggestions for further improvements, please let us know.
PP High Low + SMAsHai,
Here i alter an indicator which have pivot point high low with alteration and additional SMA With different period
jamesmadeanother Rich's Golden Cross plots clear "BUY" signals on your chart when all conditions align, giving you a strategic edge in the markets. Whether you're a swing trader or a long-term investor, this indicator helps you stay ahead of the curve by filtering out noise and focusing on high-quality setups.
Why Choose Rich's Golden Cross?
Multi-Timeframe Analysis: Combines short-term and long-term trends for better accuracy.
Easy-to-Read Signals: Clear buy alerts directly on your chart.
Customizable: Adjust parameters to suit your trading style.
Take your trading to the next level with Rich's Golden Cross—your ultimate tool for spotting golden opportunities in the market.
Improved Scalping Strategy with Alerts//@version=5
indicator("Improved Scalping Strategy with Alerts", overlay=true)
// EMA Settings for Scalping
emaLength = input.int(9, title="EMA Length")
emaValue = ta.ema(close, emaLength)
plot(emaValue, title="EMA", color=color.blue, linewidth=2)
// Volume Analysis for Scalping
volumeThreshold = input.float(2.0, title="Volume Threshold")
volumeSignal = volume > ta.sma(volume, 10) * volumeThreshold
bgcolor(volumeSignal ? color.new(color.blue, 90) : na, title="Volume Signal")
// RSI Settings for Scalping
rsiLength = input.int(9, title="RSI Length")
rsiValue = ta.rsi(close, rsiLength)
overbought = 70
oversold = 30
plot(rsiValue, title="RSI", color=color.purple, linewidth=2)
hline(overbought, "Overbought", color=color.red)
hline(oversold, "Oversold", color=color.green)
// MACD Settings for Scalping
fastLength = input.int(6, title="MACD Fast Length")
slowLength = input.int(13, title="MACD Slow Length")
signalSmoothing = input.int(5, title="MACD Signal Smoothing")
= ta.macd(close, fastLength, slowLength, signalSmoothing)
plot(macdLine, title="MACD Line", color=color.blue, linewidth=1)
plot(signalLine, title="Signal Line", color=color.red, linewidth=1)
// Strong Bullish and Bearish Conditions for Scalping
strongBullish = rsiValue > 70 and macdLine > signalLine and close > emaValue and volumeSignal
strongBearish = rsiValue < 30 and macdLine < signalLine and close < emaValue and volumeSignal
// Buy/Sell Signals for Scalping
buySignal = strongBullish
sellSignal = strongBearish
// Plot Buy/Sell Signals on Chart
plotshape(series=buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="LONG")
plotshape(series=sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT")
// Alerts for Scalping
alertcondition(buySignal, title="Long Trade Alert", message="Strong Bullish Signal: Consider LONG Trade")
alertcondition(sellSignal, title="Short Trade Alert", message="Strong Bearish Signal: Consider SHORT Trade")
// Additional Alerts for Confirmation
confirmationBullish = ta.crossover(macdLine, signalLine) and rsiValue > 50 and close > emaValue and volumeSignal
confirmationBearish = ta.crossunder(macdLine, signalLine) and rsiValue < 50 and close < emaValue and volumeSignal
alertcondition(confirmationBullish, title="Confirmation Bullish Alert", message="Confirmation Bullish Signal: Consider LONG Trade")
alertcondition(confirmationBearish, title="Confirmation Bearish Alert", message="Confirmation Bearish Signal: Consider SHORT Trade")
Pivot Powerup indy for tradingviewThis script calculates and plots Pivot Points (P, R1, R2, R3, S1, S2, S3) on the price chart. Pivot Points are key levels used in technical analysis to identify potential support and resistance areas.
Features :
- Calculates daily Pivot Points using the standard formula.
- Plots Pivot Point (P), Resistance levels (R1, R2, R3), and Support levels (S1, S2, S3).
- Overlays the levels on the price chart for easy visualization.
- No user-configurable parameters in this version.
- This indicator is based on the previous day's data. It may not be accurate in highly volatile markets.
- Always use Pivot Points in conjunction with other technical analysis tools for better accuracy.
- To customize the indicator, modify the formula in the `calculate_pivot_points` function.
- You can also change the colors or line widths of the plotted levels by editing the `plot()` functions.
Created by chakrint. Feel free to use and modify this script.
SMA Crossover with VWAP Filter-Thiru YadavBuy/Sell Signals: Displayed as labels on the chart.
SMAs: Plotted as blue (9 SMA) and orange (21 SMA) lines.
VWAP: Plotted as a purple line.
9-20 EMA Crossover with TP and SL9-20 EMA Crossover: This script tracks the crossover of the 9-period EMA and the 20-period EMA.
When the 9 EMA crosses above the 20 EMA, a buy signal is triggered.
When the 9 EMA crosses below the 20 EMA, a sell signal is triggered.
Take Profit and Stop Loss Levels:
The take profit for a long position is set at 3% above the entry price (close * 1.03).
The stop loss for a long position is set at 1% below the entry price (close * 0.99).
The take profit for a short position is set at 3% below the entry price (close * 0.97).
The stop loss for a short position is set at 1% above the entry price (close * 1.01).
Leverage: The strategy uses 20x leverage for both long and short positions (leverage=20).
Alerts: Alerts are set up for the buy signal when the 9 EMA crosses above the 20 EMA and the sell signal when the 9 EMA crosses below the 20 EMA. These alerts can be used with a webhook to trigger trades on Binance Futures.
Strategy:
For long trades: The strategy enters a long position and sets a take profit at 3% above the entry price and a stop loss at 1% below the entry price.
For short trades: The strategy enters a short position and sets a take profit at 3% below the entry price and a stop loss at 1% above the entry price.
Pivot Powerup (Indy)Pivot powerup(indy) Indicator for TradingView
This script calculates and plots daily Pivot Points (P, R1, R2, R3, S1, S2, S3) on the price chart. Pivot Points are key levels used in technical analysis to identify potential support and resistance areas.
Key Features
Calculates daily Pivot Points using the standard formula.
Plots Pivot Point (P), Resistance levels (R1, R2, R3), and Support levels (S1, S2, S3).
Overlays the levels on the price chart for easy visualization.
How to Use
Copy and paste the script into the Pine Script editor on TradingView.
Add the indicator to your chart.
The Pivot Points will be automatically calculated and plotted based on the previous day's high, low, and close prices.
Cautions
This indicator is based on the previous day's data. It may not be accurate in highly volatile markets.
Always use Pivot Points in conjunction with other technical analysis tools for better accuracy.
Customization
To customize the indicator, modify the formula in the calculate_pivot_points function.
You can also change the colors or line widths of the plotted levels by editing the plot() functions.
Credits
Created by Zhongli2566. Feel free to use and modify this script.
Bullish/Bearish Reversal ArrowsThe Bullish/Bearish Reversal Arrows Indicator is designed to identify potential reversal points in the market based on two key technical analysis tools: the MACD (Moving Average Convergence Divergence) and the RSI (Relative Strength Index).
Bullish Reversal:
A green upward arrow appears below the price bar when the MACD line crosses above the signal line (bullish crossover) and the RSI is in the oversold region (below the specified RSI oversold level).
This indicates a potential shift from a bearish trend to a bullish trend, signaling a possible buy opportunity.
Bearish Reversal:
A red downward arrow appears above the price bar when the MACD line crosses below the signal line (bearish crossunder) and the RSI is in the overbought region (above the specified RSI overbought level).
This indicates a potential shift from a bullish trend to a bearish trend, signaling a possible sell opportunity.
Features:
Combines two popular indicators (MACD and RSI) to increase accuracy.
Plots clear green upward arrows for bullish reversals and red downward arrows for bearish reversals directly on the chart.
Customizable inputs:
Adjust the MACD fast, slow, and signal lengths.
Set the RSI length and thresholds for oversold and overbought conditions.
Use Case:
This indicator is suitable for traders looking for:
Visual cues for potential market reversals.
Confirmation of oversold and overbought conditions using RSI.
An additional layer of decision-making for entry and exit points.
Note: As with all indicators, this tool should not be used in isolation. Combine it with other analysis techniques and risk management strategies for the best results.
SQZMOM_LB StrategyUtiliza el indicador sqzmom, abriendo operaciones cuando el indicador cambia al color 3 y cerrandolas cuando cambia al color 1
Support, Resistance & POC EnhancedEste indicador avanzado identifica y gestiona soportes, resistencias y el Punto de Control (POC) utilizando una metodología optimizada con arrays para evitar la saturación de líneas en el gráfico.
¿Qué hace este indicador?
1️⃣ Identificación de Soportes y Resistencias con Pivotes
El indicador utiliza la metodología de pivotes de precios, que identifica máximos y mínimos locales en función de un número configurable de barras a la izquierda y a la derecha.
Se emplean las funciones ta.pivothigh y ta.pivotlow, que requieren que el precio haya girado en la dirección opuesta para confirmar un nivel.
Estos niveles suelen actuar como zonas de oferta y demanda, donde los participantes del mercado han reaccionado en el pasado.
2️⃣ Gestión Dinámica de Niveles para Mayor Precisión
Para evitar que el gráfico se sobrecargue con demasiadas líneas, el indicador almacena los niveles en arrays.
Se establece un límite máximo de niveles visibles, eliminando los más antiguos a medida que se detectan nuevos.
Esto permite una representación clara de los niveles más relevantes en tiempo real.
3️⃣ Cálculo del Punto de Control (POC) como Referencia de Equilibrio
El POC se obtiene mediante la fórmula:
poc := (high + low + close) / 3
Este cálculo representa el precio medio ponderado de cada vela y ayuda a identificar el nivel donde ha habido mayor aceptación del precio.
Un POC cercano a una resistencia puede indicar una posible absorción de órdenes y futura reversión.
Un POC cerca de un soporte puede señalar acumulación antes de un posible rebote alcista.
Aplicaciones Prácticas para los Traders:
✅ Detección de zonas clave: Soportes y resistencias dinámicos para validar entradas y salidas de operaciones.
✅ Confirmación con el POC: Identificación de niveles donde el mercado ha mostrado mayor interés.
✅ Optimización del análisis técnico: Evita la saturación del gráfico y permite una visión clara de los niveles más importantes.
Este indicador es ideal para traders de acción del precio, operadores de tendencias y traders de rangos, ya que les permite visualizar zonas de reacción del mercado con precisión y sin ruido innecesario. 🚀
FJH's Expansion IndicatorFJH's Expansion Indicator is a custom-built trading tool designed to support the unique fractal-based trading model taught at FJH's University. This indicator is engineered to help traders identify key price action patterns, focusing on high and low price levels as potential reversal points. It marks the previous candle's high and low and tracks whether the price breaches these levels before returning within the range, signaling a possible reversal in market direction.
Key Features:
Fractal Model Recognition: Identifies when the high or low of a previous candle is breached and closed back within the range, marking it as a potential entry point.
Line Visualization: Draws lines at the previous candle's high and low and keeps them visible until a valid fractal pattern is confirmed. The lines are then reset after four candles.
Stop Loss and Take Profit: The indicator draws stop loss lines at the price level where the breach occurred and sets the take profit at the closing price of the fourth candle following the pattern's confirmation.
Customization: Users can adjust the color and width of the lines, enabling full flexibility to match their visual preferences and trading style.
Designed for both beginner and advanced traders, FJH's Expansion Indicator aids in identifying high-probability trade setups, integrating seamlessly with the educational content at FJH's University. This indicator enhances your understanding of the fractal model and empowers you to trade with a structured, rule-based approach.
Parabolic Detector (10min, 75°)Объяснение :
Таймфрейм 10 минут:
Используется функция request.security для получения цены закрытия за последние 10 минут.
Таймфрейм задается через input.timeframe("10", ...).
Расчет угла наклона:
Изменение цены (price_change) рассчитывается как разница между текущей ценой закрытия и ценой закрытия 10 минут назад.
Угол наклона (angle) рассчитывается с использованием функции math.atan (арктангенс). Учитывается, что 10 минут = 600 секунд.
Пороговое значение 75 градусов:
Если абсолютное значение угла (math.abs(angle)) больше или равно 75 градусам, то движение считается параболическим.
Визуализация:
На графике отображается метка "PARABOLIC", если движение параболическое.
MultiEMA FusionThe MultiEMA Fusion indicator is a versatile tool that helps traders assess market trends using a series of exponential moving averages. Its comprehensive approach, with multiple EMAs and color-coded visuals, enables traders to make informed decisions based on the prevailing market momentum. Whether you're a trend follower or looking for confirmation signals, this indicator provides essential insights into the current market structure.
Khubaib janThis is a custom indicator to check RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI. It help to check the RSI.
FOMC Volatility & FVG TrackerThis is a brand new Indicator, not yet tested!, as of 1/29/2025, 1:55 PM EST.
How It Works (hopefully):
🔹 Orange background → High volatility FOMC release window
🔹 Green FVG zones → Bullish FVGs (potential support)
🔹 Red FVG zones → Bearish FVGs (potential resistance)
🔹 Blue VWAP line → Trend confirmation
Crypto Pro Indicator"Crypto Pro Indicator" – Your All-in-One Trading Edge
Elevate your cryptocurrency trading with the Crypto Pro Indicator, a sophisticated toolkit designed for modern traders who demand precision, speed, and professional-grade analytics.
Key Features
🔹 Smart Trend Detection:
Dynamic EMA layers (20, 50, 70, 100, 200) reveal hidden market structure.
Real-time bullish/bearish confirmation via multi-EMA alignment.
🔹 Auto-Adaptive Fibonacci Grid:
Self-updating Fibonacci retracement levels (23.6%–78.6%) pinpoint reversals and entries.
Built for crypto’s volatility, recalculating with every candle.
🔹 Laser-Focused Signals:
AI-inspired buy/sell alerts combining EMA crossovers + Fibonacci + trend strength.
Clean visual markers (▲/▼) eliminate chart clutter.
🔹 Risk Management Built-In:
Auto-stop loss & take profit zones based on live volatility (ATR-adjusted).
Professional price table for rapid decision-making.
🔹 Crypto-Optimized Design:
Flawless performance across all timeframes (minutes to weekly).
Sleek, institutional-grade visuals with trend-highlighted backgrounds.
EMA 5 and SMA 10 Crossover with RSI by santosh kadamExplanation of the Script:
Indicators:
EMA 5 and SMA 10: These are the two moving averages used to determine the trend direction.
Buy signal is triggered when EMA 5 crosses above SMA 10.
Sell signal is triggered when EMA 5 crosses below SMA 10.
RSI 14: This is used to filter buy and sell signals.
Buy trades are allowed only if RSI 14 is above 60.
Sell trades are allowed only if RSI 14 is below 50.
Buy Conditions:
The strategy waits for the EMA crossover (EMA 5 crosses above SMA 10).
The strategy checks if RSI 14 is above 60 for confirmation.
If the price is below 60 on RSI 14 at the time of crossover, the strategy will wait until the price crosses above 60 on RSI 14 to initiate the buy.
Sell Conditions:
The strategy waits for the EMA crossover (EMA 5 crosses below SMA 10).
The strategy checks if RSI 14 is below 50 for confirmation.
If the price is above 50 on RSI 14 at the time of crossover, the strategy will wait until the price crosses below 50 on RSI 14 to initiate the sell.
Exit Conditions:
The Buy position is closed if the EMA crossover reverses (EMA 5 crosses below SMA 10) or RSI 14 drops below 50.
The Sell position is closed if the EMA crossover reverses (EMA 5 crosses above SMA 10) or RSI 14 rises above 60.
Plotting:
The script plots the EMA 5, SMA 10, and RSI 14 on the chart for easy visualization.
Horizontal lines are drawn at RSI 60 and RSI 50 levels for reference.
Key Features:
Price Confirmation: The strategy ensures that buy trades are only initiated if RSI 14 crosses above 60, and sell trades are only initiated if RSI 14 crosses below 50. Additionally, price action must cross these RSI levels to confirm the trade.
Reversal Exits: Positions are closed when the EMA crossover or RSI condition reverses.
Backtesting:
Paste this script into the Pine Editor on TradingView to test it with historical data.
You can adjust the EMA, SMA, and RSI lengths based on your preferences.
Let me know if you need further adjustments or clarification!
Demo GPT - Bollinger Bands StrategyDemo GPT - Bollinger Bands Strategy, this strategy is going to help the people in identifying buy and sell signals