Candlestick analysis
BTC/ETH Candle ComparisonЭто скрпит сравнивает одни и те же свечи по биткоину и эфиру и помечает те свечи, которе отличаются по направленности (например, на биткоине свеча зеленая, а на эфире она красная или наоборот).
Такое расхождение может говорить о скором развороте
5min Chicago Session OR Breakouts (Up to 1000%)This indicator calculates the 5 minute opening range of the Chicago session and calculates and plots OR breakouts up to 1000% to the upside and downside.
Moving Average Exponential//@version=5
indicator("Liquidity-Based Buy/Sell Al", overlay=true)
// Inputs
emaShort = input(50, title="Short EMA Length")
emaLong = input(200, title="Long EMA Length")
rsiLength = input(14, title="RSI Length")
riskRewardRatio = input(2.0, title="Risk-Reward Ratio")
// Trend Filter
ema50 = ta.ema(close, emaShort)
ema200 = ta.ema(close, emaLong)
trendBullish = ema50 > ema200
trendBearish = ema50 < ema200
// RSI Filter
rsi = ta.rsi(close, rsiLength)
rsiBullish = rsi > 50
rsiBearish = rsi < 50
// Liquidity Zones (Recent Highs/Lows)
liquidityHigh = ta.highest(high, 20)
liquidityLow = ta.lowest(low, 20)
// Support and Resistance (Dynamic)
support = ta.lowest(low, 20)
resistance = ta.highest(high, 20)
// Buy Signal
buySignal = trendBullish and rsiBullish and close > support and low <= liquidityLow
// Sell Signal
sellSignal = trendBearish and rsiBearish and close < resistance and high >= liquidityHigh
// Plot Signals
plotshape(series=buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Risk-Reward Levels
if buySignal
stopLoss = liquidityLow
takeProfit = close + (close - stopLoss) * riskRewardRatio
line.new(x1=bar_index, y1=stopLoss, x2=bar_index, y2=takeProfit, color=color.green, width=2)
if sellSignal
stopLoss = liquidityHigh
takeProfit = close - (stopLoss - close) * riskRewardRatio
line.new(x1=bar_index, y1=stopLoss, x2=bar_index, y2=takeProfit, color=color.red, width=2)
Eran Krief Custom WatermarkThis indicator provides key stock-related data for Affirm Holdings, Inc. (AFRM). Here’s a breakdown of its elements:
1. **Earnings Countdown**: Displays the number of days remaining until the next earnings report (65 days in this case).
2. **Market Cap**: Shows the company's market capitalization (17.85 billion USD).
3. **Ticker and Industry**: Indicates the stock ticker (AFRM) and its industry classification (Finance, Finance/Rental/Leasing).
4. **ATR (Average True Range)**: Measures the stock’s volatility, showing an ATR value of 1.52, which is 2.36% of the stock price.
5. **12-Month Return**: Displays the stock’s percentage return over the past 12 months (-3.68%).
6. **Moving Average Distance (MA Dist.)**: Indicates how far the stock is from a specific moving average. Here, the stock is 4.94% below the moving average, represented in red.
This indicator helps traders assess a stock’s volatility, performance, and distance from key technical levels.
Forex Power Indicator [FindBetterTrades]The Forex Power Indicator is designed to help traders quickly assess the relative strength and weakness of key forex pairs over a set period.
This tool calculates the percentage change in price over the last 5 days and highlights the strongest and weakest performing pairs in a simple table format.
Features:
Scans 10 major forex pairs (EURUSD, GBPUSD, USDJPY, AUDUSD, NZDUSD, USDCAD, CHFJPY, EURGBP, EURJPY, GBPJPY).
Calculates the percentage change over the last 5 days.
Identifies and labels the strongest and weakest pair based on performance.
Displays results in a customizable table, allowing traders to quickly interpret market trends.
How to Use:
The strongest pair (🟢) indicates the currency with the highest performance in the selected period.
The weakest pair (🔴) shows the currency that has lost the most value.
Alerts feature:
Once you add the script to your chart, go to "Create Alert"
Under "Condition", select "Forex Power Indicator ".
The system will use the messages set in the alert() function.
When triggered, the alert will display the message like:
"New strongest currency pair: USDJPY"
"New weakest currency pair: AUDUSD"
Use this information to spot momentum opportunities, potential reversals, or trend continuations in forex trading.
This indicator is for informational purposes only and should be used alongside other technical analysis tools to support trading decisions.
Xtudo CCAIndicador com 5 ma, 5 ema, banda de Bollinger, nuvens Ichimoku, SuperTrend, vwma, ADX, MFI, RSI, MACD
AF SM traderWatching several videos on Instagram and TikTok, I found that new traders are very ingenious in their approaches to the market, coming up with ways to trade quickly. So, I created an indicator based on their simplistic theory, where bar analysis leads to a quick profit when a bar opens above the previous one. Additionally, I included the average bar size to get an idea of the potential profit. To complement everything, I added the VWAP and a progression of volume and price, which, when crossing, seems to be very efficient in predicting upward movements.
NOTE: Remember that in bullish scenarios, all traders and their strategies are successful, but in bearish scenarios, those strategies stop working. So before using any indicator, you should first understand the condition of the stock you are buying.
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
ICT PO3 Indicator This indicator hels to understand the Po3 Strategy. Never rely on it 100%. It is just an indicator.
WT Strategy Level 2version 1.0
进场(开仓)
金叉 + 超卖区 → 进 多单
死叉 + 超买区 → 进 空单
持仓时的止盈止损
止盈
50% 仓位 → 固定 ATR 目标止盈。
50% 仓位 → 移动止盈(跟随趋势)。
止损
移动止损(Trailing SL) → 随着价格上升调整止损位置,防止盈利回撤。
反向信号出现时
不会直接反转做空/做多。
先平掉当前仓位,然后 等待下一个交易信号确认才进场。
Price Levels with LabelsThis indicator shows the following price levels (for now):
- Monthly open
- Previous week open, high and low
- Previous, previous week open, high and low (so two weeks ago)
- Monday open, high and low
SMA 50 (adjustable)
EMA 200 (adjustable)
This script will be updated in the future.
AE64 ProfitОписание индикатора "Ae64 Profit" 🚀
Этот индикатор создан для прогнозирования цен на основе линейной регрессии, объема, машинного обучения и анализа волатильности. Он идеально подходит для трейдеров, которые ищут точки входа и выхода с высокой вероятностью успеха.
🔹 Функции:
✅ Прогнозирование цены на основе исторических данных
✅ Динамический риск-менеджмент через Greed & Safe Greed Mode
✅ Сигналы Buy/Sell с учетом RSI и силы движения
✅ Расчет TP и SL уровней для защиты капитала
✅ Гибкая настройка агрессивности торговли
📈 Кому полезен?
Этот индикатор подходит интрадей и среднесрочным трейдерам, работающим с волатильными активами.
Fixed Range Based on Inside Closewhich this indicator we will easily able to identify the trend and ranges in market
TD DiamondsTD Diamonds – Multi-Asset Indicator
The TD Diamonds indicator is designed to identify significant swing highs and swing lows across multiple correlated assets. By analyzing price action relationships between key market indices (e.g., S&P 500, Nasdaq, Dow Jones) and cryptocurrencies (Bitcoin, Ethereum, Market Cap Index), it provides traders with a visual confirmation of potential trend reversals.
Key Features:
✅ Multi-Asset Confirmation: The indicator cross-references multiple assets to confirm whether a swing point is valid.
✅ Swing High & Low Detection: Identifies key pivot points that may act as resistance or support.
✅ Adaptive Logic: Works dynamically with different asset classes, including stock indices, forex, and crypto.
✅ Clear Visual Markers: Uses diamond-shaped labels to indicate potential reversal zones.
✅ Custom Market Pairing: Automatically selects related market pairs to compare price movements.
How to Use:
🔹 When a red diamond appears, it may signal a swing high, potentially indicating a resistance level.
🔹 When a blue diamond appears, it may signal a swing low, potentially indicating a support level.
🔹 Works best in trending markets where price action confirms reversals.
🔹 Can be used in conjunction with other technical indicators (e.g., moving averages, RSI, volume analysis) for confirmation.
Supported Assets:
📌 Indices: S&P 500 (ES), Nasdaq (NQ), Dow Jones (YM)
📌 Forex & Commodities: DXY, EUR/USD, GBP/USD
📌 Crypto: Bitcoin (BTC), Ethereum (ETH), Market Cap Index (TOTAL)
SK-BREAKOUTSK-BREAKOUT is a breakout trading strategy identifies potential trade entries by tracking the highest high and lowest low over a user-defined period (period).
HTF Candle Volume Thermometer [ChartPrime]The HTF Candle Volume Thermometer is a powerful volume heatmap tool that visualizes higher timeframe candle volume distributions directly on the chart. It helps traders identify key price levels where liquidity is concentrated, allowing for more informed trading decisions.
⯁ KEY FEATURES
Higher Timeframe Volume Mapping
Uses higher timeframe (HTF) candles to create a heatmap of volume distribution within each candle.
Dynamic Volume Heatmap
Colors each HTF candle background green for bullish and red for bearish, with a gradient heat overlay highlighting volume concentration.
Max Volume Point Identification
Marks the level within each HTF candle where the highest volume was recorded, using red for the most significant volume area.
Fully Customizable Display
Users can adjust the HTF timeframe, color settings, and resolution to tailor the indicator to their trading preferences.
Segmented Volume Distribution
Each HTF candle is divided into smaller levels, allowing traders to see volume changes within the range of each candle.
Key Level Detection
Max volume points often act as key support and resistance levels where price is likely to react, helping traders refine their strategies.
⯁ HOW TO USE
Identify Liquidity Zones
Use the max volume levels to determine areas where price is likely to find support or resistance.
Assess Trend Strength
Compare volume distribution between bullish and bearish HTF candles to gauge market momentum.
Optimize Trade Entries & Exits
Look for price reactions at high-volume areas to refine stop-loss and take-profit levels.
Adjust Heatmap Resolution
Customize the resolution setting to get a more detailed or broader view of volume segmentation within HTF candles.
⯁ CONCLUSION
The HTF Candle Volume Thermometer is a must-have tool for traders who want to integrate volume analysis with higher timeframe structures. By visualizing volume heatmaps within each HTF candle, this indicator helps traders pinpoint critical liquidity zones and key price levels.
Послідовність + RSI2 сигнали:
1. Послідовні три свічки одного кольору + вихід RSI за певні межі.
2. Вихід RSI за певні межі (75 та 25)
Fortune Signal & Hilega Milega + CPR & VWAPFortune Signal & Hilega Milega + CPR & VWAP Indicator 🚀
Overview
This all-in-one indicator combines multiple powerful trading tools to help traders make informed decisions. It includes CPR levels, VWAP, Supertrend, Fortune Signal, Hilega Milega, and EMA-based signals, making it ideal for intraday and swing trading.
Features
✅ CPR (Central Pivot Range): Identifies key support & resistance zones.
✅ VWAP (Volume Weighted Average Price): Helps track the average price weighted by volume.
✅ Supertrend Indicator: Identifies trend direction and changes, with candles turning green for buy and red for sell.
✅ Fortune Signal: Uses 9 EMA & 21 EMA crossovers with RSI confirmation to generate buy/sell signals.
✅ Hilega Milega: Combines Supertrend & MACD crossovers to highlight possible trend reversals.
✅ EMA (20, 50, 200): Tracks trend strength and support/resistance levels.
✅ Buy/Sell Signals: Generated using multiple confirmations like EMA crossovers and VWAP crossovers.
How to Use
📌 Buy Signal: Green arrow appears below the candle when conditions are met.
📌 Sell Signal: Red arrow appears above the candle when conditions are met.
📌 Supertrend Confirmation: Green background for uptrend, red background for downtrend.
Best For
🔹 Intraday Traders
🔹 Swing Traders
🔹 Price Action & Trend Followers
💡 Tip: Use this indicator along with volume and price action for better accuracy! 🚀
TrendPredator FOTrendPredator Fakeout Highlighter (FO)
The TrendPredator Fakeout Highlighter is designed to enhance multi-timeframe trend analysis by identifying key market behaviors that indicate trend strength, weakness, and potential reversals. Inspired by Stacey Burke’s trading approach, this tool focuses on trend-following, momentum shifts, and trader traps, helping traders capitalize on high-probability setups.
At its core, this indicator highlights peak formations—anchor points where price often locks in trapped traders before making decisive moves. These principles align with George Douglas Taylor’s 3-day cycle and Steve Mauro’s BTMM method, making the FO Highlighter a powerful tool for reading market structure. As markets are fractal, this analysis works on any timeframe.
How It Works
The TrendPredator FO highlights key price action signals by coloring candles based on their bias state on the current timeframe.
It tracks four major elements:
Breakout/Breakdown Bars – Did the candle close in a breakout or breakdown relative to the last candle?
Fakeout Bars (Trend Close) – Did the candle break a prior high/low and close back inside, but still in line with the trend?
Fakeout Bars (Counter-Trend Close) – Did the candle break a prior high/low, close back inside, and against the trend?
Switch Bars – Did the candle lose/ reclaim the breakout/down level of the last bar that closed in breakout/down, signalling a possible trend shift?
Reading the Trend with TrendPredator FO
The annotations in this example are added manually for illustration.
- Breakouts → Strong Trend
Multiple candles closing in breakout signal a healthy and strong trend.
- Fakeouts (Trend Close) → First Signs of Weakness
Candles that break out but close back inside suggest a potential slowdown—especially near key levels.
- Fakeouts (Counter-Trend Close) → Stronger Reversal Signal
Closing against the trend strengthens the reversal signal.
- Switch Bars → Momentum Shift
A shift in trend is confirmed when price crosses back through the last closed breakout candles breakout level, trapping traders and fuelling a move in the opposite direction.
- Breakdowns → Trend Reversal Confirmed
Once price breaks away from the peak formation, closing in breakdown, the trend shift is validated.
Customization & Settings
- Toggle individual candle types on/off
- Customize colors for each signal
- Set the number of historical candles displayed
Example Use Cases
1. Weekly Template Analysis
The weekly template is a core concept in Stacey Burke’s trading style. FO highlights individual candle states. With this the state of the trend and the developing weekly template can be evaluated precisely. The analysis is done on the daily timeframe and we are looking especially for overextended situations within a week, after multiple breakouts and for peak formations signalling potential reversals. This is helpful for thesis generation before a session and also for backtesting. The annotations in this example are added manually for illustration.
📈 Example: Weekly Template Analysis snapshot on daily timeframe
2. High Timeframe 5-Star Setup Analysis (Stacey Burke "ain't coming back" ACB Template)
This analysis identifies high-probability trade opportunities when daily breakout or down closes occur near key monthly levels mid-week, signalling overextensions and potentially large parabolic moves. Key signals for this are breakout or down closes occurring on a Wednesday. This is helpful for thesis generation before a session and also for backtesting. The annotations in this example are added manually for illustration. Also an indicator can bee seen on this chart shading every Wednesday to identify the signal.
📉 Example: High Timeframe Setup snapshot
3. Low Timeframe Entry Confirmation
FO helps confirm entry signals after a setup is identified, allowing traders to time their entries and exits more precisely. For this the highlighted Switch and/ or Fakeout bars can be highly valuable.
📊 Example (M15 Entry & Exit): Entry and Exit Confirmation snapshot
📊 Example (M5 Scale-In Strategy): Scaling Entries snapshot
The annotations in this examples are added manually for illustration.
Disclaimer
This indicator is for educational purposes only and does not guarantee profits.
None of the information provided shall be considered financial advice.
Users are fully responsible for their trading decisions and outcomes.