HADC Indicator with Buy/Hold/Sell - AK//@version=5
indicator("HADC Indicator with Buy/Hold/Sell", overlay=true)
// Heikin Ashi Candle Calculation
ha_close = (open + high + low + close) / 4
var float ha_open = na
ha_open := na(ha_open ) ? (open + close) / 2 : (ha_open + ha_close ) / 2
ha_high = math.max(high, math.max(ha_close, ha_open))
ha_low = math.min(low, math.min(ha_close, ha_open))
// Trend Direction
ha_trend = ha_close > ha_open ? 1 : -1
trend_change = ha_trend != ha_trend
// Buy, Sell, and Hold Signals
buy_signal = trend_change and ha_trend == 1
sell_signal = trend_change and ha_trend == -1
hold_signal = not trend_change // HOLD when there's no trend change
// Label Positioning
label_position_buy = low - ta.atr(14) * 0.5
label_position_sell = high + ta.atr(14) * 0.5
label_position_hold = (high + low) / 2 // HOLD appears in the middle
// Plot Labels
if buy_signal
label.new(x=bar_index, y=label_position_buy, text="BUY", color=color.rgb(76, 175, 79, 100), textcolor=color.white, size=size.small, style=label.style_label_down)
if sell_signal
label.new(x=bar_index, y=label_position_sell, text="SELL", color=color.rgb(255, 82, 82, 100), textcolor=color.white, size=size.small, style=label.style_label_up)
if hold_signal
label.new(x=bar_index, y=label_position_hold, text="HOLD", color=color.rgb(6, 6, 6, 100), textcolor=color.white, size=size.small, style=label.style_label_up)
// Plot Heikin Ashi Candles
plotcandle(ha_open, ha_high, ha_low, ha_close, title="Heikin Ashi", color=ha_trend == 1 ? color.green : color.red)
Candlestick analysis
Crystal Order Block Introducing Crystal Order Block – a powerful TradingView indicator designed to identify high-probability order blocks with precision. 🚀📈
🔹 Key Features:
✅ Detects valid institutional order blocks automatically
✅ Highlights high-probability zones for entries
✅ Helps in Smart Money trading strategies (ICT, SMC, VSA)
✅ Works on all timeframes for scalping & swing trading
✅ Enhances risk management & trade accuracy
This indicator is perfect for traders who want to trade like professionals by using refined order block concepts.
💡 Test it now and take your trading to the next level!
#CrystalOrderBlock #OrderBlockIndicator #SmartMoneyConcepts #SMC #ICT #ForexTrading #TradingView #PriceAction #Liquidity #InstitutionalTrading #OrderBlocks
MainFX session indicatorINDICATOR Plot line on the open and close of all session its is only visible for 1min for Horc user << if it was useful to you >> consider praying for me to find profitability in trading BY OLAMIDE SIYANBOLA AKA MainFX
SPACEMAN BTC ALERTS (OPEN SOURCE)Gives Alerts for SpacemanBTC Key Levels:
Daily Open
Previous Day High
Previous Day Mid
Previous Day Low
Weekly Open
Previous Week High
Previous Week Mid
Previous Week Low
Monthly Open
Previous Month High
Previous Month Low
Quarterly Open
Previous Quarter Mid
Yearly Open
Market Structure IDM BY AitssamHow It Works:
Buy Signals: Triggered at Swing Lows, bullish CHoCH, bullish IDM, and bullish BOS.
Sell Signals: Triggered at Swing Highs, bearish CHoCH, bearish IDM, and bearish BOS.
Aggressive/Defensive Mode: Signals are displayed based on the selected mode (aggressive or defensive).
Price Action Trend and Margin EquityThe Price Action Trend and Margin Equity indicator is a multifunctional market analysis tool that combines elements of money management and price pattern analysis. The indicator helps traders identify key price action patterns and determine optimal entry, exit and stop loss levels based on the current trend.
The main components of the indicator:
Money Management:
Allows the trader to set risk management parameters such as the percentage of possible loss on the position, the use of fixed leverage and the total capital.
Calculates the required leverage level to achieve a specified percentage of loss.
Price Action:
Correctly identifies various price patterns such as Pin Bar, Engulfing Bar, PPR Bar and Inside Bar.
Displays these patterns on the chart with the ability to customize candle colors and display styles.
Allows the trader to customize take profit and stop loss points to display them on the chart.
The ability to display patterns only in the direction of the trend.
Trend: (some code taken from ChartPrime)
Uses a trend cloud to visualize the current market direction.
The trend cloud is displayed on the chart and helps traders determine whether the market is in an uptrend or a downtrend.
Alert:
Allows you to set an alert that will be triggered when the pattern is formed.
Example of use:
Let's say a trader uses the indicator to trade the crypto market. He sets the money management parameters, setting the maximum loss per position to 5% and using a fixed leverage of 1:100. The indicator automatically calculates the required position size to meet these parameters ($: on the label). Or displays the leverage (X: on the label) to achieve the required risk.
The trader receives an alert when a Pin Bar is formed. The indicator displays the entry, exit, and stop loss levels based on this pattern. The trader opens a position for the recommended amount in the direction indicated by the indicator and sets the stop loss and take profit at the recommended levels.
General Settings:
Position Loss Percentage: Sets the maximum loss percentage you are willing to take on a single position.
Use Fixed Leverage: Enables or disables the use of fixed leverage.
Fixed Leverage: Sets the fixed leverage level.
Total Equity: Specifies the total equity you are using for trading. (Required for calculation when using fixed leverage)
Turn Patterns On/Off: You can turn on or off the display of various price patterns such as Pin Bar, Outside Bar (Engulfing), Inside Bar, and PPR Bar.
Pattern Colors: Sets the colors for displaying each pattern on the chart.
Candle Color: Allows you to set a neutral color for candles that do not match the price action.
Show Lines: Allows you to turn on or off the display of labels and lines.
Line Length: Sets the length of the stop, entry, and take profit lines.
Label color: One color for all labels (configured below) or the color of the labels in the color of the candle pattern.
Pin entry: Select the entry point for the pin bar: candle head, bar close, or 50% of the candle.
Coefficients for stop and take lines.
Use trend for price action: When enabled, will show price action signals only in the direction of the trend.
Display trend cloud: Enables or disables the display of the trend cloud.
Cloud calculation period: Sets the period for which the maximum and minimum values for the cloud are calculated. The longer the period, the smoother the cloud will be.
Cloud colors: Sets the colors for uptrends and downtrends, as well as the transparency of the cloud.
The logic of the indicator:
Pin Bar is a candle with a long upper or lower shadow and a short body.
Logic: If the length of one shadow is twice the body and the opposite shadow of the candle, it is considered a Pin Bar.
An Inside Bar is a candle that is completely engulfed by the previous candle.
Logic: If the high and low of the current candle are inside the previous candle, it is an Inside Bar.
An Outside Bar or Engulfing is a candle that completely engulfs the previous candle.
Logic: If the high and low of the current candle are outside the previous candle and close outside the previous candle, it is an Outside Bar.
A PPR Bar is a candle that closes above or below the previous candle.
Logic: If the current candle closes above the high of the previous candle or below its low, it is a PPR Bar.
Stop Loss Levels: Calculated based on the specified ratios. If set to 1.0, it shows the correct stop for the pattern by pushing away from the entry point.
Take Profit Levels: Calculated based on the specified ratios.
Create a Label: The label is created at the stop loss level and contains information about the potential leverage and loss.
The formula for calculating the $ value is:
=(Total Capital x (Maximum Loss Percentage on Position/100)) / (Difference between Entry Level and Stop Loss Level × Ratio that sets the stop loss level relative to the length of the candlestick shadow × Fixed Leverage Value) .
Labels contain the following information:
The percentage of price change from the recommended entry point to the stop loss level.
Required Leverage (X: ): The amount of leverage required to achieve the specified loss percentage. (Or a fixed value if selected).
Required Capital ($: ): The amount of capital required to open a position with the specified leverage and loss percentage (only displayed when using fixed leverage).
The trend cloud identifies the maximum and minimum price values for the specified period.
The cloud value is set depending on whether the current price is equal to the high or low values.
If the current closing price is equal to the high value, the cloud is set at the low value, and vice versa.
RU
Индикатор "Price Action Trend and Margin Equity" представляет собой многофункциональный инструмент для анализа рынка, объединяющий в себе элементы управления капиталом и анализа ценовых паттернов. Индикатор помогает трейдерам идентифицировать ключевые прайс экшн паттерны и определять оптимальные уровни входа, выхода и стоп-лосс на основе текущего тренда.
Основные компоненты индикатора:
Управление капиталом:
Позволяет трейдеру задавать параметры управления рисками, такие как процент возможного убытка по позиции, использование фиксированного плеча и общий капитал.
Рассчитывает необходимый уровень плеча для достижения заданного процента убытка.
Price Action:
Правильно идентифицирует различные ценовые паттерны, такие как Pin Bar, Поглащение Бар, PPR Bar и Внутренний Бар.
Отображает эти паттерны на графике с возможностью настройки цветов свечей и стилей отображения.
Позволяет трейдеру настраивать точки тейк профита и стоп лосса для отображения их на графике.
Возможность отображения паттернов только в натправлении тренда.
Trend: (часть кода взята у ChartPrime)
Использует облако тренда для визуализации текущего направления рынка.
Облако тренда отображается на графике и помогает трейдерам определить, находится ли рынок в восходящем или нисходящем тренде.
Оповещение:
Дает возможность установить оповещение которое будет срабатывать при формировании паттерна.
Пример применения:
Предположим, трейдер использует индикатор для торговли на крипто рынке. Он настраивает параметры управления капиталом, устанавливая максимальный убыток по позиции в 5% и используя фиксированное плечо 1:100. Индикатор автоматически рассчитывает необходимый объем позиции для соблюдения этих параметров ($: на лейбле). Или отображает плечо (Х: на лейбле) для достижения необходимого риска.
Трейдер получает оповещение о формировании Pin Bar. Индикатор отображает уровни входа, выхода и стоп-лосс, основанные на этом паттерне. Трейдер открывает позицию на рекомендуемую сумму в направлении, указанном индикатором, и устанавливает стоп-лосс и тейк-профит на рекомендованных уровнях.
Общие настройки:
Процент убытка по позиции: Устанавливает максимальный процент убытка, который вы готовы понести по одной позиции.
Использовать фиксированное плечо: Включает или отключает использование фиксированного плеча.
Уровень фиксированного плеча: Задает уровень фиксированного плеча.
Общий капитал: Указывает общий капитал, который вы используете для торговли. (Необходим для расчета при использовании фиксированного плеча)
Включение/отключение паттернов: Вы можете включить или отключить отображение различных ценовых паттернов, таких как Pin Bar, Outside Bar (Поглощение), Inside Bar и PPR Bar.
Цвета паттернов: Задает цвета для отображения каждого паттерна на графике.
Цвет свечей: Позволяет задать нейтральный цвет для свечей неподходящих под прйс экшн.
Показывать линии: Позволяет включить или отключить отображение лейблов и линий.
Длинна линий: Настройка длинны линий стопа, линии входа и тейк профита.
Цвет лейбла: Один цвет для всех лейблов (настраивается ниже) или цвет лейблов в цвет паттерна свечи.
Вход в пин: Выбор точки входа для пин бара: голова свечи, точка закрытия бара или 50% свечи.
Коэффиценты для стоп и тейк линий.
Использовать тренд для прайс экшна: При включении будет показывать прайс экшн сигналы только в направлении тренда.
Отображение облака тренда: Включает или отключает отображение облака тренда.
Период расчета облака: Устанавливает период, за который рассчитываются максимальные и минимальные значения для облака. Чем больше период, тем более сглаженным будет облако.
Цвета облака: Задает цвета для восходящего и нисходящего трендов, а также прозрачность облака.
Логика работы индикатора:
Pin Bar — это свеча с длинной верхней или нижней тенью и коротким телом.
Логика: Если длина одной тени вдвое больше тела и противоположной тени свечи, считается, что это Pin Bar.
Inside Bar — это свеча, полностью поглощенная предыдущей свечой.
Логика: Если максимум и минимум текущей свечи находятся внутри предыдущей свечи, это Inside Bar.
Outside Bar или Поглощение — это свеча, которая полностью поглощает предыдущую свечу.
Логика: Если максимум и минимум текущей свечи выходят за пределы предыдущей свечи и закрывается за пределами предыдущей свечи, это Outside Bar.
PPR Bar — это свеча, которая закрывается выше или ниже предыдущей свечи.
Логика: Если текущая свеча закрывается выше максимума предыдущей свечи или ниже ее минимума, это PPR Bar.
Уровни стоп-лосс: Рассчитываются на основе заданных коэффициентов. При значении 1.0 показывает правильный стоп для паттерна отталкиваясь от точки входа.
Уровки тейк-профита: Рассчитываются на основе заданных коэффициентов.
Создание метки: Метка создается на уровне стоп-лосс и содержит информацию о потенциальном плече и убытке.
Формула для вычисления значения $:
=(Общий капитал x (Максимальный процент убытка по позиции/100)) / (Разница между уровнем входа и уровнем стоп-лосс × Коэффициент, задающий уровень стоп-лосс относительно длины тени свечи × Значение фиксированного плеча).
Метки содержат следующую информацию:
Процент изменения цены от рекомендованной точки входа до уровня стоп-лосс.
Необходимое плечо (Х: ): Уровень плеча, необходимый для достижения заданного процента убытка. (Или фиксированное значение если оно выбрано).
Необходимый капитал ($: ): Сумма капитала, необходимая для открытия позиции с заданным плечом и процентом убытка (отображается только при использовании фиксированного плеча).
Облако тренда определяет максимальные и минимальные значения цены за указанный период.
Значение облака устанавливается в зависимости от того, совпадает ли текущая цена с максимальными или минимальными значениями.
Если текущая цена закрытия равна максимальному значению, облако устанавливается на уровне минимального значения, и наоборот.
KOBROXS_STHere you can catch dual super trend strategy for nifty only. You have fixed atr value and fixed multiplier. 5 munities time frame is fixed. Don’t change the time frame for best result. Only nifty-50 is applicable.
Advanced Gaps and Gaps Filling ProbabilityThe indicator detects gaps and calculates gaps filling probability based on MACD, RSI and momentum. It also support MTF ( Multi-Time Frame) which can be selected for probability calculation.
/ User Inputs for configuration
GAP_THRESHOLD = To Specify gaps size
SHOW_PROBABILITY_ONLY_UNFILLED =Only show probability for unfilled gaps
UNFILLED_COLOR = Unfilled Gap Color
FILLED_BULLISH_COLOR = Filled Bullish Gap Color
FILLED_BEARISH_COLOR =Filled Bearish Gap Color
LABEL_COLOR = Label Color
BOX_WIDTH = Width of box drawn to show gaps.
ICT NY Kill Zone Auto Trading### **ICT NY Kill Zone Auto Trading Strategy (5-Min Chart)**
#### **Overview:**
This strategy is based on Inner Circle Trader (ICT) concepts, focusing on the **New York Kill Zone**. It is designed for trading GBP/USD exclusively on the **5-minute chart**, automatically entering and exiting trades during the US session.
#### **Key Components:**
1. **Time Filter**
- The strategy only operates during the **New York Kill Zone (9:30 AM - 11:00 AM NY Time)**.
- It ensures execution only on the **5-minute timeframe**.
2. **Fair Value Gaps (FVGs) Detection**
- The script identifies areas where price action left an imbalance, known as Fair Value Gaps (FVGs).
- These gaps indicate potential liquidity zones where price may return before continuing in the original direction.
3. **Order Blocks (OBs) Identification**
- **Bullish Order Block:** Occurs when price forms a strong bullish pattern, suggesting further upside movement.
- **Bearish Order Block:** Identified when a strong bearish formation signals potential downside continuation.
4. **Trade Execution**
- **Long Trade:** Entered when a bullish order block forms within the NY Kill Zone and aligns with an FVG.
- **Short Trade:** Entered when a bearish order block forms within the Kill Zone and aligns with an FVG.
5. **Risk Management**
- **Stop Loss:** Fixed at **30 pips** to limit downside risk.
- **Take Profit:** Set at **60 pips**, providing a **2:1 risk-reward ratio**.
6. **Visual Aids**
- The **Kill Zone is highlighted in blue** to help traders visually confirm the active session.
**Objective:**
This script aims to **capitalize on institutional price movements** within the New York session by leveraging ICT concepts such as FVGs and Order Blocks. By automating trade entries and exits, it eliminates emotions and ensures a disciplined trading approach.
Detecting Breakout Candles Using ATR CalculationsThis script detects strong breakout candles by analyzing price movement and volume. It first calculates a moving average of volume and the Average True Range (ATR) to measure volatility. A candle is flagged as a breakout if its price movement exceeds a user-defined multiple of the ATR. The script also checks if the breakout is supported by unusually high volume. If a candle meets these conditions, it is colored lime for a bullish breakout or orange for a bearish breakout; otherwise, it remains silver. It then calculates target price levels by adding or subtracting a percentage of the candle's range and plots arrows at these levels to indicate potential breakout targets.
SMA 20, 40, 200, MmR, D2SMA 20, 40, 200, Máximo y Mínimo Relevante, Resultado Relativo y Absoluto, Unificacion de los tres codigos en uno solo
Supertrend + Bollinger Bands + CPR//@version=5
indicator(title="Supertrend + Bollinger Bands + CPR", shorttitle="ST+BB+CPR", overlay=true)
// === INPUT PARAMETERS ===
// Supertrend Inputs
st_period = input.int(10, title="ATR Period")
st_multiplier = input.float(3.0, title="ATR Multiplier", step=0.1)
st_show_signals = input.bool(true, title="Show Buy/Sell Signals?")
// Bollinger Bands Inputs
bb_length = input.int(20, title="BB Length", minval=1)
bb_mult = input.float(2.0, title="BB StdDev", minval=0.001, maxval=50)
// CPR Inputs
cpr_timeframe = input.string("D", title="CPR Resolution", options= )
// === SUPER TREND SINGLE LINE CALCULATION ===
atr = ta.atr(st_period)
src = hl2
up = src - (st_multiplier * atr)
dn = src + (st_multiplier * atr)
// **✅ Fix for NA Type Error**
var int trend = 1 // Declared with type `int`
trend := nz(trend , 1)
trend := trend == -1 and close > dn ? 1 : trend == 1 and close < up ? -1 : trend
supertrend = trend == 1 ? up : dn
// **✅ Supertrend Single Line**
st_plot = plot(supertrend, title="Supertrend", color=trend == 1 ? color.green : color.red, linewidth=2)
// **✅ Buy & Sell Signals**
buySignal = trend == 1 and trend == -1
sellSignal = trend == -1 and trend == 1
plotshape(buySignal and st_show_signals ? supertrend : na, title="Buy", text="Buy", location=location.absolute, style=shape.labelup, size=size.tiny, color=color.green, textcolor=color.white)
plotshape(sellSignal and st_show_signals ? supertrend : na, title="Sell", text="Sell", location=location.absolute, style=shape.labeldown, size=size.tiny, color=color.red, textcolor=color.white)
// Alerts
alertcondition(buySignal, title="SuperTrend Buy", message="SuperTrend Buy!")
alertcondition(sellSignal, title="SuperTrend Sell", message="SuperTrend Sell!")
// === BOLLINGER BANDS CALCULATION ===
basis = ta.sma(close, bb_length)
dev = bb_mult * ta.stdev(close, bb_length)
upper = basis + dev
lower = basis - dev
// **✅ Bollinger Bands**
plot(basis, "BB Basis", color=color.blue)
p1 = plot(upper, "BB Upper", color=color.red)
p2 = plot(lower, "BB Lower", color=color.green)
fill(p1, p2, title="BB Background", color=color.new(color.blue, 95))
// === CPR WIDTH CALCULATION ===
// Fetch previous day's OHLC using request.security()
dpopen = request.security(syminfo.tickerid, cpr_timeframe, open )
dphigh = request.security(syminfo.tickerid, cpr_timeframe, high )
dplow = request.security(syminfo.tickerid, cpr_timeframe, low )
dpclose = request.security(syminfo.tickerid, cpr_timeframe, close )
// Calculate CPR Levels
pivot = (dphigh + dplow + dpclose) / 3.0
bc = (dphigh + dplow) / 2.0
tc = pivot - bc + pivot
cpr_width = (math.abs(tc - bc) / pivot) * 100
// **✅ CPR Width Histogram**
plot(cpr_width, title="CPR Width", style=plot.style_columns, color=color.new(cpr_width < 0.50 ? color.green : color.red, 0))
// **✅ CPR Narrow Lines**
plot(pivot, title="CPR Pivot", color=color.orange, linewidth=2)
plot(bc, title="CPR Bottom", color=color.blue, linewidth=2)
plot(tc, title="CPR Top", color=color.blue, linewidth=2)
Pivot Point Calculator PPC by [KhedrFx]
📈 Elevate Your Trading Experience
The Pivot Point Calculator (PPC) by KhedrFx is a handy tool designed for traders who want to pinpoint key price levels with ease. This TradingView script automatically calculates pivot points along with three support and resistance levels, helping you spot potential reversal zones. With this tool, you can make more informed trading decisions.
Whether you're trading on shorter timeframes or looking at long-term trends, incorporating pivot points into your strategy can enhance your planning and manage your risks effectively.
🔹 Key Features
📊 Multi-Timeframe Support
Choose from various timeframes like 15m, 30m, 1H, 4H, or Daily to calculate pivot points based on the last candle’s price action. This flexibility lets you adapt your analysis to suit changing market conditions.
⚡ Automated & Real-Time Calculations
The script automatically computes pivot points and support/resistance levels using the previous candle’s open, high, low, and close prices—no manual input required!
🎯 Clear Chart Visualization
Pivot points and support/resistance levels are shown as horizontal lines, making it easy to follow price movements. This helps you quickly spot potential entry and exit points.
🎨 Easy-to-Read Color Coding
Pivot Points: 🔵 Blue
Support Levels: 🔴 Red
Resistance Levels: 🟢 Green
This color scheme ensures you can easily identify key levels at a glance.
📌 How to Use
Apply the script to your TradingView chart.
Choose your desired timeframe for analysis.
Use the displayed support and resistance levels to fine-tune your trade entries, exits, and stop-loss placements.
⚠️ Important Disclaimer
This script is for educational purposes only. Always do your own market analysis and assess risks before making trades.
🚀 Enhance your trading strategy with the Pivot Point Calculator (PPC) by KhedrFx—your key to precise market insights!
Pivot Point Calculator PPC by [KhedrFx]📈 Trade Smarter with Key Price Levels
The Pivot Point Calculator (PPC) by KhedrFx is designed to make your trading decisions easier and more precise. By automatically calculating pivot points , along with three support and resistance levels , this script helps you spot potential reversal zones—allowing you to plan your trades with confidence.
Whether you're a day trader or a swing trader, knowing these key levels can give you a real edge in the market.
🔹 What Makes This Script Useful?
📊 Works on Multiple Timeframes
You can choose from 15m, 30m, 1H, 4H, or Daily timeframes to calculate pivot points based on the previous candle. This flexibility helps you adapt to different trading styles.
⚡ Automatically Updates in Real-Time
No need for manual calculations—this script does the work for you! It pulls the open, high, low, and close prices from the last candle and updates the pivot points dynamically.
🎯 Easy-to-Read Chart Markings
Support and resistance levels are drawn as horizontal rays, making them easy to track as price moves.
Helps you quickly identify potential entry and exit points.
🎨 Clear and Intuitive Color Coding
Pivot Points : 🔵 Blue
Support Levels : 🔴 Red
Resistance Levels : 🟢 Green
This makes it easy to differentiate between key levels at a glance.
📌 How to Use It?
1️⃣ Add the script to your TradingView chart.
2️⃣ Select a timeframe that fits your trading strategy.
3️⃣ Use the pivot points and support/resistance levels to plan your trades—whether you're looking for breakouts, reversals, or key price reactions.
⚠️ A Quick Heads-Up
This script is meant to be a tool to assist your trading —not a guaranteed strategy. Always do your own research, manage your risk, and trade responsibly.
💡 Want to trade with more confidence? The Pivot Point Calculator (PPC) by KhedrFx is here to help you stay ahead of the markets! 🚀
Rei do OrderBlock - O Segredo Rei do OrderBlock - O Segredo é um indicador avançado para Price Action, ajudando a identificar pontos de liquidez e manipulação do mercado, com a visualização das principais sessões do mercado e a exibição do candle diário e semanal na lateral direita do gráfico.
🚀 Principais Funcionalidades:
✅ Exibição do Candle Diário e Semanal
Plota o candle diário e semanal na lateral direita do gráfico.
Ajuda a identificar pontos de liquidez e manipulação de mercado.
Indispensável para a estratégia Power of Three (Acumulação, Manipulação e Expansão).
✅ Marcação de Sessões Importantes
Destaque visual das sessões mais relevantes.
Identificação de momentos de alta volatilidade e liquidez.
✅ Linhas de Referência para Níveis-Chave
Exibição das máximas, mínimas e aberturas dos candles diário e semanal.
Ajuda a enxergar níveis institucionais e áreas de interesse do Smart Money.
Ultra Bullish/Bearish EMA 200 and 50made for smaller time frames and just for the 200 and the 50 ema, same concept but instead it is working on a smaller time frame
HA Trend Panel - ModernEnglish Explanation:
This indicator creates a modern panel displaying Heikin-Ashi trend conditions across different timeframes. The user can customize the colors for bullish and bearish trends. The script retrieves Heikin-Ashi close and open prices for each timeframe to determine the trend direction, then visualizes it in a table along with arrow indicators (▲ / ▼). This panel helps traders quickly analyze price movements and facilitates decision-making.
Türkçe Açıklama:
Bu gösterge, farklı zaman dilimlerinde Heikin-Ashi trend durumlarını gösteren modern bir panel oluşturur. Kullanıcı, yükseliş ve düşüş renklerini özelleştirebilir. Gösterge, her zaman dilimi için Heikin-Ashi kapanış ve açılış fiyatlarını alarak trend yönünü belirler ve bir tablo içerisinde ok işaretleriyle (▲ / ▼) birlikte görselleştirir. Tablo, fiyat hareketlerini daha hızlı analiz etmeye yardımcı olur ve karar alma sürecini kolaylaştırır.
Crystal Cloud EMACrystal Cloud EMA Indicator 🚀
The Crystal Cloud EMA Indicator is a hybrid tool combining Ichimoku Cloud and EMA 50 & EMA 200 to help traders identify trends, support/resistance levels, and momentum shifts.
Features:
✅ Ichimoku Cloud – Dynamic support & resistance zones
✅ EMA 50 & EMA 200 – Trend confirmation and crossover signals
✅ Bullish/Bearish Cloud Zones – Clear visual trend identification
✅ Suitable for Forex, Crypto, and Stocks
How to Use:
🔹 Buy Signal: Price above the cloud & EMA 50 crosses EMA 200 upward 📈
🔹 Sell Signal: Price below the cloud & EMA 50 crosses EMA 200 downward 📉
🔹 Cloud Breakout: Momentum shift when price breaks through the cloud
Wyckoff Price-Volume Anomaly Detector📌 Wyckoff Price-Volume Anomaly Detector
🔍 Overview:
The Wyckoff Price-Volume Anomaly Detector is a powerful tool that identifies abnormal price-volume relationships based on Wyckoff Volume Theory. It highlights key market behaviors such as absorption, effortless moves, breakouts, and low-interest zones, helping traders anticipate institutional activity and market turning points.
📊 Key Features:
✅ Detects four major price-volume abnormalities:
🔴 Absorption (High Volume, Small Price Move) → Indicates strong hands absorbing supply/demand, signaling potential reversals.
🟢 Effortless Move (Low Volume, Large Price Move) → Price moves easily due to weak resistance or lack of opposing orders.
🟡 Breakout (High Volume, Large Price Move) → Confirms strong momentum when price breaks a key level with volume.
🔵 No Interest (Low Volume, Small Price Move) → Indicates a lack of participation, often seen in sideways markets.
✅ Automatic breakout filtering
Differentiates bullish vs. bearish breakouts based on support/resistance levels.
Uses customizable lookback periods to detect meaningful structural breakouts.
✅ Customizable settings
Toggle signals ON/OFF to reduce chart clutter.
Adjustable volume & range sensitivity thresholds to fine-tune detection.
✅ Clear chart labels for quick decision-making.
⚙️ How It Works:
Calculates average volume and price range over a user-defined period.
Compares the current bar's volume and range against these averages.
Identifies key market behaviors and plots labels accordingly.
Filters breakouts to ensure price exceeds significant support/resistance levels before confirming.
📌 Best Used For:
Spotting institutional accumulation & distribution zones.
Filtering real vs. fake breakouts based on price structure.
Confirming trend strength or potential reversals.
Identifying periods of low liquidity & consolidation.
📈 Use this script to enhance your Wyckoff-based trading strategy and gain a deeper understanding of market dynamics!
🚀 Customization Tips:
Increase volMultiplier to filter out weak volume signals.
Lower rangeMultiplier to detect smaller price movements.
Increase lookbackSR for stronger support/resistance breakout detection.
⚠️ Disclaimer:
This script is for educational and informational purposes only. It does not constitute financial advice or a recommendation to buy or sell any security, cryptocurrency, or asset. Trading involves risk, and past performance is not indicative of future results. Always conduct your own research and consult with a professional before making any financial decisions. The author is not responsible for any trading losses incurred using this indicator.
Buy/Sell Signal IndicatorHi Traders
Unlock the power of candlestick patterns with Buy/Sell Signal Indicator , a cutting-edge trading tool designed to help you spot high-probability buy and sell signals with ease. This indicator analyzes candlestick patterns in real-time, providing clear and actionable signals to enhance your trading decisions. Whether you're a beginner or an experienced trader, Buy/Sell Signal Indicator simplifies the process of identifying key market reversals and trends.
Happy Trading!
Thilina
ORB 15 Min By ZeroTraderSimple and yet powerful indication for intraday Traders.
Using first minutes candle and once it get breakout we can have clear buy and sell signal to act.
Thank you for using.
Hammer & Inverted Hammer - BullishCombinación de dos indicadores Martillo alcista. Combinación de dos indicadores Martillo alcista. Combinación de dos indicadores Martillo alcista.