DrEZ SR BandsThis script used the 34 EMA & 21 SMA to create a primary support/resistance bands as well as additional bands above & below the primary band that are offset by a modifiable average true range (ATR) multiplier.
Indicators and strategies
Candle Pattern by sd.This candle pattern-based indicator analyzes price action to identify high-probability trading opportunities. By detecting key candlestick formations, it helps traders make informed decisions with precision. Whether for trend reversal signals, confirmation patterns, or trend continuation insights, this indicator provides clear, actionable alerts, enhancing trading accuracy across various market conditions. Ideal for both beginner and advanced traders aiming to capitalize on candle patterns.
Scalping MA Çapraz İndikatörüHareketli ortalama ile al sat sinyalleri veren indikatör
Tercihinize göre destekleyici yan indikatörler kullanabilirsiniz
Stochastic RSI V1Stokastik RSI V1 - Kesişim noktaları işaretlendi, aşırı alım ve satım bölgeleri oluşturuldu. Çok ta önemli olmayabilecek değişiklikler işte...
ATH with Percentage DifferenceSimple ATH with difference percentage from the actual price to hit the all time high price again
10 EMA Break with Volume ConfirmationTracks when price breaks above or below 10 EMA with above average volume useful for meaningful breaks above or below as well as false breaks with easy to read icons
enjoy :)
FFMFFW Daily EMA 21 Trend Cross/Retest MarkupA script that marks up the daily close of possible entries and retests
Alex JMA RSX Clone with Price & Divergence [LazyBear]Indicator Description:
RSX Indicator (RSXC_LB): This script is based on a clone of the JMA RSX (Relative Strength Index clone by LazyBear). It is a momentum-based indicator that helps identify overbought and oversold levels, as well as potential trend reversals.
Functional Changes:
Convergence is now marked with a white line on the RSX plot.
Bullish Divergence is marked with a green line, indicating potential upward movement.
Bearish Divergence is marked with a red line, indicating potential downward movement.
The default state is marked with a blue line.
Strong Divergences (both bullish and bearish) are highlighted with triangle markers on the chart.
Updated Features:
The script now visualizes convergence and divergence more clearly using distinct colors:
White: Convergence (indicates potential trend strength).
Green: Bullish divergence (possible price increase).
Red: Bearish divergence (possible price decrease).
Blue: Neutral/default state.
Triangle markers indicate strong divergences, making it easier for the user to spot critical moments.
This visual enhancement aims to provide clearer and more intuitive signals for traders using the RSX indicator, helping them identify trend changes and reversals more effectively.
Option Delta CandlesDescription:
The Option Delta Candles with EMA indicator is designed to help traders visualize option delta values as candlesticks, calculated using the Black-Scholes model. It provides a unique way to view the cumulative delta changes in a normalized format, making it easier to identify trends and reversals. The addition of an EMA (Exponential Moving Average) overlay helps smooth out the data for better trend analysis.
Features:
Customizable Inputs:
Risk-Free Interest Rate: Adjust the risk-free rate for more precise option calculations.
Volatility: Input the volatility of the underlying asset to reflect current market conditions.
Strike Price: Enter the desired strike price of the option.
Days to Expiration: Specify the days until the option's expiration.
EMA Length: Modify the length of the EMA to suit different time frames and trading styles.
Visual Styles:
Customizable candle colors for bullish and bearish candles.
Configurable border and wick colors for personalized chart aesthetics.
How It Works:
The indicator uses the Black-Scholes model to calculate the delta of a European call option. Delta measures the sensitivity of the option's price to changes in the price of the underlying asset.
A cumulative delta is calculated and normalized to create candlestick representations, providing a visual cue of how the option delta changes over time.
The scaled delta values are normalized between 0 and 1, allowing for a consistent view of relative strength and weakness.
The EMA overlay helps identify smoothed trends and potential reversals within the delta data.
Applications:
Trend Identification: The indicator helps spot trends and potential reversals in option delta movements.
Volatility Analysis: By visualizing option delta, traders can gain insight into how changes in volatility impact options pricing.
Advanced Analysis: This tool is ideal for options traders and analysts looking to integrate delta analysis into their strategies.
Use Cases:
Traders can use the candlestick view to understand shifts in market sentiment through delta changes.
Options Analysts can visualize delta fluctuations over time, aiding in complex options trading strategies.
Technical Analysts may combine this indicator with other tools to confirm signals and enhance trading decisions.
Indicator Configuration:
Input Settings:
Risk-free interest rate (as a percentage).
Volatility (standard deviation) in percentage.
Strike price of the option.
Days remaining until expiration.
EMA length for trend analysis.
Style Customization:
Select colors for bullish and bearish candles, border, and wicks.
Change the color of the EMA line to distinguish it on the chart.
Release Notes:
Initial Version: Includes full implementation of the Black-Scholes delta calculation with customizable EMA and normalized candlestick view.
Future Updates: Potential additions may include enhancements for put options and integrated alerts.
QUOTEX lIVE Market Signal By XadikuLTo enhance the strategy further, I'll add additional candlestick pattern confirmations commonly used for identifying potential reversals. In addition to bullish engulfing and bearish engulfing, I’ll include:
Hammer: A single candlestick pattern that suggests a potential reversal at the bottom of a downtrend.
Inverted Hammer: A single candlestick pattern that suggests a potential reversal at the bottom of a downtrend.
Shooting Star: A single candlestick pattern indicating a potential reversal at the top of an uptrend.
Doji: A pattern that represents market indecision and could suggest a reversal when combined with other conditions.
Here’s the updated script with additional candlestick pattern confirmations:
Average Open/Close and High/LowSimple script to know what number of point you can target on average according to your timeframe. Honestly, you would better check the code, it's silly simple.
Highlight 9:15 AM to 3:30 PM ISTindian share market time. this time frame you can used with cryptotrading session, dow jones
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.
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.