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!
Indicadores y estrategias
EMA/MA i Year Open Price (4h/1D/1W)This script calculates and plots various Exponential Moving Averages (EMAs) and Simple Moving Averages (MAs) for different timeframes on a TradingView chart. It also calculates the MACD (Moving Average Convergence Divergence) and highlights significant crossovers as buy or sell signals. Additionally, the script marks the first opening price of the year and differentiates between periods when the closing price is above or below certain moving averages.
Soso Supply & Demand A simple indicator that points out demand and supply, combined with confirmations like choch on lower time frames works well. I will try to improve it and test it more.
Адаптивный SuperTrend с машинным обучением На Русском [MIDAS]📈🤖 Адаптивный SuperTrend с машинным обучением На Русском — Поднимите свою торговлю на новый уровень! 🚀✨
Мы перевели этот индикатор для TradingView, чтобы предоставить трейдерам возможность использовать современные технологии машинного обучения для динамической адаптации к рыночной волатильности. Индикатор применяет алгоритм кластеризации k-means для разделения волатильности на высокую, среднюю и низкую, совершенствуя классическую стратегию SuperTrend. Это идеальный инструмент для тех, кто стремится получить преимущество в определении смены трендов и анализе рыночных условий.
Что такое кластеризация k-means и как она работает
Кластеризация k-means — это алгоритм машинного обучения, который группирует данные по схожести. В данном индикаторе он анализирует значения ATR (средний истинный диапазон), чтобы классифицировать волатильность на три уровня: высокий, средний и низкий. Алгоритм итеративно оптимизирует центроиды кластеров, что обеспечивает точную классификацию волатильности.
Ключевые особенности
🎨 Настраиваемый внешний вид: изменяйте цвета для бычьих и медвежьих трендов.
🔧 Гибкие настройки: настраивайте период ATR, множитель SuperTrend и начальные оценки волатильности.
📊 Классификация волатильности: алгоритм k-means адаптируется к рыночным условиям.
📈 Динамический расчет SuperTrend: применяется соответствующий уровень волатильности для расчета индикатора.
🔔 Оповещения: устанавливайте сигналы о смене трендов и изменениях волатильности.
📋 Таблица данных: отображение деталей кластеров и текущего уровня волатильности прямо на графике.
Краткое руководство по использованию индикатора
🛠 Добавьте индикатор: нажмите на иконку звезды, чтобы добавить в избранное. Настройте параметры, такие как период ATR, множитель SuperTrend и процентиль волатильности, в соответствии со своим стилем торговли.
📊 Анализируйте рынок: наблюдайте за изменением цвета и линией SuperTrend для выявления разворотов тренда. Используйте таблицу данных для мониторинга кластеров волатильности.
🔔 Оповещения: включите уведомления о смене трендов и изменениях волатильности, чтобы не пропустить выгодные торговые возможности без постоянного наблюдения за графиком.
Как это работает
Индикатор сначала рассчитывает значения ATR за заданный обучающий период для оценки рыночной волатильности. Задаются начальные оценки для процентилей высокой, средней и низкой волатильности. Затем алгоритм кластеризации k-means итеративно распределяет значения ATR по трем кластерам, определяя оптимальный уровень волатильности для расчета SuperTrend. По мере изменения рыночных условий индикатор динамически адаптируется, предоставляя актуальные данные о трендах и волатильности в реальном времени. Встроенная таблица отображает центроиды кластеров, их размеры и текущий уровень волатильности, что помогает трейдерам принимать обоснованные решения.
Добавьте Адаптивный SuperTrend с машинным обучением На Русском на свои графики TradingView уже сегодня и откройте для себя умный способ торговли! 🌟📊
High-Impact News Events with ALERTHigh-Impact News Events with ALERT
This indicator is builds upon the original by adding alert capabilities, allowing traders to receive notifications before and after economic events to manage risk effectively.
This indicator is updated version of the Live Economic Calendar by @toodegrees ( ) which allows user to set alert for the news events.
Key Features
Customizable Alert Selection: Users can choose which impact levels to restrict (High, Medium, Low).
User-Defined Restriction Timing: Set alerts to X minutes before or after the event.
Real-Time Economic Event Detection: Fetches live news data from Forex Factory.
Multi-Event Support: Detects and processes multiple news events dynamically.
Automatic Trading Restriction: user can use this script to stop trades in news events.
Visual Markers:
Vertical dashed lines indicate the start and end of restriction periods.
Background color changes during restricted trading times.
Alerts notify traders during the news events.
How It Works
The user selects which news impact levels should restrict trading.
The script retrieves real-time economic event data from Forex Factory.
Trading can be restricted for X minutes before and after each event.
The script highlights restricted periods with a background color.
Alerts notify traders all time during the news events is active as per the defined time to prevent unexpected volatility exposure.
Customization Options
Choose which news impact levels (High, Medium, Low) should trigger trading restrictions.
Define time limits before and after each news event for restriction.
Enable or disable alerts for restricted trading periods.
How to Use
Apply the indicator to any TradingView chart.
Configure the news event impact levels you want to restrict.
Set the pre- and post-event restriction durations as needed.
The indicator will automatically apply restrictions, plot visual markers, and trigger alerts accordingly.
Limitations
This script relies on Forex Factory data and may have occasional update delays.
TradingView does not support external API connections, so data is updated through internal methods.
The indicator does not execute trades automatically; it only provides visual alerts and restriction signals.
Reference & Credit
This script is based on the Live Economic Calendar by @toodegrees ( ), adding enhanced pre- and post-event alerting capabilities to help traders prepare for market-moving news.
Disclaimer
This script is for informational purposes only and does not constitute financial advice. Users should verify economic data independently and exercise caution when trading around news events. Past performance is not indicative of future results.
Bars pattern MLThis script implements a K-Nearest Neighbors (KNN)-based machine learning model to predict future price movements in financial markets. It analyzes past price action using Euclidean distance and selects the most similar historical patterns to estimate future price changes. Unlike traditional KNN implementations, this approach optimizes distance calculations by maintaining a dynamically updated list of the closest neighbors, ensuring efficient selection without the need for sorting. The model generates a forecasted price trajectory based on incremental predictions, which are visualized on the chart using polylines for better interpretability.
MACD & Bollinger Bands Overbought OversoldMACD & Bollinger Bands Reversal Detector
This indicator combines the power of MACD divergence analysis with Bollinger Bands to help traders identify potential reversal points in the market.
Key Features:
MACD Calculation & Divergence:
The script calculates the standard MACD components (MACD line, Signal line, and Histogram) using configurable fast, slow, and signal lengths. It includes a simplified divergence detection mechanism that flags potential bearish divergence—when the price makes a new swing high but the MACD fails to confirm the move. This divergence can serve as an early warning that the bullish momentum is waning.
Bollinger Bands:
A 20-period simple moving average (SMA) is used as the basis, with upper and lower bands drawn at 2 standard deviations. These bands help visualize overbought and oversold conditions. For example, a close at or above the upper band suggests the market may be overextended (overbought), while a close at or below the lower band may indicate oversold conditions.
Visual Alerts:
The indicator plots the Bollinger Bands on the chart along with labels marking overbought and oversold conditions. Additionally, it marks potential bearish divergence with a downward triangle, providing a quick visual cue to traders.
Usage Suggestions:
Confluence with Other Signals:
Use the divergence signals and Bollinger Band conditions as filters. For example, even if another indicator suggests a long entry, you might avoid it if the price is overbought or if MACD divergence warns of weakening momentum.
Customization:
All key parameters, such as the MACD lengths, Bollinger Band period, and multiplier, are fully configurable. This flexibility allows you to adjust the indicator to suit different markets or trading styles.
Disclaimer:
This script is provided for educational purposes only. Always perform your own analysis and backtesting before trading with live capital.
Rus Daily Plan - Scenario LevelsThe Daily Plan Levels are key support & resistance zones used for intraday trading. They include:
📍 Bullish Support – A critical level where buyers may step in.
📍 Bearish Breakdown – A key level where sellers take control.
📍 Target Levels – Price points for potential reversals or continuations.
Retrograde Periods (Multi-Planet)**Retrograde Periods (Multi-Planet) Indicator**
This TradingView script overlays your chart with a dynamic visualization of planetary retrograde periods. Built in Pine Script v6, it computes and displays the retrograde status of eight planets—Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, and Pluto—using hard-coded retrograde intervals from 2009 to 2026.
**Key Features:**
- Dynamic Background Coloring:
The indicator changes the chart’s background color based on the current retrograde status of the planets. The colors follow a priority order (Mercury > Venus > Mars > Jupiter > Saturn > Uranus > Neptune > Pluto) so that if multiple planets are retrograde simultaneously, the highest-priority planet’s color is displayed.
- Interactive Planet Selection:
User-friendly checkboxes allow you to choose which planets to list in the table’s “Selected” row. Note that while these checkboxes control the display of the planet names in the table, the retrograde calculations remain independent of these selections.
- Real-Time Retrograde Status Table:
A table in the top-right corner displays each planet’s retrograde status in real time. “Yes” is shown in red for a planet in retrograde and “No” in green when it isn’t. This offers an at-a-glance view of the cosmic conditions influencing your charts.
- Astrological & Astronomical Insights:
Whether you’re into sidereal astrology or simply fascinated by celestial mechanics, this script lets you visualize those retrograde cycles. In astrology, retrograde periods are often seen as times for reflection and re-evaluation, while in astronomy they reflect the natural orbital motions seen from our perspective on Earth.
Enhance your trading setup by integrating cosmic cycles into your technical analysis. Happy trading and cosmic exploring!
Simple Algo - Cruce de Medias Móviles. jesusEste indicador es usado para saver en que tendencia estamos
Fresh Imbalance by VAGAFX🔥 Fresh Imbalances Indicator – Spot High-Probability Trade Setups Instantly! 🔥
Unlock the power of institutional order flow with the Fresh Imbalances Indicator, inspired by VAGAFX’s cutting-edge Smart Money Concepts. This tool is designed for traders who seek precision in identifying fresh imbalances—key areas where price is likely to react due to unfilled institutional orders.
DCA Price LevelsThe indicator is used to set price targets in the chart on the basis of waste.
Whenever the price falls from the current DCA price to minus 30 percent, a new price target is set.
There are a total of 10 price targets, so a drop of up to minus 71 percent is covered by the default setting.
The number of price targets can be set individually, up to a maximum of 10, and the percentages can also be changed.
LH Catch RunnersCatches runners by using Laguerre RSI with Fractal Energy. Works on all instruments.
RSI + MACD📈 Features:
✅ RSI (14): Helps identify overbought and oversold conditions.
✅ MACD (12, 26, 9): Shows trend direction and momentum.
✅ Buy & Sell Signals: Uses MACD crossovers and RSI levels to indicate potential entry points.
✅ Zero Line & Overbought/Oversold Levels: Helps traders visualize key support and resistance areas.
📌 How It Works
RSI Interpretation:
RSI above 70 = Overbought (potential price drop).
RSI below 30 = Oversold (potential price rise).
MACD Interpretation:
MACD Line crosses above Signal Line = Bullish (Buy).
MACD Line crosses below Signal Line = Bearish (Sell).
Open Interest (Multiple Exchanges for Crypto)On some cryptocurrencies and exchanges the OI data is nonexistent or deplorable. With this indicator you can see OI data from multiple exchanges (or just the best one) from USD,USDT, or USD+USDT pairs whether you are using a perpetuals chart or not.
Hope you all like it!
Z-Score Divergence IndicatorZ-Score Divergence Indicator
Описание:
Индикатор Z-Score Divergence показывает Z-оценку цены, вычисляя её отклонение от среднего с учётом стандартного отклонения. Он помогает находить дивергенции между ценой и Z-оценкой, что может указывать на возможные развороты рынка.
Функции:
Рассчитывает Z-Score на основе скользящего среднего и стандартного отклонения.
Отображает уровни перекупленности и перепроданности.
Автоматически определяет дивергенции:
Красный треугольник сверху – сигнал на шорт.
Зелёный треугольник снизу – сигнал на лонг.
Генерирует алерты при обнаружении дивергенций.
Z-Score Divergence Indicator
Description:
The Z-Score Divergence Indicator displays the Z-score of the price by calculating its deviation from the mean using the standard deviation. It helps identify divergences between price and the Z-score, indicating potential market reversals.
Features:
Calculates Z-Score based on the moving average and standard deviation.
Displays overbought and oversold levels.
Automatically detects divergences:
Red triangle above – short signal.
Green triangle below – long signal.
Generates alerts when divergences are detected.
4 Moving AveragesQuatro médias móveis simples no mesmo indicador. Possibilidade de ligar ou desligar individualmente cada uma
ZamirOBArrowPuctures order blockers na grafics. Big money, big grudes, yammy sosises I live dorgot bogato
Advanced Trend Strength Indicator✅ Features & Fixes
✔ EMA 21 & EMA 50-Based Trend Direction
✔ Adaptive Background Highlighting:
• 🟢 Green (Bullish Trend Zone) – Strong Buy Momentum
• 🔴 Red (Bearish Trend Zone) – Strong Sell Momentum
✔ Buy & Sell Signals (Scalping & Positional Trading)
✔ Normalized Trend Strength (0-100) for Market Confidence
✔ Trend Strength Indicator in a Separate Panel for Clarity
📊 How to Use for Trading
1. Intraday Traders – Use Buy & Sell markers for quick scalps.
2. Positional Traders – Follow EMA Crossovers + RSI Confirmation.
3. Trend Confirmation – Watch for strong RSI & MACD Signals.
4. Check Background – Trade only when a strong trend is detected.
New Daily Low with Offset Alert FeatureThis indicator plots the current day’s low as a horizontal line on your chart and provides an optional offset line above it. It’s designed for traders who want to monitor when price is near or breaking below the daily low. You can set alerts based on the built-in alert conditions to be notified whenever the market approaches or crosses below these key levels.
How to Use With Alerts:
1. Add the indicator to your chart and choose a timeframe (e.g., 15 minutes).
2. In the script inputs, enable or adjust the daily low line and any offset percentage if desired.
3. Open the “Alerts” menu in TradingView and select the corresponding alert condition:
• Cross Below Daily Low to detect when price dips below the day’s low.
• Cross Below Daily Low + Offset if you prefer a small cushion above the actual low.
4. Configure the alert’s frequency and notifications to stay updated on potential breakdowns.
This setup helps you catch new lows or near-breakdowns quickly, making it useful for both intraday traders and swing traders watching key support levels.
MTF Support & Resistance📌 Multi-Timeframe Support & Resistance (MTF S&R) Indicator
🔎 Overview:
The MTF Support & Resistance Indicator is a powerful tool designed to help traders identify critical price levels where the market is likely to react. This indicator automatically detects support and resistance zones based on a user-defined lookback period and extends these levels dynamically on the chart. Additionally, it provides multi-timeframe (MTF) support and resistance zones, allowing traders to view higher timeframe key levels alongside their current timeframe.
Support and resistance levels are crucial for traders as they help in determining potential reversal points, breakout zones, and trend continuation signals. By incorporating multi-timeframe analysis, this indicator enhances decision-making by providing a broader perspective of price action.
✨ Key Features & Benefits:
✅ Automatic Support & Resistance Detection – No need to manually plot levels; the indicator calculates them dynamically based on historical price action.
✅ Multi-Timeframe (MTF) Levels – Enables traders to see higher timeframe S&R levels on their current chart for better trend confirmation.
✅ Customizable Lookback Period – Adjust sensitivity by modifying the number of historical bars considered when calculating support and resistance.
✅ Color-Coded Visualization –
Green Line → Support on the current timeframe
Red Line → Resistance on the current timeframe
Dashed Blue Line → Higher timeframe support
Dashed Orange Line → Higher timeframe resistance
✅ Dynamic Extension of Levels – Levels extend left and right for better visibility across multiple bars.
✅ Real-Time Updates – Automatically refreshes as new price data comes in.
✅ Non-Repainting – Ensures reliable support and resistance levels that do not change after the bar closes.
📈 How to Use the Indicator:
Identify Key Price Levels:
The green line represents support, where price may bounce.
The red line represents resistance, where price may reject.
The blue dashed line represents support on a higher timeframe, making it a stronger level.
The orange dashed line represents higher timeframe resistance, helping identify major breakout zones.
Trend Trading:
Look for price action around these levels to confirm breakouts or reversals.
Combine with trend indicators (like moving averages) to validate trade entries.
Range Trading:
If the price is bouncing between support and resistance, consider range trading strategies (buying at support, selling at resistance).
Breakout Trading:
If the price breaks above resistance, it could indicate a bullish trend continuation.
If the price breaks below support, it could signal a bearish trend continuation.
⚙️ Indicator Settings:
Lookback Period: Determines the number of historical bars used to calculate support and resistance.
Show Higher Timeframe Levels (MTF): Enable/disable MTF support and resistance levels.
Extend Bars: Extends the drawn lines for better visualization.
Support/Resistance Colors: Allows users to customize the appearance of the lines.
⚠️ Important Notes:
This indicator does NOT generate buy/sell signals—it serves as a technical tool to improve trading analysis.
Best Used With Other Indicators: Consider combining it with volume, moving averages, RSI, or price action strategies for more reliable trade setups.
Works on Any Market & Timeframe: Forex, stocks, commodities, indices, and cryptocurrencies.
Use Higher Timeframe Levels for Stronger Confirmations: If a higher timeframe support/resistance level aligns with a lower timeframe level, it may indicate a stronger price reaction.
🎯 Who Should Use This Indicator?
📌 Scalpers & Day Traders – Identify short-term support and resistance levels for quick trades.
📌 Swing Traders – Utilize higher timeframe levels for position entries and exits.
📌 Trend Traders – Confirm breakout zones and key price levels for trend-following strategies.
📌 Reversal Traders – Spot potential reversal zones at significant S&R levels.
Delta Volume Histogram with Filters and AlertsОписание (Russian):
Индикатор "Delta Volume Histogram" определяет дельту объёма и отображает её в виде гистограммы. Он показывает разницу между объёмами покупок и продаж, с возможностью фильтрации значений и вызова алертов.
Функции:
Фильтр для отображения только значений выше заданного порога.
Режим отображения всех значений выше нуля.
Алерт при появлении дельты, превышающей установленный фильтр.
Description (English):
The "Delta Volume Histogram" indicator calculates volume delta and displays it as a histogram. It highlights the difference between buy and sell volumes, with options for filtering values and triggering alerts.
Features:
Filter to display only values above a specified threshold.
**Features (continued):**
- Mode to display both positive and negative delta values above the zero line for better visualization.
- Alert functionality that notifies you when the delta volume exceeds the specified filter value.
This indicator is ideal for traders who want to track buying and selling pressure in the market, helping to identify strong movements and potential reversals based on volume delta analysis.
2 EMA RibbonDescription : This indicator plots two Exponential Moving Averages (EMAs) on the price chart:
- The 20-period EMA (short-term trend) helps identify recent price movements.
- The 50-period EMA (medium-term trend) provides insight into broader market direction.
- A bullish signal occurs when the 20 EMA crosses above the 50 EMA, indicating an uptrend.
- A bearish signal occurs when the 20 EMA crosses below the 50 EMA, suggesting a downtrend.
This indicator is useful for trend-following traders looking for confirmation of market direction.