Price EMAS` CrossoverA very simple indicator based on price and selected exponential moving averages (EMAs)
Wskaźniki i strategie
5 EMA PowerSell Signal Strategy: EMA-Based Sequential Break
This strategy identifies high-probability sell signals based on the behavior of candles in relation to a short-term exponential moving average (5 EMA). The following steps outline the specific conditions under which a sell signal is triggered:
Alert Candle Identification:
A candle qualifies as an alert candle if it:
Closes with its high and low fully above the 5 EMA.
Does not touch or cross the 5 EMA at any point.
Each new candle meeting these criteria will update the alert candle, storing the high and low values of the latest qualifying candle.
Sell Trigger Condition:
Once an alert candle has been identified, the strategy waits for a sell trigger.
A sell signal is generated if:
A subsequent candle's low breaks below the low of the latest alert candle.
This downward break indicates potential downward momentum, and a sell signal is plotted.
Signal Logic:
The sell signal is only generated once per alert candle sequence, ensuring no repeat signals are produced until a new alert candle is formed.
Use Case and Application
This strategy is designed for traders looking for short-term entry points in a downtrend, particularly in timeframes where the 5 EMA acts as a dynamic resistance level. The signal is triggered when price momentum weakens relative to the EMA, providing an opportunity to enter a potential downtrend following a price rejection.
Note: This strategy is particularly useful in trending markets where price respects short-term EMAs as support or resistance.
Ongoing YieldFort protection (BTC)This script shows the operation of YieldFort's protection, updated every 2nd and 4th week of the month. YieldFort protection helps hedge against volatility, preventing dollar losses on BTC, ETH, or TON investments. If the cryptocurrency price drops by the end of the period, clients are compensated in the respective crypto. If the price rises, clients keep their gains. The participation fee is 0.21% per 2-week period. Recommended for Deribit charts, as calculations are based on Deribit’s expiration rates between the 2nd and 4th weeks.
Ongoing YieldFort protection (ETH)This script shows the operation of YieldFort's protection, updated every 2nd and 4th week of the month. YieldFort protection helps hedge against volatility, preventing dollar losses on BTC, ETH, or TON investments. If the cryptocurrency price drops by the end of the period, clients are compensated in the respective crypto. If the price rises, clients keep their gains. The participation fee is 0.21% per 2-week period. Recommended for Deribit charts, as calculations are based on Deribit’s expiration rates between the 2nd and 4th weeks.
MMRI Chart (Primary)The **Mannarino Market Risk Indicator (MMRI)** is a financial risk measurement tool created by financial strategist Gregory Mannarino. It’s designed to assess the risk level in the stock market and economy based on current bond market conditions and the strength of the U.S. dollar. The MMRI considers factors like the U.S. 10-Year Treasury Yield and the Dollar Index (DXY), which indicate investor confidence in government debt and the dollar's purchasing power, respectively.
The formula for MMRI uses the 10-Year Treasury Yield multiplied by the Dollar Index, divided by a constant (1.61) to normalize the risk measure. A higher MMRI score suggests increased market risk, while a lower score indicates more stability. Mannarino has set certain thresholds to interpret the MMRI score:
- **Below 100**: Low risk.
- **100–200**: Moderate risk.
- **200–300**: High risk.
- **Above 300**: Extreme risk, indicating market instability and potential downturns.
This tool aims to provide insight into economic conditions that may affect asset classes like stocks, bonds, and precious metals. Mannarino often updates MMRI scores and risk analyses in his public market updates.
Rainbow Logic - EMA (8, 21, 34) & SMA (50, 100, 200)Rainbow Logic - EMA (8, 21, 34) & SMA (50, 100, 200)
Gelişmiş Destek/Direnç, Fibonacci ve Al/Sat Sinyalleri//@version=5
indicator("Gelişmiş Destek/Direnç, Fibonacci ve Al/Sat Sinyalleri", overlay=true)
// Parametreler
smaLength = input.int(50, "SMA Uzunluğu", minval=1)
atrLength = input.int(14, "ATR Uzunluğu", minval=1)
lookback = input.int(20, "Destek/Direnç Aralığı", minval=1)
volumeThreshold = input.float(1.5, "Hacim Eşik Değeri", minval=1)
// Ortalama Gerçek Aralık (ATR) ile Destek/Direnç Seviyeleri
atr = ta.atr(atrLength)
highestHigh = ta.highest(high, lookback)
lowestLow = ta.lowest(low, lookback)
upperBand = highestHigh + atr
lowerBand = lowestLow - atr
// Fibonacci Seviyeleri
fib_0 = lowestLow
fib_236 = lowestLow + (highestHigh - lowestLow) * 0.236
fib_382 = lowestLow + (highestHigh - lowestLow) * 0.382
fib_50 = lowestLow + (highestHigh - lowestLow) * 0.5
fib_618 = lowestLow + (highestHigh - lowestLow) * 0.618
fib_100 = highestHigh
// SMA Hesaplama
sma = ta.sma(close, smaLength)
// Al/Sat Sinyalleri - Fiyat SMA'nın Üzerinde ve Hacim Yüksek Olmalı
isBullish = ta.crossover(close, sma) and volume > ta.sma(volume, 20) * volumeThreshold
isBearish = ta.crossunder(close, sma) and volume > ta.sma(volume, 20) * volumeThreshold
// Grafik Üzerine Çizim
plot(sma, color=color.blue, linewidth=2, title="50 Günlük SMA")
// Dinamik Destek ve Direnç Çizgileri
var line upperLine = na
var line lowerLine = na
if (bar_index > lookback)
line.delete(upperLine)
line.delete(lowerLine)
upperLine := line.new(x1=bar_index-lookback, y1=upperBand, x2=bar_index, y2=upperBand, color=color.red, width=1, style=line.style_dotted)
lowerLine := line.new(x1=bar_index-lookback, y1=lowerBand, x2=bar_index, y2=lowerBand, color=color.green, width=1, style=line.style_dotted)
// Fibonacci Çizgileri
line.new(bar_index - lookback, fib_0, bar_index, fib_0, color=color.purple, width=1, style=line.style_solid)
line.new(bar_index - lookback, fib_236, bar_index, fib_236, color=color.purple, width=1, style=line.style_dotted)
line.new(bar_index - lookback, fib_382, bar_index, fib_382, color=color.purple, width=1, style=line.style_dotted)
line.new(bar_index - lookback, fib_50, bar_index, fib_50, color=color.purple, width=1, style=line.style_dotted)
line.new(bar_index - lookback, fib_618, bar_index, fib_618, color=color.purple, width=1, style=line.style_dotted)
line.new(bar_index - lookback, fib_100, bar_index, fib_100, color=color.purple, width=1, style=line.style_solid)
// Al ve Sat İşaretleri
plotshape(series=isBullish, location=location.abovebar, color=color.green, style=shape.labelup, text="AL")
plotshape(series=isBearish, location=location.belowbar, color=color.red, style=shape.labeldown, text="SAT")
OverSold-Overbought Zone ST.Strateji ile beraber SSL Channels kullanılmalı. Destek Direnç belirlemeye dikkat edilmeli.
EMA Buy/Sell TIENTIENĐây là chỉ báo tín hiệu các đường EMA khi Cross nhau, nó dựa trên các đường EMA34, EMA89, EMA200, EMA400,...
Real Relative Strength Indicator (Multi-Index Comparison)The Real Relative Strength (RRS) indicator implements the "Real Relative Strength" equation, as detailed on the Real Day Trading subreddit wiki. This equation measures whether a stock is outperforming a benchmark (such as SPY or any preferred ETF/index) by calculating price change normalized by the Average True Range (ATR) of both the stock and the indices it’s being compared to.
The RRS metric often highlights potential accumulation by institutional players. For example, in this chart, you can observe accumulation in McDonald’s beginning at 1:25 pm ET on the 5-minute chart and continuing until 2:55 pm ET. When used in conjunction with other indicators or technical analysis, RRS can provide valuable buy and sell signals.
This indicator also supports multi-index analysis, allowing you to plot relative strength against two indices simultaneously—defaulting to SPY and QQQ—to gain insights into the "real relative strength" across different benchmarks. Additionally, this indicator includes an EMA line and background coloring to help automatically identify relative strength trends, providing a clearer visualization than typical Relative Strength Comparison indicators.
Basic RSI Strategy with MFI Description: This Pine Script is a custom trading strategy that combines the power of the RSI (Relative Strength Index) and MFI (Money Flow Index) indicators with additional signal filters and a user-friendly dashboard. The strategy is designed to identify potential entry and exit points based on dynamic conditions, providing an advanced approach to technical analysis and decision-making in trading.
Key Features:
RSI-Based Signals:
Generates buy signals when the RSI-based moving average crosses above specific thresholds (29 and 50).
Generates sell signals when the RSI-based moving average crosses below specific thresholds (50 and 69).
MFI Filtering:
Signals are validated only if the MFI value is within the specified range of 20 to 80, ensuring that signals are generated only when market conditions are favorable.
Dynamic Signal Thresholds:
The script includes adjustable thresholds for the percentage difference between consecutive bars, as well as the range between high and low prices, to refine signal accuracy.
Dashboard:
Displays real-time statistics in the top right corner of the chart, including the total number of signals, the count of buy and sell signals, and the time duration over which these signals were generated.
How to Use:
Settings: Customize the RSI and MFI lengths, along with thresholds for price movement and MFI range. This flexibility allows the strategy to be tailored to different market conditions and timeframes.
Dashboard Insight: Track the strategy's performance in real-time, with an intuitive overview of generated signals and their time distribution on the chart.
Ideal For:
This script is suitable for traders seeking a robust, customizable, and real-time signal generation strategy that combines momentum and volume indicators. The strategy’s unique filtering mechanism provides a higher level of precision, making it an excellent tool for those who prioritize signal accuracy and clarity.
Round NumbersDescrição
Este indicador desenha linhas horizontais no gráfico em intervalos ajustáveis, permitindo que traders marquem níveis de preços relevantes de forma clara e personalizada. Com ele, é possível:
Escolher o intervalo: Defina a distância entre as linhas horizontais, com o valor padrão de 100 unidades, mas ajustável de acordo com a necessidade.
Customizar a cor: Alterar a cor das linhas para uma melhor visualização e integração com o estilo do seu gráfico.
Definir uma faixa de preço específica: Estabeleça um preço inicial e um preço final, limitando as linhas horizontais para serem desenhadas apenas dentro dessa faixa. Isso evita sobrecarregar o gráfico com linhas desnecessárias, focando nas áreas de interesse.
Ideal para
Traders que desejam uma visualização rápida e organizada de níveis de suporte e resistência estáticos.
Análise de níveis psicológicos de preços, como os "Houd Numbers" ou níveis importantes de round numbers.
Estratégias que necessitam de uma segmentação clara de zonas de preços.
Dark Mode EMA/SMA Clouds 1. Consolidated Inputs and Colors: Used arrays to handle multiple moving average lengths, colors, and display settings, reducing repetition.
2. Loop for Cloud Creation: A loop handles each cloud, applying both EMA and SMA choices with plot and fill in fewer lines.
3. Flexible Configuration: The structure allows toggling each cloud independently while maintaining clarity.
Inside Bar with Swing PointsSwing Points with Inside Bar
This script combines swing point analysis with an inside bar pattern visualization, merging essential concepts to identify and visualize key price levels and potential trend reversals. This is especially useful for traders looking to understand price action through swing levels and reactions within inside bar boundaries, making it effective for short-term trend analysis and reversal zone identification.
Script Features:
Swing Point Analysis:
The script identifies swing points based on fractals with a configurable number of bars, allowing for a choice between three and five bars, helping traders fine-tune sensitivity to price movements.
Swing points are visualized as labels, highlighting potential reversal or continuation zones in the price chart.
Inside Bar Visualization:
Inside bars are defined as bars where both the high and low are contained within the previous bar. These often signal consolidation before a potential breakout.
The script displays boundaries of the mother bar (the initial bar encompassing inside bars) and colors candles accordingly, highlighting those within these boundaries.
This feature helps traders focus on price areas where a breakout or trend shift may occur.
Utility and Application:
The script enables traders to visualize inside bars and swing points, which is particularly useful for short-term traders focused on reversal or trend continuation strategies.
Combining swing point analysis with inside bar identification offers a unique approach, helping traders locate key consolidation zones that may precede significant price moves.
This provides not only strong support and resistance levels but also insights into probable breakout points.
How to Use the Script:
Set the number of bars for swing point analysis (3 or 5) to adjust fractal sensitivity.
Enable mother bar boundary visualization and color indication for inside bars to easily spot consolidation patterns.
Pay attention to areas with multiple swing points and inside bars, as these often signal potential reversal or breakout zones.
This script offers flexible tools for analyzing price movements through both swing analysis and consolidation zone identification, aiding decision-making under uncertainty and enhancing market structure understanding.