Çoklu Zaman Aralıklı Smoothed Heiken Ashi Al-Sat SinyalleriMulti-Timeframe Smoothed Heiken Ashi Buy-Sell Signals
The Multi-Timeframe Smoothed Heiken Ashi Buy-Sell Signals indicator is a powerful tool designed for traders who seek to enhance their decision-making process by combining the clarity of Heiken Ashi candles with the precision of multi-timeframe analysis. This innovative indicator provides smoothed Heiken Ashi signals across multiple timeframes, allowing traders to identify trends, reversals, and potential entry/exit points with greater confidence.
Key Features:
Smoothed Heiken Ashi Calculation:
The indicator uses a smoothed version of Heiken Ashi candles, which reduces market noise and provides a clearer representation of price trends.
Heiken Ashi candles are recalculated to highlight the underlying momentum, making it easier to spot trend continuations and reversals.
Multi-Timeframe Analysis:
Traders can analyze Heiken Ashi signals across three customizable timeframes simultaneously (e.g., 1-minute, 5-minute, and 15-minute).
This multi-timeframe approach helps confirm trends and signals by aligning short-term and long-term perspectives.
Buy-Sell Signals:
The indicator generates buy signals when the smoothed Heiken Ashi candles indicate a strong uptrend across all selected timeframes.
Sell signals are triggered when the candles show a strong downtrend, helping traders exit positions or consider short-selling opportunities.
Trend Confirmation:
By combining signals from multiple timeframes, the indicator ensures higher accuracy and reduces false signals.
Traders can use this feature to confirm the strength of a trend before entering a trade.
Customizable Settings:
Users can customize the timeframes, smoothing parameters, and signal thresholds to suit their trading style and preferences.
The indicator also allows for adjustable stop-loss and take-profit levels, enabling better risk management.
Visual Clarity:
The indicator plots buy and sell signals directly on the chart, making it easy to interpret.
Color-coded signals and trend zones (e.g., overbought, oversold) provide a clear visual representation of market conditions.
How It Works:
The indicator calculates smoothed Heiken Ashi values for each selected timeframe.
It then compares the trends across these timeframes to identify high-probability buy and sell opportunities.
When all timeframes align (e.g., uptrend on 1-minute, 5-minute, and 15-minute charts), a strong buy signal is generated. Conversely, a sell signal is triggered when downtrends align across timeframes.
Benefits:
Improved Trend Identification: Smoothed Heiken Ashi candles make it easier to identify and follow trends.
Enhanced Signal Accuracy: Multi-timeframe analysis reduces false signals and increases confidence in trade setups.
Flexible and Adaptable: Customizable settings allow traders to tailor the indicator to their specific needs.
Risk Management: Built-in stop-loss and take-profit features help traders manage risk effectively.
Ideal For:
Swing Traders: Identify and capitalize on medium-term trends.
Day Traders: Use multi-timeframe signals to make quick, informed decisions.
Scalpers: Benefit from the smoothed Heiken Ashi calculations for short-term trades.
Conclusion:
The Multi-Timeframe Smoothed Heiken Ashi Buy-Sell Signals indicator is a versatile and reliable tool for traders of all experience levels. By combining the simplicity of Heiken Ashi candles with the power of multi-timeframe analysis, it provides a clear and actionable roadmap for navigating the markets. Whether you're a day trader, swing trader, or scalper, this indicator can help you make smarter, more confident trading decisions.
نماذج فنيه
Buy Side Strategy with MA and RSIBuy Entry Condition:
Price crosses above the 20 EMA.
RSI is greater than 50 (indicating a bullish trend).
If both conditions are met, a Buy signal (▲) is triggered.
Exit Condition:
Price crosses below the 20 EMA.
If the exit condition is met, an Exit Buy signal (✖) is triggered.
Moving Averages:
20 EMA is plotted in blue.
50 EMA is plotted in orange.
RSI:
RSI is plotted in the main window.
A dotted line is drawn at RSI = 50 to help visualize trend strength.
Engulfing Sweeps - Milana TradesEngulfing Sweeps
The Engulfing Sweeps Candle is a candlestick pattern that:
1)Takes liquidity from the previous candle’s high or low.
2)Fully engulfs previous candles upon closing.
3)Indicates strong buying or selling pressure.
4)Helps determine the bias of the next candle.
Logic Behind Engulfing Sweeps
If you analyze this candle on a lower timeframe, you’ll often see popular models like PO3 (Power of Three) or AMD (Accumulation – Manipulation – Distribution).
Once the candle closes, the goal is to enter a position on the retracement of the distribution phase.
How to Use Engulfing Sweeps?
Recommended Timeframes:
4H, Daily, Weekly – these levels hold significant liquidity.
Personally, I prefer 4H, as it provides a solid view of mid-term market moves.
Step1 - Identify Engulfing Sweep Candle
Step 2-Switch to a lower timeframe (15m or 5m).And you task identify optimal trade entry
Look for an entry pattern based on:
FVG (Fair Value Gap)
OB (Order Block)
FIB levels (0/0.25/0.5/ 0.75/ 1)
Wait for confirmation and take the trade.
Automating with TradingView Alerts
To avoid missing the pattern, you can set up alerts using a custom script. Once the pattern forms, TradingView will notify you so you can analyze the chart and take action. This approch helps me be more freedom
SGS - Simple Levels V2Paints Simple Levles
Daily,Weekly,Monthly Open
Naked Daily
Naked Weekly
CME Weekend Close
Monday High / Low
Hourly Candle ShadingShades the first 15m of the hourly candle and then the second half of it (30-16m). Colors are adjustable.
20 EMA Touch Alert [v5]The Focuz 20 EMA Touch Alert is a simple yet powerful tool developed by Focuz to help traders stay alert when the market price touches the 20-period Exponential Moving Average (EMA).
Hacim Analizli Destek-Direnç Stratejisi (Uyarılı)//@version=5
indicator("Hacim Analizli Destek-Direnç Stratejisi (Uyarılı)", overlay=true)
// Parametreler
var float entryPrice = na
var bool inTrade = false
var float takeProfitLevel = na
var float stopLossLevel = na
// Hacim ve Fiyat Hareketi
volumeThreshold = input.float(100000, title="Hacim Eşiği")
priceChangeThreshold = input.float(2.0, title="Fiyat Değişimi Eşiği (%)")
// Destek ve Direnç Seviyeleri
lookbackPeriod = input.int(14, title="Destek/Direnç Periyodu")
supportLevel = ta.lowest(low, lookbackPeriod)
resistanceLevel = ta.highest(high, lookbackPeriod)
// Destek ve Direnç Çizgilerini Çiz
plot(supportLevel, color=color.green, linewidth=2, title="Destek")
plot(resistanceLevel, color=color.red, linewidth=2, title="Direnç")
// Hacim Analizi
volumeDecreaseThreshold = input.float(0.7, title="Hacim Azalma Eşiği (%)")
volumeDecrease = volume < (volume * volumeDecreaseThreshold)
// Yükseliş Hacmi ve Kırılım Tespiti
volumeIncrease = volume > volumeThreshold
priceBreakout = close > resistanceLevel // Direnç seviyesini kırma
// Giriş Koşulu
if (volumeIncrease and priceBreakout and not inTrade)
entryPrice := close
takeProfitLevel := entryPrice * (1 + priceChangeThreshold / 100)
stopLossLevel := entryPrice * (0.98) // %2 stop loss
inTrade := true
label.new(bar_index, low, text="Giriş", style=label.style_circle, color=color.green, textcolor=color.white)
alert("Giriş Sinyali: " + str.tostring(close), alert.freq_once_per_bar)
// Çıkış Koşulu (Kar Alma veya Stop Loss)
if (inTrade)
if (close >= takeProfitLevel)
inTrade := false
label.new(bar_index, high, text="Kar Al", style=label.style_circle, color=color.blue, textcolor=color.white)
alert("Kar Alma Sinyali: " + str.tostring(close), alert.freq_once_per_bar)
else if (close <= stopLossLevel)
inTrade := false
label.new(bar_index, low, text="Stop Loss", style=label.style_circle, color=color.red, textcolor=color.white)
alert("Stop Loss Sinyali: " + str.tostring(close), alert.freq_once_per_bar)
// Hacim Azalma Uyarısı
if (volumeDecrease)
label.new(bar_index, high, text="Hacim Azalıyor", style=label.style_label_down, color=color.orange, textcolor=color.white)
alert("Hacim Azalıyor: " + str.tostring(close), alert.freq_once_per_bar)
// Grafikte Giriş ve Çıkışları Gösterme
plotshape(series=volumeIncrease and priceBreakout, location=location.belowbar, color=color.green, style=shape.labelup, text="Giriş")
plotshape(series=close >= takeProfitLevel, location=location.abovebar, color=color.blue, style=shape.labeldown, text="Kar Al")
plotshape(series=close <= stopLossLevel, location=location.belowbar, color=color.red, style=shape.labeldown, text="Stop Loss")
// Hacim Grafiği
plot(volume, title="Hacim", color=color.blue, style=plot.style_columns)
MohMaayaaa### **Good Trading Habits for Success**
1️⃣ **Have a Trading Plan** – Define your strategy, entry & exit points, and risk management rules before executing trades.
2️⃣ **Risk Management** – Never risk more than **1-2%** of your capital per trade to avoid major losses.
3️⃣ **Use Stop-Loss & Take-Profit** – Protect your trades with stop-loss to limit losses and take-profit to secure gains.
4️⃣ **Position Sizing** – Adjust trade size based on risk, ensuring no single trade can wipe out your account.
5️⃣ **Emotional Discipline** – Avoid revenge trading, overtrading, or making impulsive decisions. Stick to your plan.
6️⃣ **Keep a Trading Journal** – Track your trades, analyze mistakes, and refine your strategy.
7️⃣ **Continuous Learning** – Stay updated with market trends, technical analysis, and improve your strategy over time.
🔹 **Key Rule:** **Survive first, profit later.** Focus on **capital preservation** before chasing big wins. 🚀
Triple EMA with LabelsThis indicator "Triple EMA with Labels", is designed to plot the 8, 21, and 50 period Exponential Moving Averages (EMAs) on the chart. By default, the labels display "8 EMA", "21 EMA", and "50 EMA", positioned slightly above their respective lines for better visibility. Users can customize or remove the label text through the indicator settings, allowing flexibility to suit individual preferences.
Stable Coin Dominance RSI with Proportional + InvertStable Coin Dominance RSI with addition of an Invert checkbox to align direction with pricing.
EPlay (think_analyst)Eplay indicator created by Think Analyst to identify engulfing candle which is closed above previous candle's open/close which ever is high for bullish condition and vice versa for bearish condition
Upward Divergence with RSI ConfirmationUpward divergence detection. A quick brown fox jumps over the lazy dog.
MMXT - Smart Money Concept com Range de 5 MinutosO que o código faz:
Zonas de Liquidez: Identifica zonas de liquidez baseadas em níveis de preço específicos no gráfico de 5 minutos.
Gap de Valor Justo: Detecta gaps de preço e verifica se a diferença entre o preço de fechamento e o preço de abertura é maior que o valor definido em gapSize.
Suporte e Resistência: Calcula e plota os níveis de suporte e resistência.
Sinais de Compra/Venda: Gera sinais de compra (verde) e venda (vermelho) quando as condições de Smart Money Concept são atendidas.
Agora o código deve funcionar corretamente no TradingView sem gerar erros.
MACD and RSI Strategy//@version=6
indicator("MACD and RSI Strategy", shorttitle="MACD_RSI", overlay=true)
// Các tham số của MACD
macdFastLength = input.int(12, title="MACD Fast Length")
macdSlowLength = input.int(26, title="MACD Slow Length")
macdSignalSmoothing = input.int(9, title="MACD Signal Length")
// Các tham số của RSI
rsiLength = input.int(14, title="RSI Length")
rsiOverbought = input.int(70, title="RSI Overbought Level")
rsiOversold = input.int(30, title="RSI Oversold Level")
// Tính toán MACD
= ta.macd(close, macdFastLength, macdSlowLength, macdSignalSmoothing)
macdHist = macdLine - signalLine
// Tính toán RSI
rsiValue = ta.rsi(close, rsiLength)
// Điều kiện mua
longCondition = ta.crossover(macdLine, signalLine) and rsiValue < rsiOversold
// Điều kiện bán
shortCondition = ta.crossunder(macdLine, signalLine) and rsiValue > rsiOverbought
// Tín hiệu mua/bán
plotshape(series=longCondition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=shortCondition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Vẽ các đường MACD và RSI
plot(macdLine, color=color.blue, title="MACD Line")
plot(signalLine, color=color.orange, title="Signal Line")
hline(0, "Zero Line", color=color.gray)
plot(rsiValue, color=color.purple, title="RSI", style=plot.style_line)
hline(rsiOverbought, "RSI Overbought", color=color.red, linestyle=hline.style_dotted)
hline(rsiOversold, "RSI Oversold", color=color.green, linestyle=hline.style_dotted)
Cloud of powerPresentation of the "Cloud of Power" Indicator and Strategy for Trading the S&P 500
1. Introduction to the "Cloud of Power" Indicator
The Cloud of Power indicator is designed to help identify areas of support and resistance based on price volume and volatility. It creates a visual cloud that serves as a guide to track market movements and pinpoint areas where price reactions are likely. This tool is particularly effective when combined with an Exponential Moving Average (EMA), adjusted based on the timeframe being analyzed. For example, on a 4-hour chart, a 180 EMA is recommended, but it should be adjusted for other timeframes.
Cloud of Power:
This cloud highlights support and resistance areas based on market dynamics. It helps to predict potential reversals or trend continuations.
Adjusted EMA: The exponential moving average helps confirm the main trend. If the price moves above the EMA, we consider it an uptrend, and if below, a downtrend.
2. Trading Strategy Using the "Cloud of Power" and EMA
This strategy relies on the breakout of the Cloud of Power levels to identify entry and exit opportunities. It helps to anticipate potential support and resistance zones, and adjust stop-loss and gain securing levels accordingly.
Strategy Steps:
Defining the Trend:
If the price moves above the EMA, the trend is bullish. If the price is below the EMA, the trend is bearish.
The Cloud of Power is a visual guide to evaluate support (the cloud's lower boundary) and resistance (the cloud's upper boundary) zones in both scenarios.
Entry Points:
Buy signal: Enter a long (buy) position when the price breaks above the cloud's upper boundary in a bullish trend.
Sell signal: Enter a short (sell) position when the price breaks below the cloud's lower boundary in a bearish trend.
Stop-Loss Placement:
For a buy trade, place the stop-loss just below the cloud's lower boundary, which represents a support level. A break below this level may indicate a weakening bullish trend.
For a sell trade, place the stop-loss just above the cloud's upper boundary, representing resistance. A break above this level may signal the end of the bearish trend.
Take Profit and Position Management:
Profit-taking in this strategy is dynamic. The position is held as long as the price stays in line with the trend defined by the EMA and the cloud.
If the price breaks below the cloud's lower boundary in a bullish trend, we can predict that the most recent high will act as a resistance. It's advisable to monitor this zone for further breakout opportunities to add positions or use these levels to secure future gains.
By gradually adjusting the stop-loss closer to resistance or support zones identified by the cloud, you can protect your profits and secure your position. This approach allows maximizing gains by staying in the trend while limiting the risk of a sudden reversal.
Example of Application (S&P 500 Chart):
In an uptrend, if the price breaks above the cloud's upper boundary with volume confirmation, it signals a buy. The stop-loss should be placed just below the cloud's lower boundary to secure the position.
As long as the price remains above the EMA and the cloud remains bullish, the position is held. If the price breaks below the cloud's lower boundary, the most recent high will likely act as resistance. This zone should be closely monitored for future movements to adjust the stop-loss or take partial profits.
In a downtrend, the opposite logic applies. The price must break below the cloud's lower boundary for a sell, with the stop-loss placed above the upper boundary.
In summary, the Cloud of Power is an excellent visual tool to evaluate support and resistance areas and refine your entry and exit points. By following the trend with the EMA and adjusting your stop-loss according to the levels defined by the cloud, you can maximize profits while minimizing risks.
ChoCh & BOS on XAU/USDsmc ICT MMXT
Explicação do código:
Definição de setores: Aqui, estamos dividindo o gráfico em três setores com base no preço de fechamento, low e high de velas passadas. Podemos modificar esses critérios dependendo do que exatamente o "setor" significa para sua estratégia.
Entradas: A estratégia entra no mercado quando o preço está dentro de cada um dos setores definidos. Usamos a função strategy.entry() para abrir a posição. Cada setor só tem uma entrada por vez.
Saídas (opcional): O código também tem algumas condições de fechamento para ilustrar como você pode encerrar uma posição, como quando o preço atinge certos níveis ou quando ele sai de um setor.
Gerenciamento de Risco:
Stop Loss e Take Profit: Você pode adicionar stop loss ou take profit no código, se necessário. Isso é importante para gerenciar riscos e garantir que a estratégia seja eficiente.
Demand/Supply Absorption PatternHey everyone,
I'm publishing this indicator to seek feedback and support from the community.
This indicator is designed to identify, confirm, and send alerts whenever a Demand/Supply absorption pattern appears on the chart.
Core Logic:
Impulse Move – A single candle or a cluster of candles with a strong bullish/bearish move, characterized by a price range and volume significantly exceeding the ATR and average volume. (I've already implemented this logic and highlighted these zones with rectangles.)
Absorption Phase – Following this move, signs of exhaustion in the previous Demand/Supply emerge. These signs can include small-bodied candles like Doji or Inside Bars, combined with low volume, indicating a potential absorption phase.
Breakout Confirmation – Finally, a breakout candle in the opposite direction confirms the reversal after the consolidation phase.
Challenges & Community Support
I've encountered difficulties in fully implementing steps 2 and 3. While detecting strong impulsive moves and sending alerts has already been helpful in tracking potential setups, completing the full pattern requires waiting 3-4 hours (on a 1-hour chart) or even until the next day (on a 4-hour chart). This delay makes it easy to miss potential price movements in real time.
I’d love to get feedback or suggestions from the community to improve this indicator further.
Thanks for your support!
Cheers! 🚀