Reversal Indicator [SL/TP]Этот индикатор помогает находить точки разворота на графике криптовалютной пары. Он использует комбинацию фракталов, RSI, объема и скользящих средних для генерации сигналов на покупку (BUY) и продажу (SELL). Также индикатор отображает уровни Stop Loss (SL) и Take Profit (TP) на графике.
## Особенности:
- **Анти-перерисовка**: Сигналы генерируются только после закрытия свечи.
- **Многоуровневая фильтрация**: Используются RSI, объем, трендовые фильтры и ATR.
- **Визуализация**: Уровни SL и TP отображаются на графике.
- **Алерты**: Поддержка уведомлений о сигналах.
## Параметры:
- **RSI Length**: Период RSI (по умолчанию 14).
- **Volume Multiplier**: Множитель объема (по умолчанию 1.5).
- **Stop Loss (%)**: Уровень Stop Loss в процентах (по умолчанию 1%).
- **Take Profit (%)**: Уровень Take Profit в процентах (по умолчанию 2%).
## Как использовать:
1. Добавьте индикатор на график.
2. Настройте параметры под свои предпочтения.
3. Используйте сигналы в сочетании с другими инструментами анализа.
## ⚠️ ПРЕДУПРЕЖДЕНИЕ О РИСКАХ:
Торговля на финансовых рынках связана с существенным риском потери капитала. Этот индикатор предоставляет только информационные сигналы и не гарантирует прибыль. Прежде чем использовать этот инструмент, убедитесь, что вы:
- Понимаете все риски, связанные с торговлей.
- Торгуете только тем капиталом, который можете позволить себе потерять.
- Используете Stop Loss для ограничения убытков.
- Тестируете стратегию на исторических данных перед использованием на реальных деньгах.
Автор индикатора не несет ответственности за любые убытки, возникшие в результате использования этого инструмента.
Utiliti Pine
Gelişmiş Supertrend + EMA StratejiBu strateji, üç temel göstergenin kombinasyonunu kullanarak alım-satım sinyalleri üreten bir sistemdir:
Ana Göstergeler:
EMA 5 (Hızlı Hareketli Ortalama)
EMA 20 (Yavaş Hareketli Ortalama)
Supertrend (ATR tabanlı trend göstergesi)
Alış Sinyali Koşulları:
Şu iki koşul aynı anda gerçekleştiğinde alış sinyali üretilir:
EMA 5, EMA 20'yi yukarı kesiyor (emaCrossUp)
Supertrend yukarı trend gösteriyor (stUp)
Satış Sinyali Koşulları:
Şu iki koşul aynı anda gerçekleştiğinde satış sinyali üretilir:
EMA 5, EMA 20'yi aşağı kesiyor (emaCrossDown)
Supertrend aşağı trend gösteriyor (stDown)
Stratejinin Çalışma Mantığı:
Trend Teyidi: Supertrend, genel trend yönünü belirler
Momentum Teyidi: EMA kesişimleri, momentumu gösterir
Çift Onay: Her iki göstergenin de aynı yönü işaret etmesi gerekir
Görsel Göstergeler:
Yeşil "AL" etiketi: Alış noktalarını gösterir (mum altında)
Kırmızı "SAT" etiketi: Satış noktalarını gösterir (mum üstünde)
Mavi çizgi: EMA 5
Kırmızı çizgi: EMA 20
Yeşil/Kırmızı çizgi: Supertrend
Bilgi Tablosu İçeriği:
Mevcut Sinyal: Son üretilen sinyal
EMA Trend: EMA'ların gösterdiği trend
Supertrend: Supertrend'in gösterdiği yön
Son İşlem: En son gerçekleşen alım veya satım
Stratejinin Avantajları:
Trend takibi sağlar
Yanlış sinyalleri azaltır
Görsel olarak anlaşılması kolaydır
Çift onay sistemi ile güvenilirlik artar
Kullanım Önerileri:
Günlük veya 4 saatlik grafiklerde daha etkilidir
Güçlü trend dönemlerinde daha iyi çalışır
Yatay piyasalarda dikkatli kullanılmalıdır
Stop loss ve take profit seviyeleri eklenmelidir
Parametre Optimizasyonu:
- EMA periyotları piyasa volatilitesine göre ayarlanabilir
Supertrend parametreleri trend hassasiyetini belirler
Risk Yönetimi Önerileri:
Her işlemde sabit risk oranı kullanın
Trend yönünde işlem yapın
Piyasa volatilitesine göre stop loss belirleyin
Pozisyon büyüklüğünü risk yönetimine göre ayarlayın
11. En İyi Kullanım Senaryoları:
Trend başlangıçlarını yakalamak için
Trend dönüşlerini tespit etmek için
Momentum değişimlerini takip etmek için
Orta-uzun vadeli pozisyonlar için
Bu strateji, trend takibi ve momentum stratejilerinin bir kombinasyonudur. Özellikle trendli piyasalarda etkili olabilir, ancak her strateji gibi risk yönetimi ile birlikte kullanılmalıdır.
Recurring Dotted Vertical LinesI want recurring vertical lines on the 00:00 and 18:00 times throughout the graph
Bollinger Band Signals + RSI ConfirmationThis is an amazing script which generates perfect buy and sell signals for long trends.
Simple Base Screener with PowerTrend & AlertsTo integrate the PowerTrend indicator with your existing Simple Base Screener script, we can add the conditions from the IBD PowerTrend strategy, which relies on moving averages and price action to confirm a strong uptrend.
Here’s how to combine both the Simple Base Screener and the PowerTrend conditions:
Steps:
Add PowerTrend conditions to the script.
Combine the PowerTrend conditions with the existing Simple Base conditions.
Plot the buy signal when both conditions are met.
Updated Script:
pinescript
Copy
Edit
//@version=5
indicator("Simple Base Screener with PowerTrend & Alerts", overlay=true)
// --- Simple Base Screener Conditions ---
// Moving Averages
ema21 = ta.ema(close, 21)
sma50 = ta.sma(close, 50)
sma200 = ta.sma(close, 200)
// Tight Price Action (Low Volatility)
range10 = ta.highest(high, 10) - ta.lowest(low, 10)
tightBase = (range10 / close) < 0.07
// Volume Dry-Up
volAvg50 = ta.sma(volume, 50)
lowVolume = volume < (volAvg50 * 0.75)
// Strong Uptrend (Already in the script)
uptrend = ema21 > sma50 and sma50 > sma200
// Near 52-Week High
high52 = ta.highest(high, 252)
nearHigh = close > (0.85 * high52)
// Simple Base Confirmation
simpleBase = tightBase and lowVolume and uptrend and nearHigh
// --- PowerTrend Indicator Conditions ---
// PowerTrend Condition 1: The low is above the 21-day EMA for at least 10 days
condition1 = ta.lowest(low, 10) >= ta.lowest(ema21, 10)
// PowerTrend Condition 2: The 21-day EMA is above the 50-day SMA for at least five days
condition2 = ta.barssince(ema21 < sma50) >= 5
// PowerTrend Condition 3: The 50-day SMA is in an uptrend (one day is sufficient)
condition3 = sma50 > sma50
// PowerTrend Condition 4: The market closes up for the day
condition4 = close > close
// Combine all PowerTrend conditions
start_trend = condition1 and condition2 and condition3 and condition4
// --- Final Combined Condition ---
// Buy Signal when both Simple Base and PowerTrend conditions are met
finalCondition = simpleBase and start_trend
// --- Plotting ---
// Plot Simple Base Signal (Blue Label)
plotshape(series=simpleBase, location=location.belowbar, color=color.blue, style=shape.labelup, title="Simple Base Signal")
// Plot Buy Signal (Green Triangle) when both conditions are met
plotshape(series=finalCondition, location=location.belowbar, color=color.green, style=shape.triangleup, title="Buy Signal")
// Highlight Bars with Simple Base Condition
barcolor(simpleBase ? color.blue : na)
// Background Highlight for Simple Base Condition
bgcolor(simpleBase ? color.blue : na, transp=90)
// Alerts for Buy Signal
alertcondition(finalCondition, title="Buy Signal", message="Buy signal based on Simple Base and PowerTrend confirmation.")
Key Changes:
PowerTrend Conditions:
Condition 1: The low price must be above the 21-day EMA for at least 10 days.
Condition 2: The 21-day EMA must be above the 50-day SMA for at least 5 days.
Condition 3: The 50-day SMA must be in an uptrend (compared to the previous day).
Condition 4: The market must close higher than the previous day.
Combining Simple Base and PowerTrend:
A final buy signal is generated when both the Simple Base and PowerTrend conditions are true.
Plotting:
Blue label below bars to indicate a Simple Base.
Green triangle below bars when the buy signal (both Simple Base and PowerTrend) occurs.
Alerts:
An alert condition is added to notify when the buy signal is triggered based on both the Simple Base and PowerTrend conditions.
Summary:
This combined script will:
Identify Simple Base conditions such as low volatility, low volume, and a strong uptrend.
Confirm the PowerTrend conditions indicating a solid market trend.
Mark buy signals with a green triangle when both conditions are met, helping you spot strong breakout opportunities in uptrending stocks.
Let me know if you need further adjustments or additional features!
Simple Base ScreenerPatrick Walker (Mission Winners) looks for simple bases as part of his "clean and tight" setups, favoring shallow consolidations in strong stocks.
Key Criteria for Simple Bases:
Price is Near 50 SMA or 21 EMA → The stock should be consolidating near key moving averages.
Close > EMA(21) or Close > SMA(50)
Tight Price Action → The recent range should be narrow (small daily price bars, low volatility).
(Highest(High, 10) - Lowest(Low, 10)) / Close < 0.07 (Less than 7% range over 10 days)
Volume Dry-Up → Volume should be declining, showing sellers are exhausted.
Volume < SMA(Volume, 50) * 0.75
Above Key Moving Averages → The stock must be in an uptrend.
EMA(21) > SMA(50) and SMA(50) > SMA(200)
Near 52-Week High → Strong relative performance.
Close > 0.85 * Highest(High, 252) (Within 15% of 52-week high)
TradingView Pine Script for Simple Bases
pinescript
Copy
Edit
//@version=5
indicator("Simple Base Screener", overlay=true)
// Moving Averages
ema21 = ta.ema(close, 21)
sma50 = ta.sma(close, 50)
sma200 = ta.sma(close, 200)
// Tight Price Action (Low Volatility)
range10 = ta.highest(high, 10) - ta.lowest(low, 10)
tightBase = (range10 / close) < 0.07
// Volume Dry-Up
volAvg50 = ta.sma(volume, 50)
lowVolume = volume < (volAvg50 * 0.75)
// Strong Uptrend
uptrend = ema21 > sma50 and sma50 > sma200
// Near 52-Week High
high52 = ta.highest(high, 252)
nearHigh = close > (0.85 * high52)
// Simple Base Criteria
simpleBase = tightBase and lowVolume and uptrend and nearHigh
// Plot Buy Signal
plotshape(series=simpleBase, location=location.belowbar, color=color.blue, style=shape.labelup, title="Simple Base Signal")
// Background Highlight
bgcolor(simpleBase ? color.blue : na, transp=90)
How to Use This:
Copy & Paste the script into TradingView’s Pine Script Editor
Click Add to Chart
Filter Stocks in your watchlist when a blue label appears
This script finds low-volatility consolidations near highs—perfect for breakout setups!
Market Structure OB [KripNet]
About the Market Structure OB Indicator
The Market Structure OB indicator identifies key order blocks and market structure shifts (MSS/BOS) using pivot points, volume analysis, and price action. It highlights bullish/bearish zones, trend direction, and potential breakout/invalidation points. The indicator is designed for traders who follow institutional order flow and market structure concepts.
Unique Features
Combines pivot analysis with volume asymmetry.
Dynamic block resizing based on Bull/Bear Power (see inputs).
Visually marks BOS and MSS with colored labels (▲/▼) and trend lines.
Order Block Detection
Detects blocks using swing pivots (highs/lows) and volume validation.
Bull Power: Cumulative volume of bullish candles in consolidation.
Bear Power: Cumulative volume of bearish candles.
Usage Examples
Day Trading: Pivot Period = 5, using Shadow validation.
Swing Trading: Pivot Period = 12-20, using Close Price validation.
Strategy Tips
Enter trades near the mid-line (dashed) when RSI divergence is observed.
For invalidated blocks, watch for fakeouts and reversals.
Terminology Explanations
MSS (Market Structure Shift): Denotes significant changes in the market structure.
BOS (Break Of Structure): Indicates the breaking of the current market structure.
Breakout Validation: A method used to test and verify the validity of order block levels. This validation is applied using either the "Shadow" (candlestick shadow) or "Close Price" option.
Merge Overlapping: A feature that checks for overlapping or closely positioned order blocks and, if necessary, merges them. When set to "Yes," overlapping blocks are merged; when set to "No," each block is displayed separately.
Important Warnings
Risk Warning: This indicator does not constitute investment advice. Trading always carries risk, and past performance does not guarantee future results.
Repainting and Profit Claims: This script does not repaint and does not guarantee profits.
License: Open-source (MPL 2.0).
Algo Trading Breakout v2 by SUNNY GUHA +91 9836021040 oiesu.comuse Heikin Ashi Candle
Algo Trading Breakout v2 by SUNNY GUHA +91 9836021040 www.oiesu.com
for your custom algo development, contact us
17 Moving Average with Risk/RewardIdentify trends and generate buy and sell signals during trending markets
Use the risk/reward ratio feature to set a desired risk/reward ratio and receive alerts when the trade meets the conditions
Experiment with different parameter settings to suit individual trading styles
Power Trend with Tight Price ActionI've combined Mike Webster's Power Trend with a Tight Price Action detector. This script:
✅ Identifies Power Trends (green background when active)
✅ Marks Tight Price Action (blue bars when range is tight + volume dries up)
✅ Plots Buy Points on Breakouts (green triangles for breakouts on high volume)
Pine Script: Power Trend + Tight Price Action
pinescript
Copy
Edit
//@version=5
indicator("Power Trend with Tight Price Action", overlay=true)
// Moving Averages
ema21 = ta.ema(close, 21)
sma50 = ta.sma(close, 50)
// === Power Trend Conditions ===
// 1. Low above 21 EMA for 10 days
low_above_ema21 = ta.lowest(low, 10) >= ta.lowest(ema21, 10)
// 2. 21 EMA above 50 SMA for 5 days
ema21_above_sma50 = ta.barssince(ema21 < sma50) >= 5
// 3. 50 SMA is in an uptrend
sma50_uptrend = sma50 > sma50
// 4. Market closes higher than the previous day
close_up = close > close
// Start & End Power Trend
startPowerTrend = low_above_ema21 and ema21_above_sma50 and sma50_uptrend and close_up
endPowerTrend = close < ema21 or sma50 < sma50
// Track Power Trend Status
var bool inPowerTrend = false
if (startPowerTrend)
inPowerTrend := true
if (endPowerTrend)
inPowerTrend := false
// === Tight Price Action (Low Volatility + Volume Dry-Up) ===
range10 = ta.highest(high, 10) - ta.lowest(low, 10)
tightBase = (range10 / close) < 0.07 // Price range is less than 7% of closing price
volAvg50 = ta.sma(volume, 50)
lowVolume = volume < (volAvg50 * 0.75) // Volume is 25% below 50-day avg
tightPriceAction = inPowerTrend and tightBase and lowVolume // Tight price inside Power Trend
// === Breakout on High Volume ===
breakoutHigh = ta.highest(high, 10)
breakout = close > breakoutHigh and volume > (volAvg50 * 1.5) // Price breaks out with 50%+ volume surge
// === Plot Features ===
// Background for Power Trend
bgcolor(inPowerTrend ? color.green : na, transp=85)
// Highlight Tight Price Action
barcolor(tightPriceAction ? color.blue : na)
// Mark Breakouts
plotshape(series=breakout, location=location.belowbar, color=color.green, style=shape.triangleup, title="Buy Point on Breakout")
// Power Trend Start/End Markers
plotshape(series=startPowerTrend, location=location.belowbar, color=color.green, style=shape.labelup, title="Power Trend Start")
plotshape(series=endPowerTrend, location=location.abovebar, color=color.red, style=shape.triangledown, title="Power Trend End")
// Alerts
alertcondition(startPowerTrend, title="Power Trend Started", message="Power Trend has started!")
alertcondition(endPowerTrend, title="Power Trend Ended", message="Power Trend has ended!")
alertcondition(breakout, title="Breakout on High Volume", message="Stock has broken out on high volume!")
How This Works:
🔹 Green Background = Power Trend is active
🔹 Blue Bars = Tight Price Action inside Power Trend (low volatility + volume dry-up)
🔹 Green Triangles = Breakout on High Volume
Simple Base Screener with PowerTrend & AlertsSimple Base Screener with PowerTrend & Alerts
To integrate the PowerTrend indicator with your existing Simple Base Screener script, we can add the conditions from the IBD PowerTrend strategy, which relies on moving averages and price action to confirm a strong uptrend.
Here’s how to combine both the Simple Base Screener and the PowerTrend conditions:
Steps:
Add PowerTrend conditions to the script.
Combine the PowerTrend conditions with the existing Simple Base conditions.
Plot the buy signal when both conditions are met.
Updated Script:
pinescript
Copy
Edit
//@version=5
indicator("Simple Base Screener with PowerTrend & Alerts", overlay=true)
// --- Simple Base Screener Conditions ---
// Moving Averages
ema21 = ta.ema(close, 21)
sma50 = ta.sma(close, 50)
sma200 = ta.sma(close, 200)
// Tight Price Action (Low Volatility)
range10 = ta.highest(high, 10) - ta.lowest(low, 10)
tightBase = (range10 / close) < 0.07
// Volume Dry-Up
volAvg50 = ta.sma(volume, 50)
lowVolume = volume < (volAvg50 * 0.75)
// Strong Uptrend (Already in the script)
uptrend = ema21 > sma50 and sma50 > sma200
// Near 52-Week High
high52 = ta.highest(high, 252)
nearHigh = close > (0.85 * high52)
// Simple Base Confirmation
simpleBase = tightBase and lowVolume and uptrend and nearHigh
// --- PowerTrend Indicator Conditions ---
// PowerTrend Condition 1: The low is above the 21-day EMA for at least 10 days
condition1 = ta.lowest(low, 10) >= ta.lowest(ema21, 10)
// PowerTrend Condition 2: The 21-day EMA is above the 50-day SMA for at least five days
condition2 = ta.barssince(ema21 < sma50) >= 5
// PowerTrend Condition 3: The 50-day SMA is in an uptrend (one day is sufficient)
condition3 = sma50 > sma50
// PowerTrend Condition 4: The market closes up for the day
condition4 = close > close
// Combine all PowerTrend conditions
start_trend = condition1 and condition2 and condition3 and condition4
// --- Final Combined Condition ---
// Buy Signal when both Simple Base and PowerTrend conditions are met
finalCondition = simpleBase and start_trend
// --- Plotting ---
// Plot Simple Base Signal (Blue Label)
plotshape(series=simpleBase, location=location.belowbar, color=color.blue, style=shape.labelup, title="Simple Base Signal")
// Plot Buy Signal (Green Triangle) when both conditions are met
plotshape(series=finalCondition, location=location.belowbar, color=color.green, style=shape.triangleup, title="Buy Signal")
// Highlight Bars with Simple Base Condition
barcolor(simpleBase ? color.blue : na)
// Background Highlight for Simple Base Condition
bgcolor(simpleBase ? color.blue : na, transp=90)
// Alerts for Buy Signal
alertcondition(finalCondition, title="Buy Signal", message="Buy signal based on Simple Base and PowerTrend confirmation.")
Key Changes:
PowerTrend Conditions:
Condition 1: The low price must be above the 21-day EMA for at least 10 days.
Condition 2: The 21-day EMA must be above the 50-day SMA for at least 5 days.
Condition 3: The 50-day SMA must be in an uptrend (compared to the previous day).
Condition 4: The market must close higher than the previous day.
Combining Simple Base and PowerTrend:
A final buy signal is generated when both the Simple Base and PowerTrend conditions are true.
Plotting:
Blue label below bars to indicate a Simple Base.
Green triangle below bars when the buy signal (both Simple Base and PowerTrend) occurs.
Alerts:
An alert condition is added to notify when the buy signal is triggered based on both the Simple Base and PowerTrend conditions.
Summary:
This combined script will:
Identify Simple Base conditions such as low volatility, low volume, and a strong uptrend.
Confirm the PowerTrend conditions indicating a solid market trend.
Mark buy signals with a green triangle when both conditions are met, helping you spot strong breakout opportunities in uptrending stocks.
Let me know if you need further adjustments or additional features!
Cluster Reversal Zones📌 Cluster Reversal Zones – Smart Market Turning Point Detector
📌 Category : Public (Restricted/Closed-Source) Indicator
📌 Designed for : Traders looking for high-accuracy reversal zones based on price clustering & liquidity shifts.
🔍 Overview
The Cluster Reversal Zones Indicator is an advanced market reversal detection tool that helps traders identify key turning points using a combination of price clustering, order flow analysis, and liquidity tracking. Instead of relying on static support and resistance levels, this tool dynamically adjusts to live market conditions, ensuring traders get the most accurate reversal signals possible.
📊 Core Features:
✅ Real-Time Reversal Zone Mapping – Detects high-probability market turning points using price clustering & order flow imbalance.
✅ Liquidity-Based Support/Resistance Detection – Identifies strong rejection zones based on real-time liquidity shifts.
✅ Order Flow Sensitivity for Smart Filtering – Filters out weak reversals by detecting real market participation behind price movements.
✅ Momentum Divergence for Confirmation – Aligns reversal zones with momentum divergences to increase accuracy.
✅ Adaptive Risk Management System – Adjusts risk parameters dynamically based on volatility and trend state.
🔒 Justification for Mashup
The Cluster Reversal Zones Indicator contains custom-built methodologies that extend beyond traditional support/resistance indicators:
✔ Smart Price Clustering Algorithm: Instead of plotting fixed support/resistance lines, this system analyzes historical price clustering to detect active reversal areas.
✔ Order Flow Delta & Liquidity Shift Sensitivity: The tool tracks real-time order flow data, identifying price zones with the highest accumulation or distribution levels.
✔ Momentum-Based Reversal Validation: Unlike traditional indicators, this tool requires a momentum shift confirmation before validating a potential reversal.
✔ Adaptive Reversal Filtering Mechanism: Uses a combination of historical confluence detection + live market validation to improve accuracy.
🛠️ How to Use:
• Works well for reversal traders, scalpers, and swing traders seeking precise turning points.
• Best combined with VWAP, Market Profile, and Delta Volume indicators for confirmation.
• Suitable for Forex, Indices, Commodities, Crypto, and Stock markets.
🚨 Important Note:
For educational & analytical purposes only.
📊 Индикатор Объемов и Открытого ИнтересаЭто продвинутая торговая система, объединяющая анализ объемов, технические индикаторы и статистику для генерации качественных торговых сигналов с возможностью автоматизации через вебхуки!
📊 Логика работы торгового индикатора:
🎯 Основная концепция:
📈 Анализ объемов и открытого интереса (OI) для поиска сильных движений
🔄 Комбинация технических индикаторов для фильтрации
📊 Ведение торговой статистики с визуализацией
🔔 Система оповещений через вебхуки
🎯 Система входа в позицию:
📊 Мониторинг всплесков объемов и OI
📉 Ожидание коррекции к линиям Боллинджера
⚡️ Проверка тренда по SuperTrend и EMA
💪 Анализ силы тренда через ADX
🔗 Учет корреляции с Bitcoin
💧 Проверка ликвидности рынка
3. ⚙️ Режимы работы всплесков:
🔄 "Оба всплеска (И)" - нужны оба сигнала
🔀 "Любой всплеск (ИЛИ)" - достаточно одного
🎚️ Фильтры сигналов:
📏 ATR фильтр волатильности
👑 Фильтр доминации BTC
🔗 Фильтр корреляции с BTC
💧 Фильтр ликвидности
📊 Статистические фильтры
📋 Управление позициями:
🎯 Автоматический расчет TP и SL
👀 Отслеживание открытых позиций
✅ Закрытие по достижению целей
📝 Ведение статистики
📊 Статистика:
💰 Подсчет общего PNL
📈 Расчет винрейта
🔄 Отслеживание торговых серий
⚖️ Расчет профит-фактора
📉 Анализ просадок
🔔 Система вебхуков:
✅ Уведомления о входе
❌ Уведомления о выходе
🎚️ Фильтрация по показателям
🔕 Автоотключение при просадке
🎨 Визуализация:
📈 Линии Боллинджера
🎯 Уровни TP/SL
⭐️ Маркировка сигналов
📊 Статистическая таблица
🔔 Индикация вебхуков
⚙️ Настройки:
🏢 Выбор биржи (Binance/Bybit)
📏 Настройка множителей
⏱️ Настройка периодов
🎚️ Настройка фильтров
🎨 Настройка отображения
📊 Настройка статистики
🔧 Особенности работы:
✅ Анализ на закрытых барах
📅 Учет исторического периода
⏰ Мультитаймфреймовость
🔄 Универсальность применения
11. 🛡️ Защитные механизмы:
🔒 Проверка достоверности данных
⚠️ Защита от ложных сигналов
📊 Контроль рисков
🔄 Адаптация к рыночным условиям
📱 Интерфейс:
👀 Интуитивно понятный дизайн
🎨 Цветовая кодировка сигналов
📊 Информативные таблицы
🔔 Четкие оповещения
EMA+MACD+ATRThis strategy uses EMA as the main indicator, MACD as the secondary indicator, and ATR as the secondary indicator, and uses Granby's eight rules to make entry and exit.
Largos y Cortos RSI MACD SniperEste script en Pine Script para TradingView está diseñado para identificar con alta precisión zonas de sobrecompra y sobreventa mediante la combinación del RSI y el MACD. La estrategia se basa en el principio de confirmación dual, donde el RSI debe superar los 79 puntos para marcar una sobrecompra y caer por debajo de los 21 puntos para indicar una sobreventa. Para aumentar la fiabilidad de las señales, se exige que el MACD confirme la dirección del movimiento: en sobrecompra, el MACD debe estar por encima de su línea de señal, y en sobreventa, por debajo de ella.
Además de resaltar estas zonas críticas con cambios de color en el fondo del gráfico, el script incorpora marcadores visuales que facilitan la identificación de oportunidades de trading. Una característica avanzada de esta estrategia es su capacidad para detectar niveles de sniper en las mechas de las velas. Estos niveles permiten identificar con precisión los puntos extremos donde la liquidez se ha agotado, proporcionando oportunidades óptimas para la ejecución de operaciones con menor riesgo y mayor probabilidad de reversión.
Este enfoque es ideal para traders que buscan entradas estratégicas en zonas de alta volatilidad, maximizando la precisión en sus decisiones de compra y venta.
AnoSun - Lot Size Calculator📌 Description du Script : Lot Size Calculator
Ce script Pine Script v6 est un calculateur avancé de taille de lot destiné aux traders Forex, Indices et Crypto. Il détermine automatiquement la taille de lot optimale en fonction du solde, du risque, du stop-loss et de l’effet de levier.
🔹 Fonctionnalités principales :
✅ Mode de calcul flexible : possibilité de trader en Lots standard ou en Leverage.
✅ Estimation dynamique du spread : basé sur la volatilité du marché (high - low).
✅ Intégration des commissions : prend en compte les frais de trading pour un calcul précis.
✅ Conversion automatique des unités : adapte la valeur du pip en fonction de la devise (USD, JPY, EUR, GBP).
✅ Alerte si la taille du lot est trop grande : avertit lorsque la taille dépasse 2 lots standard.
✅ Affichage sur graphique : affiche la taille du lot, le risque en dollars, le risque réel en %, le spread et les commissions.
🛠 Utilisation :
Configurer son solde, son risque (%) et son stop-loss.
Choisir le mode de calcul (Lots ou Leverage).
Le script affiche la taille du lot idéale et ajuste selon les conditions du marché.
Ce script est idéal pour les traders souhaitant un money management précis et automatisé sur TradingView ! 🚀📊
Créateur : Anosun
My strategyrsi strategy to trade based on RSi indicator it will give some indication to move below or go up
US500 15min Indicator with Signals by HazelIndicator Description: Enhanced US500 15min Indicator with Signals
This Pine Script indicator is designed to provide a comprehensive technical analysis tool for trading the US500 (S&P 500) on a 15-minute timeframe. It combines multiple popular technical indicators to generate clear entry and exit signals, helping traders make informed decisions. The indicator is highly customizable and includes separate panels for better visualization of key metrics.
Key Features:
Exponential Moving Averages (EMAs):
Plots three EMAs (Short, Medium, and Long) on the main chart.
Default lengths: 9 (Short), 20 (Medium), and 50 (Long).
Used to identify trends and potential crossovers for entry/exit signals.
Relative Strength Index (RSI):
Plotted in a separate panel.
Default length: 14.
Overbought (70) and oversold (30) levels are highlighted with colored backgrounds.
Helps identify potential reversals or continuations in price momentum.
Moving Average Convergence Divergence (MACD):
Plotted in a separate panel.
Default settings: Fast length (12), Slow length (26), Signal length (9).
Displays the MACD line and Signal line for crossover signals.
Bollinger Bands:
Plotted on the main chart.
Default length: 20, with 2 standard deviations.
Helps identify volatility and potential price breakouts or reversals.
Stochastic Oscillator:
Plotted in a separate panel.
Default length: 14.
Displays %K and %D lines to identify overbought/oversold conditions.
On-Balance Volume (OBV):
Plotted in a separate panel.
Measures buying and selling pressure based on volume.
Volume-Weighted Average Price (VWAP):
Plotted on the main chart.
Helps identify the average price weighted by volume, often used for intraday trading.
Entry/Exit Signals:
Long Entry: Triggered when:
EMA Short crosses above EMA Medium.
RSI is above 50 (bullish momentum).
MACD line crosses above the Signal line.
Long Exit: Triggered when:
EMA Short crosses below EMA Medium.
RSI is below 50 (bearish momentum).
MACD line crosses below the Signal line.
Short Entry: Triggered when:
EMA Short crosses below EMA Medium.
RSI is below 50 (bearish momentum).
MACD line crosses below the Signal line.
Short Exit: Triggered when:
EMA Short crosses above EMA Medium.
RSI is above 50 (bullish momentum).
MACD line crosses above the Signal line.
Signals are displayed as arrows (▲ for long, ▼ for short) on the chart and trigger alerts.
Customizable Inputs:
Users can adjust the lengths of EMAs, RSI, Bollinger Bands, and Stochastic Oscillator to suit their trading strategy.
Visual Enhancements:
Overbought/oversold RSI levels are highlighted with colored backgrounds.
Indicators are plotted in separate panels to avoid clutter on the main chart.
How to Use:
Trend Identification:
Use the EMAs to identify the overall trend. For example:
If EMA Short > EMA Medium > EMA Long, the trend is bullish.
If EMA Short < EMA Medium < EMA Long, the trend is bearish.
Entry Signals:
Look for arrows (▲ for long, ▼ for short) on the chart to identify potential entry points.
Confirm with RSI, MACD, and Stochastic Oscillator for additional confluence.
Exit Signals:
Use the opposite arrows to identify exit points or take-profit levels.
Monitor RSI and MACD for signs of weakening momentum.
Risk Management:
Use Bollinger Bands to identify potential support/resistance levels.
Combine with VWAP for intraday trading strategies.
Alerts:
Set up alerts for entry and exit signals to stay informed of trading opportunities.
Advantages:
Comprehensive Analysis: Combines multiple indicators for a holistic view of the market.
Customizable: Users can adjust settings to fit their trading style.
Clear Signals: Arrows and alerts make it easy to identify trading opportunities.
Separate Panels: Prevents clutter on the main chart, improving readability.
Ideal For:
Intraday traders (15-minute timeframe).
Traders looking for a multi-indicator approach to confirm signals.
Those who prefer customizable tools with clear visual cues.
This indicator is a powerful tool for traders who want to combine trend-following, momentum, and volume-based indicators into a single, easy-to-use script.
Bullish Engulfing & Sweep IndicatorThe Indicator identify bullish market structure with highlighting a particular candle to enter in longs only. Add confluence with other charting knowledge to develop your edge
Candle Momentum ExhaustionCandle Momentum Exhaustion
The Candle Momentum Exhaustion indicator is designed to help traders spot potential turning points in a trend by identifying when the prevailing momentum may be “running on empty.” The indicator works by comparing the size of each candle’s body (the absolute difference between the open and close) to the average body size over a recent period. When a candle’s body exceeds a user‐defined multiple of this average, it is flagged as an “exhaustion” candle.
• A bullish exhaustion (shown with a red down–facing triangle above the bar) occurs when a very large bullish candle (close > open) is detected, suggesting that buyers may have pushed the price too far and the rally could be near its end.
• A bearish exhaustion (shown with a green up–facing triangle below the bar) occurs when a very large bearish candle (close < open) is detected, implying that selling pressure might be overdone.
These signals can alert you to a potential reversal or consolidation point. The script also includes alert conditions so that you can set up notifications whenever an exhaustion signal is generated.
How It Works
1. Average Candle Body:
The script computes a simple moving average (SMA) of the absolute candle bodies over a user-defined period (default is 14 bars).
2. Exhaustion Candidate:
A candle is flagged as an exhaustion candidate if its body size exceeds the average by more than the set multiplier (default is 2.0).
3. Signal Identification:
• If the exhaustion candle is bullish (close > open), it is marked with a red down–facing triangle above the bar.
• If it is bearish (close < open), it is marked with a green up–facing triangle below the bar.
4. Alerts:
The built-in alertcondition() calls allow you to set alerts (via TradingView’s alert system) so that you can be notified when an exhaustion event occurs.
Risk Disclaimer:
This indicator is provided for educational and informational purposes only and does not constitute financial, investment, or trading advice. Trading and investing involve significant risk, and you should not rely solely on this indicator when making any trading decisions. Past performance is not indicative of future results. Always perform your own due diligence and consult with a qualified financial advisor before making any financial decisions. The creator of this indicator shall not be held responsible for any losses incurred through its use.
Starfield Scroller█ OVERVIEW
This script creates a visually appealing starfield effect on your chart. It generates and animates multiple star fields, each customizable with its own parameters. Explore the input options to adjust the number of stars, their speed, and color.
█ CONCEPTS
The script is a simple demonstration, and utilizes a custom `starfield` function and my `geo` library for point management. It simulates a parallax effect by creating stars at random positions and moving them across the chart at varying speeds.
Star Creation
• Stars are generated with random X and Y coordinates within defined boundaries.
• Each star is assigned a random speed factor, influencing its movement speed.
• Star color is also influenced by its speed; faster stars appear more transparent.
Star Movement & Management
• The script maintains a dynamic array of Star structures. Each Star structure holds the star's creation bar index, location (as a Point ), speed factor, and the label used to display it.
• On each new bar, new stars are created and added to the array.
• Stars are moved horizontally based on their speed factor.
• Stars that move off-screen are deleted to manage resource usage.
• The maximum number of stars for each starfield instance is controlled by an input parameter.
Parallax Effect
• The varying speeds of the stars create a parallax effect, giving the illusion of depth to the starfield.
█ FEATURES
This script includes two independent starfield instances, each configurable via inputs.
Starfield 1:
• Max Stars 1: Maximum number of stars in the first starfield.
• New Stars Per Bar 1: Number of new stars created per bar for the first starfield.
• Max Star Speed 1: Maximum speed of the stars in the first starfield.
• Star Color 1: Color of the stars in the first starfield.
Starfield 2:
• Max Stars 2: Maximum number of stars in the second starfield.
• New Stars Per Bar 2: Number of new stars created per bar for the second starfield.
• Max Star Speed 2: Maximum speed of the stars in the second starfield.
• Star Color 2: Color of the stars in the second starfield.
█ HOW TO USE
1 — Add the script to your chart.
2 — Adjust the input parameters for each starfield to customize its appearance and behavior.
3 — Observe the animated starfield effect.
█ LIMITATIONS
• Excessive numbers of stars may impact performance. Adjust the maximum number of stars and new stars per bar accordingly.
• The script uses labels for rendering stars, which can have limitations on certain chart timeframes and settings.
█ NOTES
This script is intended for visual enhancement and does not provide trading signals. It demonstrates the use of custom types, arrays, and functions for creating complex visual effects in Pine Script™. The `geo` library is used for consistent point calculations.
█ THANKS
Thanks to the TradingView community for inspiration and support.
KEMAD | QuantumResearchQuantumResearch KEMAD Indicator
The QuantumResearch KEMAD Indicator is a sophisticated trend-following and volatility-based tool designed for traders who demand precision in detecting market trends and price reversals. By leveraging advanced techniques implemented in PineScript, this indicator integrates a Kalman filter, an Exponential Moving Average (EMA), and dynamic ATR-based deviation bands to produce clear, actionable trading signals.
1. Overview
The KEMAD Indicator aims to:
Reduce Market Noise: Employ a Kalman filter to smooth price data.
Identify Trends: Use an EMA of the filtered price to define the prevailing market direction.
Set Dynamic Thresholds: Adjust breakout levels with ATR-based deviation bands.
Generate Signals: Provide clear long and short trading signals along with intuitive visual cues.
2. How It Works
A. Kalman Filter Smoothing
Purpose: The Kalman filter refines the selected price source (e.g., close price) by reducing short-term fluctuations, thus offering a clearer view of the underlying price movement.
Customization: Users can adjust key parameters such as:
Process Noise: Controls the filter’s sensitivity to recent changes.
Measurement Noise: Determines how responsive the filter is to incoming price data.
Filter Order: Sets the number of data points considered in the smoothing process.
B. EMA-Based Trend Detection
Primary Trend EMA: A 25-period EMA is applied to the Kalman-filtered price, serving as the core trend indicator.
Signal Mechanism:
Long Signal: Triggered when the price exceeds the EMA plus an ATR-based upper deviation.
Short Signal: Triggered when the price falls below the EMA minus an ATR-based lower deviation.
C. ATR Deviation Bands
ATR Utilization: The Average True Range (ATR) is computed (default length of 21) to assess market volatility.
Dynamic Thresholds:
Upper Deviation: Calculated by adding 1.5× ATR to the EMA (for long signals).
Lower Deviation: Calculated by subtracting 1.1× ATR from the EMA (for short signals).
These bands adapt to current volatility, ensuring that signal thresholds are both dynamic and market-sensitive.
3. Visual Representation
The indicator’s design emphasizes clarity and ease of use:
Color-Coded Bar Signals:
Green Bars: Indicate bullish conditions when a long signal is active.
Red Bars: Indicate bearish conditions when a short signal is active.
Trend Confirmation Line: A 54-period EMA is plotted to further validate trend direction. Its color dynamically changes to reflect the active trend.
Background Fill: The space between a calculated price midpoint (typically the average of high and low) and the EMA is filled, visually emphasizing the prevailing market trend.
4. Customization & Parameters
The KEMAD Indicator is highly configurable, allowing traders to tailor the tool to their specific trading strategies and market conditions:
ATR Settings:
ATR Length: Default is 21; adjusts sensitivity to market volatility.
EMA Settings:
Trend EMA Length: Default is 25; smooths price action for trend detection.
Confirmation EMA Length: Default is 54; aids in confirming the trend.
Kalman Filter Parameters:
Process Noise: Default is 0.01.
Measurement Noise: Default is 3.0.
Filter Order: Default is 5.
Deviation Multipliers:
Long Signal Multiplier: Default is 1.5× ATR.
Short Signal Multiplier: Default is 1.1× ATR.
Appearance: Eight customizable color themes are available to suit individual visual preferences.
5. Trading Applications
The versatility of the KEMAD Indicator makes it suitable for various trading strategies:
Trend Following: It helps identify and ride sustained bullish or bearish trends by filtering out market noise.
Breakout Trading: Detects when prices move beyond the ATR-based deviation bands, signaling potential breakout opportunities.
Reversal Detection: Alerts traders to potential trend reversals when price crosses the dynamically smoothed EMA.
Risk Management: Offers clearly defined entry and exit points, based on volatility-adjusted thresholds, enhancing trade precision and risk control.
6. Final Thoughts
The QuantumResearch KEMAD Indicator represents a unique blend of advanced filtering (via the Kalman filter), robust trend analysis (using EMAs), and dynamic volatility assessment (through ATR deviation bands).
Its PineScript implementation allows for a high degree of customization, making it an invaluable tool for traders looking to reduce noise, accurately detect trends, and manage risk effectively.
Whether used for trend following, breakout strategies, or reversal detection, the KEMAD Indicator is designed to adapt to varying market conditions and trading styles.
Important Disclaimer: Past data does not predict future behavior. This indicator is provided for informational purposes only; no indicator or strategy can guarantee future results. Always perform thorough analysis and use proper risk management before trading.