5% Close Move CandlesCANDLE ABOVE 5% MOVE
Close-to-Close Calculation: The script calculates the percentage change in closing prices compared to the previous day.
Highlighting: Candles with a 5% or greater close-to-close move are highlighted with a blue background.
Label: A label above each qualifying candle displays the percentage change.
Indicators and strategies
Cuanterousss Trend//@version=5
indicator("Follow Trend EMA Volume", overlay=true)
/// Mengatur panjang EMA yang dibutuhkan
ema5 = ta.ema(close, 5)
ema7 = ta.ema(close, 7)
ema21 = ta.ema(close, 21)
ema34 = ta.ema(close, 34)
ema55 = ta.ema(close, 55)
ema90 = ta.ema(close, 90)
ema100 = ta.ema(close, 100)
ema161 = ta.ema(close, 161)
ema200 = ta.ema(close, 200)
/// Menghitung rata-rata EMA untuk menentukan tren dominan
ema_avg = (ema5 + ema7 + ema21 + ema34 + ema55 + ema90 + ema100 + ema161 + ema200) / 9
/// Menghitung volume rata-rata untuk menyaring sinyal
vol_avg = ta.sma(volume, 20) // Volume rata-rata 20 periode
/// Aturan untuk trend dominan berdasarkan posisi harga terhadap EMA rata-rata
bullish_trend = close > ema_avg and volume > vol_avg
bearish_trend = close < ema_avg and volume > vol_avg
Period MarkerThis Period Marker Indicator for TradingView is a visual tool that allows you to highlight a specific date range on your chart. It uses a shaded background color to mark the defined period, making it easy to visually separate and focus on specific time intervals. This is especially useful for analyzing historical events, comparing specific timeframes, or marking earnings seasons or other critical periods in price action.
Key Features
Easy Date Range Selection:
The indicator has a calendar-style date input for both the start and end dates. This allows for quick and precise selection of date ranges without manually entering each date component (year, month, day).
Customizable Period Highlight:
When active, the indicator shades the background of the chart over the specified period. The default highlight color is a semi-transparent green, but this can be customized within the script to any color and opacity you prefer.
The shaded background helps you easily identify and focus on the defined date range.
Dynamic Adjustment:
You can adjust the start and end dates in real-time, and the background shading will automatically update to reflect the new period, allowing flexibility in testing and viewing multiple periods quickly.
Practical Uses
Event Marking: Track significant historical events (e.g., economic data releases, geopolitical events) to see their effects on price action.
Seasonal Analysis: Highlight and compare seasonal trends, such as quarterly earnings or year-end rallies, across multiple years.
Backtesting Specific Periods: When analyzing strategies, you can visually isolate specific date ranges to review performance or behavior in defined intervals.
The Period Marker Indicator is a simple yet effective way to enhance time-based analysis on TradingView, helping you gain insights by focusing on relevant periods with ease.
Motion Sentinel - Testing 01Script de prueba Motion Sentinel.
Motion analiza patrones dentro de acciones y busca validaciones operativas en ellos para construir y mantener una ventaja estadística.
Technical Analysis Buy/Sell SignalsEMA Calculation: The script calculates two EMAs (short and long) for trend direction.
MACD Calculation: MACD is calculated with user-defined inputs to capture momentum changes.
RSI: The RSI is used to identify overbought and oversold conditions.
Signal Generation:
A buy signal is generated when the MACD line crosses above the signal line, RSI is below the oversold threshold, and the closing price is above the short EMA.
A sell signal is generated when the MACD line crosses below the signal line, RSI is above the overbought threshold, and the closing price is below the short EMA.
Alerts: Optional alerts are provided for buy and sell conditions.
Highlight 3 PM Candle//@version=5
indicator("Highlight 3 PM Candle", overlay=true)
// Function to determine if the current candle is the 3 PM candle
is3pm(candleTime) =>
hour(candleTime) == 15 and minute(candleTime) == 0
// Check if the current candle is the 3 PM candle
highlight = is3pm(time)
// Highlight the 3 PM candle with a background color
bgcolor(highlight ? color.new(color.red, 80) : na)
Pivot Points StrategyTrade Entry Logic
Long Entry: The strategy enters a long position when the price crosses above the primary pivot level (P). This crossover indicates a potential uptrend or bullish momentum.
Short Entry: The strategy enters a short position when the price crosses below the primary pivot level (P). This crossunder suggests bearish momentum or a potential downtrend.
Trade Exit Logic
Long Exit: If a long position is active and the price reaches or exceeds R4, the strategy will exit the long position. R4 serves as an upper target, signaling that the bullish momentum might be losing steam.
Short Exit: If a short position is active and the price reaches or falls below S4, the strategy exits the short position. S4 is used as a target for short positions, indicating that downward momentum may be weakening.
Alerts
The strategy includes alerts for exits:
When a long position exits at R4, an alert is triggered with the message "Exit Long Trade at R4."
When a short position exits at S4, an alert is triggered with the message "Exit Short Trade at S4."
Strategy Rationale
This strategy is based on the concept that certain price levels act as psychological boundaries where price may reverse, pause, or breakout significantly. By using Camarilla pivots, the strategy aims to capture moves within strong support and resistance boundaries, providing guidance on entry and exit points.
FlexiMA - Customizable Moving Averages ProDescrição:
O FlexiMA - Customizable Moving Averages Pro é um indicador de médias móveis altamente customizável desenvolvido para traders que buscam flexibilidade e precisão na análise de tendência. Este indicador permite ao usuário ajustar até quatro médias móveis, escolhendo o tipo de média, período, cor, estilo e espessura das linhas de acordo com sua estratégia.
Funcionalidades Principais:
Seleção do Tipo de Média Móvel:
O FlexiMA oferece múltiplas opções de médias móveis para cada uma das quatro linhas disponíveis. Isso inclui tipos de médias clássicas, como Simples (SMA), Exponencial (EMA), e outras avançadas como Welles Wilder.
Personalização de Períodos:
O usuário pode configurar períodos distintos para cada média móvel, tornando o indicador adaptável tanto para estratégias de curto quanto de longo prazo.
Controle Completo do Estilo:
O FlexiMA permite ajustar a cor, a espessura e o tipo de linha (contínua, pontilhada, etc.) de cada média móvel, proporcionando uma visualização clara e organizada no gráfico.
Ativação/Desativação de Médias:
Cada uma das quatro médias móveis pode ser ativada ou desativada de forma independente, permitindo que o trader trabalhe com uma única média, pares, ou todas as quatro, conforme necessário.
Como Utilizar:
Este indicador é projetado para servir tanto traders iniciantes quanto experientes. Você pode configurá-lo para ajudar a identificar tendências de alta e baixa, pontos de reversão e até sinais de entrada e saída.
O FlexiMA permite, por exemplo, definir uma combinação clássica de médias de 50 e 200 períodos para identificar mudanças de tendência de longo prazo, enquanto as médias mais curtas podem ser usadas para sinalizar entradas rápidas.
Exemplos de Aplicação:
Estratégia de Cruzamento: Defina uma média de curto prazo e uma de longo prazo e acompanhe os pontos de cruzamento para detectar mudanças de tendência.
Análise Multi-Temporal: Configure cada média móvel para períodos diferentes e utilize-os para analisar tendências em várias janelas temporais ao mesmo tempo.
Confirmação de Volume: Com a opção de incluir a VWMA, é possível obter uma leitura de tendência ponderada pelo volume, útil para confirmar a força das movimentações de preço.
Recomendações:
Este indicador é recomendado para traders que buscam um maior controle sobre suas análises de tendências e uma experiência de uso personalizada no TradingView.
Resumo das Configurações:
Tipos de Média: SMA, EMA, WW.
Configuração de Período: Definido pelo usuário para cada média.
Estilo de Linha: Contínua, pontilhada, entre outros.
Cor e Espessura: Totalmente customizáveis.
First 5 Minutes Open/Close LinesThis very simple indicator paints lines at the high and low of the first 5m candle of the session. It is primarily intended for big cap NYSE traded stocks with high volume. I wrote this indicator to save me the trouble of manually drawing the lines each day.
The lines drawn at the 5m high/low will remain constant regardless of which timeframe you switch to. In the example screenshot, we are looking at the 1m timeframe. This helps us switch effortlessly between different timeframes to see if a given price movement meets our entry criteria.
In addition to drawing lines at the first 5m high/low, it will optionally paint two zones, one each around the high and low. The boundaries of this zone are configurable and expressed as a percentage of the total movement of the first 5m bar. By default, it is set to 25%.
This indicator is based on the concept that the first 5m bar always has massive volume which helps us infer that price may react around the extremes of that movement. The basic strategy works something like this:
- You identify the high timeframe (HTF) trend direction of the stock
- You wait for the first 5m candle of the session to close
- You wait for price to puncture through the outer boundary of the zone marked by the indicator.
- You enter when price retraces to the high, or low, which marks the midpoint of the punctured zone.
- Only enter long on stocks in a HTF uptrend, and short on stocks in an HTF downtrend.
- Use market structure to identify stop loss and take profit targets
Note: Use at your own risk. This indicator and the strategy described herein are not in any way financial advice, nor does the author of this script make any claims about the effectiveness of this strategy, which may depend highly on the discretion and skill of the trader executing it, among many other factors outside of the author's control. The author of this script accepts no liability, and is not responsible for any trading decisions that you may or may not make as a result of this indicator. You should expect to lose money if using this indicator.
Enhanced Pressure MTF ScreenerEnhanced Pressure Multi-Timeframe (MTF) Screener Indicator
Overview
The Enhanced Pressure MTF Screener is an add-on that extends the capabilities of the Enhanced Buy/Sell Pressure, Volume, and Trend Bar Analysis . It provides a clear and consolidated view of buy/sell pressure across multiple timeframes. This indicator allows traders to determine when different timeframes are synchronized in the same trend direction, which is particularly useful for making high-confidence trading decisions.
Image below: is the Enhanced Buy/Sell Pressure, Volume, and Trend Bar Analysis with the Enhanced Pressure MTF Screener indicator both active together.
Key Features
1.Multi-Timeframe Analysis
The indicator screens various predefined timeframes (from 1 week down to 10 minutes).
It offers a table view that shows buy or sell ratings for each timeframe, making it easy to see which timeframes are aligned.
Traders can choose which timeframes to include based on their trading strategies (e.g., higher timeframes for position trading, lower timeframes for scalping).
2.Pressure and Trend Calculation
Uses Buy and Sell Pressure calculations from the Enhanced Buy/Sell Pressure indicator to determine whether buying or selling is dominant in each timeframe.
By analyzing pressures on multiple timeframes, the indicator gives a comprehensive perspective of the current market sentiment.
The indicator calculates whether a move is strong based on user-defined thresholds, which are displayed in the form of additional signals.
3.Heikin Ashi Option
The Heikin Ashi candle type can be toggled on or off. Using Heikin Ashi helps smooth out market noise and provides a clearer indication of trend direction.
This is particularly helpful for traders who want to filter out market noise and focus on the primary trend.
4.Table Customization
Table Positioning: The table showing timeframe data can be positioned at different locations on the chart—top, middle, or bottom.
Text and Alignment: The alignment and text size of the table can be customized for better visual clarity.
Color Settings: Users can choose specific colors to indicate buying and selling pressure across timeframes, making it easy to interpret.
5.Strong Movement Indicators
The screener provides an additional visual cue (🔥) for timeframes where the movement is deemed strong, based on a user-defined threshold.
This helps highlight timeframes where significant buying or selling pressure is present, which could signal potential trading opportunities.
How the Screener Works
1.Pressure Calculation
For each selected timeframe, the indicator retrieves the Open, High, Low, and Close (OHLC) values.
It calculates buy pressure (the range between high and low when the closing price is higher than the opening) and sell pressure (the range between high and low when the closing price is equal to or lower than the opening).
The screener computes the pressure ratio, which represents the difference between buying and selling pressure, to determine which side is dominant.
2.Trend Rating and Signal Generation
Based on the calculated pressure, the screener determines a trend rating for each timeframe: "Buy," "Sell," or "Neutral." (▲ ,▼ or •)
Additionally, it generates a signal (▲ or ▼) to indicate the current trend direction and whether the move is strong (based on the user-defined threshold).
If the movement is strong, a fire icon (🔥) is added to indicate that there is significant pressure on that timeframe, signaling a higher confidence in the trend.
3.Customizable Strong Move Thresholds
Strong Move Threshold: The screener uses this value to decide whether a trend is significantly strong. A higher value makes it more selective in determining strong moves.
Strong Movement Threshold: Helps determine when an additional strong signal should be displayed, offering further insight into the strength of market movement.
Inputs and Customization
The Enhanced Pressure MTF Screener is highly customizable to fit the needs of individual traders:
General Settings:
Use Heikin Ashi: Toggle this setting to use Heikin Ashi for a smoother trend representation.
Strong Move Threshold: Defines how strong a move should be to be considered significant.
Strong Movement Threshold: Specifies the level of pressure required to highlight a move with the fire icon.
Table Settings:
Position: Choose the vertical position of the screener table (top, middle, or bottom of the chart).
Alignment: Align the table (left, center, or right) to best suit your chart layout.
Text Size: Adjust the text size in the table for better readability.
Table Color Settings:
Users can set different colors to represent buying and selling signals for better visual clarity, particularly when scanning multiple timeframes.
Timeframe Settings:
The screener provides options to include up to ten different timeframes. Traders can select and customize each timeframe to match their strategy.
Examples of available timeframes include 1 Week, 1 Day, 12 Hours, down to 10 Minutes, allowing for both broad and detailed analysis.
Practical Use Case
Identifying Trend Alignment Across Timeframes:
Imagine you are about to take a long trade but want to make sure that the trend direction is aligned across multiple timeframes.
The screener displays "Buy" ratings across the 4H, 1H, 30M, and 10M timeframes, while higher timeframes (like 1W and 1D) also show "Buy" with strong signals (🔥). This indicates that buying pressure is strong across the board, adding confidence to your trade.
Spotting Reversal Opportunities:
If a downtrend is evident across most timeframes but suddenly a higher timeframe, such as 12H, changes to "Buy" while showing a strong move (🔥), this could indicate a potential reversal.
The screener allows you to spot these discrepancies and consider taking early action.
Benefits for Traders
1.Synchronization Across Timeframes:
One of the main strengths of this screener is its ability to show synchronized buy/sell signals across different timeframes. This makes it easy to confirm the strength and consistency of a trend.
For example, if you see that all the selected timeframes display "Buy," this implies that both short-term and long-term traders are favoring the upside, giving additional confidence to go long.
2.Quick and Visual Trend Overview:
The table offers an at-a-glance summary, reducing the time required to manually inspect each timeframe.
This makes it particularly useful for traders who want to make quick decisions, such as day traders or scalpers.
3.Strong Move Indicator:
The use of fire icons (🔥) provides an easy way to identify significant movements. This is particularly helpful for traders looking for breakouts or strong market conditions that could lead to high probability trades.
To put it short or to summarize
The Enhanced Pressure MTF Screener is a powerful add-on for traders looking to understand how buy and sell pressure aligns across multiple timeframes. It offers:
A clear summary of buying or selling pressure across different timeframes.
Heikin Ashi smoothing, providing an option to reduce market noise.
Strong movement signals to highlight significant trading opportunities.
Customizable settings to fit any trading strategy or style.
The screener and the main indicator are best used together, as the screener provides the multi-timeframe overview, while the main indicator provides an in-depth look at each individual bar and trend.
I hope my indicator helps with your trading, if you guys have any ideas or questions there is the comment section :D
BTC Price Difference (Coinbase vs Binance)BTC Price Difference (Coinbase vs Binance)BTC Price Difference (Coinbase vs Binance)BTC Price Difference (Coinbase vs Binance)BTC Price Difference (Coinbase vs Binance)BTC Price Difference (Coinbase vs Binance)BTC Price Difference (Coinbase vs Binance)BTC Price Difference (Coinbase vs Binance)
Ethereum MVRV Z-Score OverlayThis indicator overlays a buy and sell threshold onto a ETHUSD chart. These thresholds are calculated using the MVRV Z-Score and the provided threshold values for the MVRV Z-Score.
Bullish-Bearish Volume Sum Cross EmasBullish-Bearish Volume Sum Histogram with Two EMAs and Cross Circles
Stormico Screener 40, EMA 80 (Slow Stochastic 8)This screener is a tribute to Alexandre Wolwacz, known as "Stormer," one of the most influential traders in the Brazilian financial market.
Stormer is renowned for his experience and skill in technical analysis, as well as his dedication to teaching trading strategies to traders at all levels. He is particularly known for his focus on strategies with a positive risk-reward ratio and low drawdown, something he conveys to his followers with clarity and practicality.
The screener presented here uses a setup frequently employed by Stormer to capture pullbacks in uptrends, focusing on strategic entries, short stops, and long targets. It utilizes an 8-period Slow Stochastic and an 80-period Exponential Moving Average (EMA) and is suitable for Day Trading, Swing Trading, and Position Trading on weekly charts.
Main Elements of the Setup:
80-Period Exponential Moving Average (EMA): The 80 EMA is used as a trend filter. When the price is above it, we consider an uptrend and look for buying opportunities. When the price is below it, buy trades are avoided, prioritizing trades that follow the upward trend.
Slow Stochastic Oscillator: The 8-period Slow Stochastic is used to capture entry points during pullbacks. In an uptrend, we look for moments when the oscillator reaches oversold levels (below 20), indicating a possible entry at an attractive price while remaining aligned with the main market direction.
Entry and Exit Criteria:
Buy: The entry occurs when the stochastic oscillator is in oversold levels and the price stays above an ascending 80 EMA with a bullish candle or inside bar, or when the stochastic turns upward.
Short Stop: The stop-loss is positioned below a recent support level, limiting risk and minimizing drawdown.
Long Target: Once in operation, the goal is to ride the trend with wider targets to maximize gains. The target suggested by Stormer can be set at twice the risk (2x Risk) or the previous high on the chart.
Positive Risk-Reward Ratio and Low Drawdown
With a short stop and a larger profit target, this setup is ideal for capturing entries with a favorable risk-reward ratio, minimizing drawdown and maximizing profit potential in trades that follow the trend.
This screener applies this setup across 40 assets, identifying the best opportunities according to the "Stormer" method. It displays the 8 and 80 EMAs and can be complemented by the Stormico Screener 40, Slow Stochastic (EMA 80).
The setup was also a favorite of his daughter Carol, who contributed greatly to live sessions and classes with Stormer. This screener honors both of them and Alexandre Wolwacz’s methodology, with deep respect for all he has contributed to the market and his students.
ViganThe Vigan is a range bound momentum oscillator. This is designed to display the advance location of the close compared to the high/low range over a user defined number of periods. Typically, this is used for three things; Identifying overbought and oversold levels, spotting divergences and also identifying bull and bear set ups or signals.
Minkiu Bollinger Band Strategy Convert all Indicator specific code to Strategy specific code. Don't use any code that a TradingView Strategy won't support. Especially timeframes and gaps. Define those in code so they are semantically the same as before.
VOWPublicCombining multiple technical indicators to see if I can get a better grasp of potential reversal.