GMMA Long-Short SignalBug fix
Fix Buy 1 signal disappear
Use these indicator as helper:
FOMO_Momentum_Scalper
The MACD fast line with a period of 22, slow line with a period of 72, and Signal Smoothing of 9 can achieve 99% performance.
First check GMMA, if there is a buy signal, then confirm with FOMO; conversely, if there is a sell signal, then confirm with GMMA.
Order Block Finder DARK
Specializing in bottom rebound trading, the accuracy is very high. However, it's uncertain whether future functions should be used.
Candlestick analysis
VWAP + MA Crossover Strategy with Time Filter and Labelsthis strat will take trades from a rejection of Vwap and MAs
Txn Label MarkerScript which marks txn labels
One need to copy transactions CSV data into pre defined strings fields before executing this
Ichimoku Cloud with SL TPIndikatornya agak aneh titik harganya harus di pilih resolusi chart yang tepat
Marcar Máximos y Mínimos de una BarraMarcar Máximos y Mínimos de una Barra especifica para un determinado dia.
es el comienzo para crear una forma de visualizar la estrategia de seguimiento del patron de inicio de dia siguiente
EMA/MA with OHCL Candle and Long Wick – A Comprehensive Trading
Dear Traders,
I am excited to introduce EMA/MA with OHCL Candle and Long Wick, a powerful trading indicator designed to enhance market analysis by combining Exponential Moving Averages (EMA), Simple Moving Averages (MA), OHCL candle patterns, and long wick detection into a single tool.
Key Features:
✅ Customizable Wick Size & Timeframe – Adapt the indicator to different market conditions by adjusting wick size and analyzing price action over any timeframe.
✅ EMA & MA for Trend Analysis – Includes multiple EMAs and MAs (5, 9, 15, 20, 50, 100, 200) to help identify trends and potential reversals.
✅ Long Wick Signal Detection – Identifies strong Buy and Sell opportunities based on wick size, signaling potential market turning points.
✅ OHCL Candle Analysis – Highlights OHCL patterns to provide additional insights into price action.
✅ User-Friendly & Lightweight – Efficiently coded for seamless performance on TradingView.
This indicator is perfect for traders looking to refine their entry and exit strategies by leveraging price action and moving averages. Whether you're a scalper, day trader, or swing trader, this tool provides valuable insights to enhance your decision-making.
Give it a try, and let me know your feedback! 🚀
Best regards,
Purnendu Singh
Themp StrategyThis is my Trade strategy setup base on SMC
my Setup
SMC + IDM + Order block + Fair value gap + Imbalance candle
Reversal Trade strategya simple trading strategy based on the reversal candlestick pattern (Morning/Evening star).
Delta% per CandleIl delta% nell'indicatore rappresenta la percentuale dell'imbalzo tra il volume degli acquisti e delle vendite in una singola barra. In altre parole, viene calcolato come:
Delta% = (Volume Buy – Volume Sell) / Volume Totale × 100
It's better to use it for futures—enjoy!
MACD Strategy//@version=5
strategy("MACD Strategy", overlay=true)
//Macd 参数
fastLength = input(12, title="快线长度")
slowLength = input(26, title="慢线长度")
MACDLength = input(9, title="MACD 信号线长度")
// 计算 MACD
MACD = ta.ema(close, fastLength) - ta.ema(close, slowLength)
aMACD = ta.ema(MACD, MACDLength)
delta = MACD - aMACD
// 计算 EMA(10) 和 MA(20)
ema10 = ta.ema(close, 10)
ma20 = ta.sma(close, 20)
// 在图表上绘制 EMA(10) 和 MA(20),用于调试
plot(ema10, title="EMA 10", color=color.blue, linewidth=2)
plot(ma20, title="MA 20", color=color.red, linewidth=2)
// 实时检查条件
// 检查 EMA(10) 是否高于 MA(20)
bool emaAboveMa = ema10 > ma20
// 检查 MACD 是否在信号线上方,且 MACD 和信号线均在 0 轴下方
bool macdCondition = (MACD > aMACD) and (MACD < 0) and (aMACD < 0)
// 添加调试信息 - 当条件满足时绘制图形
plotshape(emaAboveMa, title="EMA Above MA Condition", size=size.small, text="eam")
plotshape(macdCondition, title="MACD Condition", size=size.small, text="macd")
// 当两个条件都满足时,触发买入操作
if (emaAboveMa and macdCondition)
strategy.entry("多头", strategy.long, comment="买入信号")
// 显示买入信号的标签
label.new(bar_index, high, "买入", textcolor=color.white, style=label.style_label_up, size=size.normal)
// 平仓条件
if (ta.crossunder(delta, 0) and MACD > 0 and aMACD > 0)
strategy.close("MacdLE", comment="Close Long")
//if (ta.crossunder(delta, 0))
// strategy.entry("MacdSE", strategy.short, comment="MacdSE")
//plot(strategy.equity, title="equity", color=color.red, linewidth=2, style=plot.style_areabr)
Hanzo_Wave_Price %Hanzo_Wave_Price % is a custom indicator for the TradingView platform that combines RSI (Relative Strength Index) and Stochastic RSI while also displaying the percentage price change over a specified period. This indicator helps traders identify overbought and oversold conditions, analyze price waves, and forecast potential market movements.
How It Works
1. RSI and Stochastic RSI Calculation
RSI is calculated based on the selected price source (default: close) with a user-defined Main Line period.
Stochastic RSI is then applied and smoothed using a moving average.
The Main Line represents the smoothed Stochastic RSI, serving as a wave indicator to help identify potential entry and exit points.
2. Overbought and Oversold Zones
The 70 and 30 levels indicate overbought and oversold zones, displayed as dashed lines on the chart.
Additional 20% and 10% levels provide a visual reference for historical price changes, aiding in future predictions.
3. Percentage Price Change Calculation
The indicator calculates the percentage price change over a Barsback period (default: 30 candles).
Users can choose a multiplier (100 or 1000) for better visualization (1000 scales the values by dividing by 10).
The data is displayed as a colored area:
Red (Short) → Negative price change.
Green (Buy) → Positive price change.
Settings & Parameters
Multiplier 💪 – Selects the scaling factor (100 or 1000) for percentage values.
Main Line ✈️ – Stochastic smoothing period (smoothK).
Don't touch ✋ – Reserved value (do not modify).
RSI 🔴 – RSI calculation period.
Stochastic 🔵 – Stochastic RSI calculation period.
Source ⚠️ – Price source for calculations (default: close).
Price changes % 🔼🔽 – Enables percentage price change display.
Barsback ↩️ – Number of candles used to calculate price change.
Visual Representation
Gray Line (Takeprofit Line 🎯) – Smoothed Stochastic RSI.
Red Dashed Line (70) – Overbought zone.
Blue Dashed Line (30) – Oversold zone.
Percentage Price Change Display:
Green Fill → Price increase.
Red Fill → Price decrease.
Advantages
✅ Combined Analysis – Uses RSI and Stochastic RSI for more accurate market condition identification.
✅ Flexibility – Customizable parameters allow adaptation for different markets and strategies.
✅ Visual Clarity – Clearly defined zones and dynamic percentage change display.
✅ Additional Market Insights – The percentage price change helps assess market volatility.
Disadvantages
⚠ Lagging Signals – Smoothing may cause delayed response.
⚠ False Breakouts – The 70/30 levels may not always work effectively for all assets.
⚠ IMPORTANT!
This indicator is for informational and educational purposes only. Past performance does not guarantee future profits! Use it in combination with other technical analysis tools. 🚀
Example 1: Identifying a Long Position
📌 Scenario:
The asset price has dropped significantly (1-hour timeframe), and the Main Line (gray line) crosses below the 30 level. This signals oversold conditions, which may indicate a potential reversal or upward correction.
✅ How to Use:
1️⃣ Identifying the Entry Zone:
If the Main Line is below 30, consider looking for a long entry point.
2️⃣ Confirming the Signal:
Place a vertical line at the moment when the Main Line crosses the 30 level from below.
3️⃣ Confirmation on a Lower Timeframe:
Switch to a 30-minute timeframe and wait for the Main Line to cross above the 70 level.
Enter a long position at this point.
4️⃣ Analyzing Percentage Price Change:
Check the historical indicator behavior:
If a similar past movement resulted in a ~10% price increase (green fill), this may indicate potential upward momentum.
5️⃣ Setting Take-Profit:
Set a take-profit level at 10%, based on previous price movements.
Also, monitor when the Main Line crosses the 70 level, as this may signal a potential profit-taking point.
📊 Conclusion:
This method helps to precisely determine entry points by confirming signals across multiple timeframes and analyzing the historical volatility of the asset. 🚀
Example 2: Analyzing Percentage Price Change
📌 Scenario:
You have set the Barsback parameter to 30, and the indicator shows +3.5%. This means that over the last 30 candles, the price has increased by 3.5%.
However, such small changes might be visually difficult to notice. To improve visibility, you can enable the multiplier (1000), which will scale the displayed percentage change to 35%. This is purely for visual convenience—the actual price movement remains 3.5%.
✅ How to Use:
1️⃣ Identifying Trend Direction:
If the percentage change is positive (green area) → Uptrend.
If the percentage change is negative (red area) → Downtrend.
2️⃣ Analyzing Movement Strength:
Compare the current percentage change with previous waves to evaluate the strength of the movement.
For example:
If previous waves reached 10% or more, a current wave of 3.5% might indicate a weak trend or a local correction.
3️⃣ Additional Filtering with the Main Line (Gray Line):
Use the Main Line to confirm the trend.
If the percentage change shows an increase, but the Main Line is still below 30, further upward movement can be expected.
If the percentage change indicates a decline, but the Main Line is above 70, there is a higher probability of a downward reversal.
"It's unfortunate that TradingView restricts adding images to indicator descriptions unless you have a paid subscription. This makes it harder to share free tools effectively."
Crystal Cloud EMAThe Crystal Cloud EMA Indicator is a powerful trend-following tool that merges the Ichimoku Cloud with EMA 50 & EMA 200, helping traders identify key market trends, dynamic support and resistance levels, and momentum shifts. By combining these elements, this indicator provides clearer entry and exit signals for various trading strategies.
🔹 Key Features:
✔ Ichimoku Cloud: Highlights dynamic support & resistance zones based on market volatility.
✔ EMA 50 & EMA 200: Helps confirm the trend direction with crossover signals.
✔ Bullish & Bearish Cloud Zones: Visually distinct areas that help identify market sentiment.
✔ Multi-Market Compatibility: Works effectively in Forex, Crypto, and Stocks.
✔ Momentum Confirmation: Detects potential trend reversals when price interacts with the cloud.
📈 How to Use the Crystal Cloud EMA Indicator:
🔹 Buy Signal:
➡ Price trades above the cloud (indicating bullish momentum).
➡ EMA 50 crosses above EMA 200 (confirming an uptrend).
➡ A breakout from the cloud with strong momentum may signal trend continuation.
🔹 Sell Signal:
➡ Price trades below the cloud (indicating bearish momentum).
➡ EMA 50 crosses below EMA 200 (confirming a downtrend).
➡ A breakout below the cloud with strong momentum may signal further decline.
🔹 Cloud Breakout & Trend Shift:
➡ When the price breaks through the cloud, it often signals a shift in market momentum.
➡ A break above the cloud suggests bullish strength, while a break below the cloud indicates bearish pressure.
📊 Best Timeframes & Trading Style:
🔸 Works best on M30 and higher timeframes for trend confirmation.
🔸 Ideal for swing trading, intraday trading, and momentum-based strategies.
🔸 Should be used alongside additional confluences (such as volume or price action) for more precise decision-making.
⚠ Important Note:
This indicator is a technical analysis tool designed to assist traders in analyzing market trends. It should not be used in isolation—always consider additional market factors, such as news events and overall market conditions, before making trading decisions.
FutureFire v5 - 23/35 Candle Tracker with Custom ColorsThis indicator is designed to track the 23 and the 35 of every hour to help with identifying crucial swing points for intraday trading.
Basic Price Action IndicatorKey Features:
Support and Resistance: Identifies support and resistance levels based on the highest and lowest values of the last 20 bars (you can adjust the lookback period with the input).
Bullish Engulfing Pattern: Recognizes when a bullish engulfing candlestick pattern occurs and marks it below the bar.
Bearish Engulfing Pattern: Recognizes when a bearish engulfing candlestick pattern occurs and marks it above the bar.
Background Coloring: Highlights the chart background with a green or red color based on the pattern detected, providing an easy visual cue.
How to Use:
Support and Resistance levels will be plotted on the chart as green and red lines.
Bullish Engulfing patterns will be marked below the bars with a “BUY” label.
Bearish Engulfing patterns will be marked above the bars with a “SELL” label.
The background color will change based on the detected price action pattern (green for bullish, red for bearish).
Highlight Specific Minute BarsThis is a simple way to view Goldbach Time, per the suggestion of @hopiplaka1
Any two minutes may be selected, however Hopi suggests 23 and 35.
Takes as input two user defined minutes and allows user to color each independently. Limits the painting to a user-set number of days back. Also, sets the forward projection to a user-set number of hours.
Test(1-Minute)HG test 1 minute time frame analysis, marking out the high and low before market open.
Hidden Order BlockThe Hidden Order Block Indicator helps traders identify bullish and bearish order blocks that align with market structure. It highlights key price zones where institutional activity may occur, assisting traders in making informed decisions.
🔥 Key Features:
✔ Bullish & Bearish Order Blocks – Marks potential institutional trading areas
✔ Trend-Based Analysis – Works effectively when used with trend confirmation
✔ Compatible Markets – Suitable for Forex, Crypto, and Stocks
✔ Timeframe Optimization – Designed for M30 and higher timeframes
✔ Flexible Trading Styles – Can be incorporated into scalping, swing trading, and intraday strategies
🔹 Technical Note: This script is designed to enhance market structure understanding and should be used with additional confluence for better decision-making.
Black Red Candles/Sticks/BarsThis script is a Pine Script™ v5 indicator designed to overlay red candles with custom-colored candles that have black bodies, wicks, and borders. It works by:
Checking if the current candle is "red" (i.e. when the close is lower than the open).
Using the plotcandle() function to replot only those red candles.
Setting the fill, wick, and border colors to black for the replotted candles.
Leaving non-red candles unaltered by plotting them as na.
In effect, red candles on the chart are replaced with a consistent black-colored representation, providing a unique visual style. Users may also disable the default candles for a cleaner display.
Bullish Engulfing on 3rd, 4th, or 5th Candlethis script detects a Bullish Engulfing pattern occurring on the 3rd, 4th, or 5th 5-minute candle of the day and:
✅ Marks it on the chart with an arrow and green highlight.
✅ Alerts traders when a signal appears.
✅ Works on any market by adjusting the market open time.
Price Action: Engulfing PatternsBullish Engulfing Pattern Detection: A bullish engulfing pattern is identified when the previous candle is bearish (close < open ), the current candle is bullish (close > open), and the current candle's body engulfs the previous candle's body (close >= open and open <= close ).
Bearish Engulfing Pattern Detection: A bearish engulfing pattern is identified when the previous candle is bullish (close > open ), the current candle is bearish (close < open), and the current candle's body engulfs the previous candle's body (open >= close and close <= open ).
Plotting the Patterns: The plotshape function is used to mark the detected patterns on the chart. Bullish engulfing patterns are marked below the bar with a green upward label, while bearish engulfing patterns are marked above the bar with a red downward label.