Monthly Vertical Lines//@version=5
indicator("Monthly Vertical Lines", overlay=true)
month_change = (month != month ) // Detects a new month
if month_change
line.new(x1=bar_index, y1=na, x2=bar_index, y2=na, extend=extend.both, color=color.gray, style=line.style_dotted, width=1)
圖表形態
CandelaCharts - Swing Failure Pattern (SFP)# SWING FAILURE PATTERN
📝 Overview
The Swing Failure Pattern (SFP) indicator is designed to identify and highlight Swing Failure Patterns on a user’s chart. This pattern typically emerges when significant market participants generate liquidity by driving price action to key levels. An SFP occurs when the price temporarily breaks above a resistance level or below a support level, only to quickly reverse and return within the previous range. These movements are often associated with stop-loss hunting or liquidity grabs, providing traders with potential opportunities to anticipate reversals or key market turning points.
A Bullish SFP occurs when the price dips below a key support level, triggering stop-loss orders, but then swiftly reverses upward, signaling a potential upward trend or reversal.
A Bearish SFP happens when the price spikes above a key resistance level, triggering stop-losses of short positions, but then quickly reverses downward, indicating a potential bearish trend or reversal.
The indicator is a powerful tool for traders, helping to identify liquidity grabs and potential reversal points in real-time. Marking bullish and bearish Swing Failure Patterns on the chart, it provides clear visual cues for spotting market traps set by major players, enabling more informed trading decisions and improved risk management.
📦 Features
Bullish/Bearish SFPs
Styling
⚙️ Settings
Length: Determines the detection length of each SFP
Bullish SFP: Displays the bullish SFPs
Bearish SFP: Displays the bearish SFPs
Label: Controls the size of the label
⚡️ Showcase
Bullish
Bearish
Both
📒 Usage
The best approach is to combine a few complementary indicators to gain a clearer market perspective. This doesn’t mean relying on the Golden Cross, RSI divergences, SFPs, and funding rates simultaneously, but rather focusing on one or two that align well in a given scenario.
The example above demonstrates the confluence of a Bearish Swing Failure Pattern (SFP) with an RSI divergence. This combination strengthens the signal, as the Bearish SFP indicates a potential reversal after a liquidity grab, while the RSI divergence confirms weakening momentum at the key level. Together, these indicators provide a more robust setup for identifying potential market reversals with greater confidence.
🚨 Alerts
This script provides alert options for all signals.
Bearish Signal
A bearish signal is triggered when a Bearish SFP is formed.
Bullish Signal
A bullish signal is triggered when a Bullish SFP is formed.
⚠️ Disclaimer
Trading involves significant risk, and many participants may incur losses. The content on this site is not intended as financial advice and should not be interpreted as such. Decisions to buy, sell, hold, or trade securities, commodities, or other financial instruments carry inherent risks and are best made with guidance from qualified financial professionals. Past performance is not indicative of future results.
SMA(20,50,100,200) - cryptoMittalSMA(20,50,100,200) - cryptoMittal. Aims to provide simple moving averages for various candle spans
Non-Lagging Indicator: EMA + TSI BY UTTAM PARAMANIK//@version=5
indicator("Non-Lagging Indicator: EMA + TSI", overlay=true)
// Parameters for the EMA
fastLength = input.int(9, title="Fast EMA Period", minval=1)
slowLength = input.int(21, title="Slow EMA Period", minval=1)
// Parameters for the TSI
tsiFastLength = input.int(13, title="TSI Fast Length", minval=1)
tsiSlowLength = input.int(25, title="TSI Slow Length", minval=1)
tsiSignalLength = input.int(7, title="TSI Signal Length", minval=1)
// EMA Calculation
fastEMA = ta.ema(close, fastLength)
slowEMA = ta.ema(close, slowLength)
// TSI Calculation
delta = close - close
doubleSmoothDelta = ta.ema(ta.ema(delta, tsiFastLength), tsiSlowLength)
doubleSmoothAbsDelta = ta.ema(ta.ema(math.abs(delta), tsiFastLength), tsiSlowLength)
tsi = 100 * doubleSmoothDelta / doubleSmoothAbsDelta
tsiSignal = ta.ema(tsi, tsiSignalLength)
// Plot EMAs
plot(fastEMA, color=color.blue, title="Fast EMA")
plot(slowEMA, color=color.orange, title="Slow EMA")
// Plot TSI and Signal
plot(tsi, color=color.green, title="True Strength Indicator")
plot(tsiSignal, color=color.red, title="TSI Signal")
// Buy and Sell Conditions
buyCondition = ta.crossover(fastEMA, slowEMA) and ta.crossover(tsi, tsiSignal)
sellCondition = ta.crossunder(fastEMA, slowEMA) and ta.crossunder(tsi, tsiSignal)
// Plot Buy and Sell Signals
plotshape(buyCondition, color=color.green, style=shape.labelup, location=location.belowbar, text="BUY")
plotshape(sellCondition, color=color.red, style=shape.labeldown, location=location.abovebar, text="SELL")
INGMorelKillzone con Tendencia H1 y Análisis de Sentimiento
Este indicador te ayuda a identificar oportunidades de trading en la sesión de Nueva York (Killzone) basándose en la tendencia principal de H1. El color de fondo cambia según la tendencia (verde para alcista, rojo para bajista), y se combina con un filtro de sentimiento del mercado utilizando el RSI y el volumen. Además, muestra las líneas de HMA en M15 para ayudarte a identificar las entradas en el momento adecuado. ¡Optimiza tus decisiones de trading con este indicador visual y dinámico!
Nitesh - Buyside & Sellside LiquidityLiquidity Zones
Buyside Liquidity Zones: Enables display of the buyside liquidity zones.
Margin: Sets margin/sensitivity for the liquidity zone boundaries.
Color: Color option for buyside liquidity levels & zones.
Sellside Liquidity Zones: Enables display of the sellside liquidity zones.
Margin: Sets margin/sensitivity for the liquidity zone boundaries.
Color: Color option for sellside liquidity levels & zones.
🔹 Liquidity Voids
Liquidity Voids: Enables display of both bullish and bearish liquidity voids.
Label: Enables display of a label indicating liquidity voids.
13, 21, 34 SMAs tradewithshamincluded 13,21 and 34 simple moving average for swing trade. use it in day candle
RelVolRelative Volume is an indicator of current volume divided by average volume over the lats 10 candle sticks.
Mbah Mul ReversalInputs:
showCRB1 and showCRB2 are boolean inputs to toggle the display of CRB1 (Bearish Reversal) and CRB2 (Bullish Reversal) signals.
numCandles is an integer input to specify the number of candles to consider.
Historical Data:
The script retrieves the previous candle's open, close, high, and low prices using request.security.
CRB1 (Bearish Reversal):
Checks if the previous candle was bullish (close_prev > open_prev).
Checks if the current high is higher than the previous high.
Checks if the current close is within a specific range or lower than the previous open.
If all conditions are met, it places a "SELL" label above the current high.
CRB2 (Bullish Reversal):
Checks if the previous candle was bearish (close_prev < open_prev).
Checks if the current low is lower than the previous low.
Checks if the current close is within a specific range or higher than the previous open.
If all conditions are met, it places a "BUY" label below the current low.
Буллтренд ололоsssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss
Doji NattawatSure! Here's a detailed explanation of the Pine Script code in English. This code is designed to detect Doji candles, draw horizontal lines at the open and close prices of these candles, and display the price values near those lines.
Range momentum retestThis script signals you when price is testing the 10MA, whilst there is a long MA and a short MA cross.
Volume-Based RSI Color Indicator with MAsVolume-Based RSI Color Indicator with MAs
Overview
This script combines the Relative Strength Index (RSI) with volume analysis to provide an enhanced perspective on market conditions. By dynamically coloring the RSI line based on overbought/oversold conditions and volume thresholds, this indicator helps traders quickly identify high-probability reversal zones. Additionally, it incorporates short-term and long-term moving averages (MAs) of the RSI for trend analysis, making it a versatile tool for scalping and swing trading strategies.
Key Features
Dynamic RSI Color Coding:
The RSI line changes color based on two conditions:
Overbought/High Volume: RSI is above the overbought threshold (default: 70) and volume exceeds the average volume by a user-defined multiplier (default: 2.0). The line turns red, indicating potential reversal zones.
Oversold/High Volume: RSI is below the oversold threshold (default: 30) and volume exceeds the average volume by the multiplier. The line turns green, suggesting potential buying opportunities.
Neutral Conditions: Default blue color for all other scenarios.
Volume Integration:
Unlike standard RSI indicators, this script incorporates volume data to refine signals, helping traders avoid false signals in low-volume environments.
RSI Moving Averages:
Two moving averages of the RSI (short-term and long-term) provide trend context:
200-period MA: Highlights the long-term trend in RSI values.
20-period MA: Shows short-term fluctuations for quick decision-making.
Both MAs can be calculated using Simple or Exponential methods, giving users flexibility.
Visual Aids:
Horizontal lines at the overbought (70) and oversold (30) levels help define the boundaries of expected price action extremes.
How It Works
The script calculates the RSI over a user-defined length (default: 14).
Volume data is compared to its moving average to determine if it exceeds the user-defined high-volume threshold.
When RSI and volume conditions align, the RSI line is dynamically colored to indicate potential overbought/oversold zones.
The RSI moving averages provide additional context to confirm trends or reversals.
How to Use
Identify Reversal Zones:
Look for green RSI signals in oversold conditions to identify potential buying opportunities.
Look for red RSI signals in overbought conditions to identify potential selling opportunities.
Use Moving Averages for Confirmation:
When the RSI is above its 200-period MA, the long-term trend is bullish; consider only long trades.
When the RSI is below its 200-period MA, the trend is bearish; consider only short trades.
Combine with Other Tools:
This indicator works best when used alongside price action analysis, candlestick patterns, or support/resistance levels.
Originality
This script is unique in combining volume analysis with RSI and RSI-specific moving averages. While many indicators focus on RSI or volume separately, this script marries these two key metrics to filter out weak signals and improve trade decision accuracy.
Chart Recommendations
Clean Chart: Use this indicator on a clean chart without additional overlays for maximum clarity.
Timeframes: Works well on intraday charts (e.g., 5m, 15m) for scalping and on higher timeframes (e.g., 1H, 4H, Daily) for swing trading.
Disclaimer
This indicator is a tool to aid trading decisions and should not be used in isolation. Always consider other factors such as market conditions, news events, and risk management.
Multi-Timeframe Candles HistogramsAt some community members' requests, I have built on the original code to make it a single indicator with the option for users to check off which timeframes they want to be shown. Choices are 1-hour, daily, weekly, and monthly.
I couldn't figure out how to separate each timeframe into its own histogram, so this is the best I can offer at the moment. If any community member wants to take a crack at it, be my guest.
Colors are customizable.
If you have a paid TW account, you can lay it down twice and put the hour and daily on one and the weekly and monthly on the other.
That said, I hope you enjoy this version of this indicator.
R.I.P. Rob Smith, creator of TheStrat.
---
Key Features and Benefits
1. Custom Timeframe Selection:
- Choose from an array of timeframes ranging from minutes to months, giving you complete flexibility in your market analysis.
- Quickly switch between different timeframes (e.g., 1-hour, daily, or weekly) to track continuity across varying levels.
2. Visual Representation of High/Low Markers:
- Enable or disable the display of high and low points to better understand price ranges and reversals.
- These markers allow you to spot key turning points on different timeframes, facilitating better entry or exit decisions.
3. Enhanced Candle Visualization:
- Displays candles with precise price levels aligned to your chosen timeframe, giving a clearer view of price trends.
- Candles are color-coded to reflect price movement, which is customizable by the user.
---
How to Use This Indicator
Monitor Multiple Timeframes Simultaneously:
- Place the indicator on your chart and choose the timeframes you want to follow (e.g., hourly, daily, weekly, monthly).
- For each instance, checkmark the desired timeframes in the menu to ensure that you’re tracking the right period.
Achieve Timeframe Continuity:
- By aligning lower timeframes with higher ones, this tool helps you confirm trends, detect reversals, and avoid trades that go against the broader market movement.
---
Why This Indicator is Valuable for Traders
This tool simplifies a core principle of TheStrat—full timeframe continuity—by visually representing price action across multiple timeframes in a clear and actionable way. It removes the guesswork and helps traders stay in sync with market momentum, regardless of the timeframe they are analyzing.
This solution offers flexibility, clarity, and speed, enabling traders to quickly grasp critical movements and improve decision-making. Whether you are a scalper focusing on intraday moves or a swing trader watching weekly trends, this tool empowers you to maintain alignment with the overall market structure.
In essence, it brings the power of TheStrat to your fingertips by offering precise and easy-to-read visual aids, allowing you to seamlessly apply Rob Smith’s philosophy to your trading.
Doji Detector By NattawatThis indicator is designed to detect Doji candlesticks on your chart and draw horizontal lines at the Open and Close prices of the Doji candlesticks. You can customize the number of bars to wait before drawing these horizontal lines after a Doji is detected. These horizontal lines will help you easily identify and analyze the points where Doji candlesticks occur on your chart.
15m MNQ Strategy IntradayHigh probability intraday trading strategy for the 15min timeframe using EMAs and has Buy/Sell indicators. This is a great strategy for A.I, contact me on Twitter/X.com @28Bamz for any further info.
MDM Customizable 5 EMAAwork in progress for ema students. analysis is my dream to master the market .i wanna gert in when the market reverses and this scrip is the begining of my education.
ELC Indicator**ELC Indicator – Enigma Liquidity Concept**
The ELC Indicator is a cutting-edge tool designed for traders who want to leverage price action and liquidity concepts for high-precision trading opportunities. Unlike conventional indicators that rely purely on trend-following or oscillatory methods, ELC incorporates a unique combination of market structure, Fibonacci retracement levels, and dynamic EMA filtering to detect key buy and sell zones. This original approach helps traders capture the most relevant market movements and anticipate potential reversals with higher confidence.
---
### **What the ELC Indicator Does**
The primary goal of the ELC Indicator is to identify liquidity zones and plot Fibonacci-based levels around detected buy or sell signals. It continuously monitors price action to identify instances where significant liquidity grabs occur, signaled by breakouts beyond recent highs or lows. Once a signal is detected, the indicator plots horizontal lines at key Fibonacci ratios (0%, 25%, 50%, 75%, 100%, 120%, and 180%) to give traders a clear visual framework for potential retracement or extension levels.
Additionally, the indicator includes a dynamic EMA filter, which ensures that buy signals are only triggered when the price is above the EMA and sell signals when the price is below the EMA. This filtering mechanism helps reduce false signals in choppy markets and aligns trades with the broader trend direction.
---
### **Key Features**
1. **Buy & Sell Signals**
- Buy signals are generated when a liquidity grab occurs below the previous low, and the closing price is above the candle body midpoint and the EMA.
- Sell signals are triggered when a liquidity grab occurs above the previous high, and the closing price is below the candle body midpoint and the EMA.
- Visual cues are provided via small upward (green) and downward (red) triangles on the chart.
2. **Fibonacci Levels**
- For each buy or sell signal, the indicator plots multiple horizontal lines at key Fibonacci levels. These levels can help traders set realistic profit targets and stop-loss levels.
- The plotted lines can be customized in terms of style (solid, dotted, dashed) and color (buy and sell line colors).
3. **Dynamic EMA Filtering**
- A customizable EMA filter is integrated into the logic to align trades with the prevailing trend.
- The EMA length is adjustable, allowing traders to fine-tune the indicator based on their trading style and market conditions.
4. **Alert System**
- Alerts can be enabled for both buy and sell signals, ensuring traders never miss an opportunity even when away from the screen.
- Alerts are triggered once per bar, ensuring timely notifications without excessive noise.
5. **Customizable Signal Visibility**
- Traders can toggle the visibility of the last 9 buy and sell signals. When this option is disabled, only the most recent signal is displayed, helping to declutter the chart.
---
### **How to Use the ELC Indicator**
- **Trend Following**: The ELC Indicator works well in trending markets by filtering signals based on the EMA direction. Traders can use the plotted Fibonacci levels to enter trades, set profit targets, and manage risk.
- **Reversal Trading**: The liquidity grab detection mechanism allows traders to capture potential market reversals. By waiting for price retracements to key Fibonacci levels after a signal, traders can enter trades with a favorable risk-to-reward ratio.
- **Scalping & Day Trading**: With its ability to plot key intraday levels and generate real-time alerts, the ELC Indicator is particularly useful for scalpers and day traders looking to exploit short-term market inefficiencies.
---
### **Concepts Underlying the Calculations**
1. **Liquidity Grabs**: The ELC Indicator’s core logic is based on detecting instances where the market moves beyond a recent high or low, triggering a liquidity grab. This often signals a potential reversal or continuation, depending on broader market conditions.
2. **Fibonacci Ratios**: Once a signal is detected, key Fibonacci levels are plotted to provide traders with actionable zones for trade entries, profit targets, or stop-loss placements.
3. **EMA Filtering**: The EMA acts as a dynamic trend filter, ensuring that signals are aligned with the dominant market direction. This reduces the likelihood of entering trades against the prevailing trend.
---
### **Why ELC is Unique**
The ELC Indicator stands out by combining multiple powerful trading concepts—liquidity, Fibonacci ratios, and EMA filtering—into a single tool that provides actionable and visually intuitive information. Unlike traditional trend-following indicators that lag behind price action, ELC proactively identifies key market turning points based on liquidity events. Its customizable features, real-time alerts, and comprehensive plotting of Fibonacci levels make it a versatile tool for traders across various styles and timeframes.
Whether you're a scalper looking for intraday opportunities or a swing trader aiming to capture larger moves, the ELC Indicator offers a robust framework for identifying and executing high-probability trades.
---
### **How to Get Started**
1. Add the ELC Indicator to your chart.
2. Customize the EMA length, line colors, and style based on your preference.
3. Enable alerts to receive real-time notifications of buy and sell signals.
4. Use the plotted Fibonacci levels to plan your trade entries, profit targets, and stop-loss levels.
5. Combine the signals from ELC with your existing market analysis for optimal results.
---
This unique approach makes the ELC Indicator a valuable tool for traders seeking precision, clarity, and consistency in their trading decisions.
Beardy Squeeze Pro (With high compression squeeze alert)Added high compression squeeze alert to the Beardy Squeeze Pro
Candle VolumeThis indicator gives gives candle volume represented in X.Y format for simplicity.
100% = 1.0
20% = 0.2
Anything 10X is represented by an arrow up or down based on candle price delta open to close.
By default, a 500 candle lookback of volume is used excluding exteem outliers of 50.
You can adjust these in settings.
Candle VolumeThis indicator gives gives candle volume represented in X.Y format for simplicity.
100% = 1.0
20% = 0.2
Anything 10X is represented by an arrow up or down based on candle price delta open to close.
By default, a 500 candle lookback of volume is used excluding exteem outliers of 50.
You can adjust these in settings.
Sanket_OpThis Pine Script detects and highlights bullish and bearish engulfing candle patterns on the chart. It also plots today's Open, High, Low, and Close (OHLC) values, along with an Exponential Moving Average (EMA) based on user input. The script is designed for visual analysis and can trigger alerts for pattern recognition.