EMA Dual + Pivot Points con Etiquetasindicador de doble Ema editable que incluye los puntos pivote estándar editables a la temporalidad del mercado con ello se determina la entrada y salida de las operaciones
Indicatori e strategie
UtilityLibraryLibrary "UtilityLibrary"
A collection of custom utility functions used in my scripts.
milliseconds_per_bar()
Gets the number of milliseconds per bar.
Returns: (int) The number of milliseconds per bar.
realtime()
Checks if the current bar is the actual realtime bar.
Returns: (bool) `true` when the current bar is the actual realtime bar, `false` otherwise.
replay()
Checks if the current bar is the last replay bar.
Returns: (bool) `true` when the current bar is the last replay bar, `false` otherwise.
bar_elapsed()
Checks how much of the current bar has elapsed.
Returns: (float) Between 0 and 1.
even(number)
Checks if a number is even.
Parameters:
number (float) : (float) The number to evaluate.
Returns: (bool) `true` when the number is even, `false` when the number is odd.
sign(number)
Gets the sign of a float.
Parameters:
number (float) : (float) The number to evaluate.
Returns: (int) 1 or -1, unlike math.sign() which returns 0 if the number is 0.
atan2(y, x)
Derives an angle in radians from the XY coordinate.
Parameters:
y (float) : (float) Y coordinate.
x (float) : (float) X coordinate.
Returns: (float) Between -π and π.
clamp(number, min, max)
Ensures a value is between the `min` and `max` thresholds.
Parameters:
number (float) : (float) The number to clamp.
min (float) : (float) The minimum threshold (0 by default).
max (float) : (float) The maximum threshold (1 by default).
Returns: (float) Between `min` and `max`.
remove_gamma(value)
Removes gamma from normalized sRGB channel values.
Parameters:
value (float) : (float) The normalized channel value .
Returns: (float) Channel value with gamma removed.
add_gama(value)
Adds gamma into normalized linear RGB channel values.
Parameters:
value (float) : (float) The normalized channel value .
Returns: (float) Channel value with gamma added.
rgb_to_xyz(Color)
Extracts XYZ-D65 channels from sRGB colors.
Parameters:
Color (color) : (color) The sRGB color to process.
Returns: (float tuple)
xyz_to_rgb(x, y, z)
Converts XYZ-D65 channels to sRGB channels.
Parameters:
x (float) : (float) The X channel value.
y (float) : (float) The Y channel value.
z (float) : (float) The Z channel value.
Returns: (int tuple)
rgb_to_oklab(Color)
Extracts OKLAB-D65 channels from sRGB colors.
Parameters:
Color (color) : (color) The sRGB color to process.
Returns: (float tuple)
oklab_to_rgb(l, a, b)
Converts OKLAB-D65 channels to sRGB channels.
Parameters:
l (float) : (float) The L channel value.
a (float) : (float) The A channel value.
b (float) : (float) The B channel value.
Returns: (int tuple)
rgb_to_oklch(Color)
Extracts OKLCH channels from sRGB colors.
Parameters:
Color (color) : (color) The sRGB color to process.
Returns: (float tuple)
oklch_to_rgb(l, c, h)
Converts OKLCH channels to sRGB channels.
Parameters:
l (float) : (float) The L channel value.
c (float) : (float) The C channel value.
h (float) : (float) The H channel value.
Returns: (float tuple)
hues(l1, h1, l2, h2, dist)
Ensures the hue angles are set correctly for linearly interpolating OKLCH.
Parameters:
l1 (float) : (float) The first L channel value.
h1 (float) : (float) The first H channel value.
l2 (float) : (float) The second L channel value.
h2 (float) : (float) The second H channel value.
dist (string) : (string) The preferred angular distance to use. Options: `min` or `max` (`min` by default).
Returns: (float tuple)
lerp(a, b, t)
Linearly interpolates between two values.
Parameters:
a (float) : (float) The starting point (first value).
b (float) : (float) The ending point (second value).
t (float) : (float) The interpolation factor .
Returns: (float) Between `a` and `b`.
smoothstep(t, precise)
A non-linear (smooth) interpolation between 0 and 1.
Parameters:
t (float) : (float) The interpolation factor .
precise (bool) : (bool) Sets if the calc should be precise or efficient (`true` by default).
Returns: (float) Between 0 and 1.
ease(t, n, v, x1, y1, x2, y2)
A customizable non-linear interpolation between 0 and 1.
Parameters:
t (float) : (float) The interpolation factor .
n (float) : (float) The degree of ease (1 by default).
v (string) : (string) The easing variant type: `in-out`, `in`, or `out` (`in-out` by default).
x1 (float) : (float) Optional X coordinate of starting point (0 by default).
y1 (float) : (float) Optional Y coordinate of starting point (0 by default).
x2 (float) : (float) Optional X coordinate of ending point (1 by default).
y2 (float) : (float) Optional Y coordinate of ending point (1 by default).
Returns: (float) Between 0 and 1.
mix(color1, color2, blend, space, dist)
Linearly interpolates between two colors.
Parameters:
color1 (color) : (color) The first color.
color2 (color) : (color) The second color.
blend (float) : (float) The interpolation factor .
space (string) : (string) The color space to use for interpolating. Options: `rgb`, `oklab`, and `oklch` (`rgb` by default).
dist (string) : (string) The anglular distance to use for the hue change when the color space is set to `oklch`. Options: `min` and `max` (`min` by default).
Returns: (color) Blend of `color1` and `color2`.
EMA 10 y 55 + Perfil de Volumenindicador que se basa en el cruce de dos medias móviles las cuales al combinarse con la acción del precio mediante el volumen nos da como resultado excelentes entradas y una visión del punto de control y una mejor perspectiva de la dirección del precio
Refined MACD Heikin Ashi Indicator v1.2 with ATR VisualsRefined MACD Heikin Ashi Indicator v1.2
Overview
This advanced MACD-based trading indicator integrates Heikin Ashi trend confirmation with MACD crossovers, enhanced by ATR-based stop-loss and take-profit levels. It provides buy and sell signals (triangles) derived from Heikin Ashi and MACD double confirmation, while ATR-based take-profit and stop-loss markers act as optional trade management tools.
🚀 Works on both regular and Heikin Ashi candles
🔹 Recommended for manual entries with LuxAlgo Smart Money Concepts – an exceptional supply & demand indicator for confluence trading.
Key Features
✅ Dual Confirmation System – Combines Heikin Ashi trend shifts & MACD crossovers for reliable entry/exit signals.
✅ Buy & Sell Triangles – Standalone signals based on HA & MACD confirmation for precise trade execution.
✅ ATR-Based Risk Management (Optional) –
Potential Take-Profit & Stop-Loss Levels calculated dynamically based on market volatility.
✅ Multi-Timeframe Adaptability – Works across all timeframes for strategic trading.
✅ Compatible with Regular Candles – The indicator processes Heikin Ashi values internally, allowing seamless use on any chart type.
✅ Great for Manual Trading – Best when used alongside LuxAlgo Smart Money Concepts for supply & demand confluence.
How It Works
🔹 MACD & Heikin Ashi Confirmation for Entries & Exits –
Bullish Entry (Buy Signal) – Green Triangle appears when both Heikin Ashi and MACD confirm an uptrend.
Bearish Exit (Sell Signal) – Red Triangle appears when Heikin Ashi and MACD confirm a downtrend.
🔹 ATR-Based Stop-Loss & Take-Profit (Optional) –
Red Dots – Suggested Stop-Loss levels based on ATR.
Green Dots – Suggested Take-Profit targets based on ATR.
🔹 No Need for Heikin Ashi Chart – The indicator calculates Heikin Ashi values internally, meaning it works on any chart type.
🔹 Enhanced Manual Trading – Combine with LuxAlgo Smart Money Concepts for precision trading.
Who is This For?
📌 Trend Traders – Identify high-probability trend reversals.
📌 Swing Traders – ATR-based targets help manage risk effectively.
📌 Multi-Timeframe Analysts – Works across different timeframes for better trade confirmation.
📌 Smart Money Traders – Use alongside LuxAlgo Smart Money Concepts for supply & demand insights.
How to Use
1️⃣ Add to Chart – Works on stocks, crypto, forex, and more.
2️⃣ Adjust Settings – Customize MACD lengths, ATR multipliers, and styling.
3️⃣ Follow Buy & Sell Triangles for Entries/Exits – These signals work independently based on Heikin Ashi & MACD double confirmation.
4️⃣ Use ATR-Based SL/TP as Optional Trade Management – The red and green dots can help plan potential exit points, but they are not required to follow the trade signals.
5️⃣ Optimize with Multi-Timeframe Analysis – Works best when viewed across different timeframes for confirmation.
6️⃣ Boost Accuracy – Combine with LuxAlgo Smart Money Concepts for refined entry/exit points based on institutional supply & demand zones.
Customization Options
MACD Fast Length (default: 10)
MACD Slow Length (default: 26)
MACD Signal Length (default: 9)
ATR Multiplier for Stop-Loss (default: 1.8)
ATR Multiplier for Take-Profit (default: 3)
Example Use Case:
Side by side on 4H and 15M charts, showing:
✅ Green & Red Triangles marking potential good buy/sell entries & exits.
✅ ATR-based Stop-Loss (Red Dots) and Take-Profit (Green Dots) acting as optional trade management tools.
✅ Supply & Demand Zones from LuxAlgo Smart Money Concepts providing high-probability manual trade setups.
Baby Shark - BB Fakeout DetectorDetecta Rompimentos rápidos em Bandas de Bollinger.
Os rompimentos das bandas os quais ocorrem com duas barras apenas, tem uma probabilidade bem mais alta de reversão.
Sugestão: Use quando o mercado não estiver em tendência forte.
The Final CountdownA script that shows countdown timers for multiple time frames all in the same place. I edited the original by SamRecio, called Final Countdown so that it only shows 4 time frames.
Grambo's Final CountdownA script that shows countdown timers for multiple time frames all in the same place. I editing the original by @SamRecio so that it only shows 4 time frames.
Kutu Çizme GöstergesiDip ve Tepelerden dönüşleri yakalamaya yardımcı olabilecek bir kutu çizer. Geliştirme süreci devam etmektedir.
Дивергенции Как этот скрипт будет отображаться на графике
1. Медвежьи дивергенции:
• Когда цена достигает нового максимума (обозначается стрелкой вниз с красным цветом), но RSI не подтверждает это движение (падает), вы увидите красную метку “🔻” над соответствующей свечой.
2. Бычьи дивергенции:
• Когда цена достигает нового минимума (обозначается стрелкой вверх с зеленым цветом), но RSI не подтверждает это движение (растет), вы увидите зеленую метку “🔺” под соответствующей свечой.
3. RSI:
• Индикатор RSI будет отображаться в отдельной панели под основным графиком. На этой панели будут горизонтальные линии для уровней перекупленности (70) и перепроданности (30).
Williams %R with Dual EMAA combination of the William%R indicator, with moving averages. In a year timeframe the results look pretty good
5 Indikatörlü StratejiStrateji 5 adet indikatörün birleşiminden oluşmaktadır, bu indikatörler
ParabolicSar
DMI
SuperTrend
İki adet Üssel Dağılım
OBV dir.
30 dakikalık periyotlar da kullanılabilir.
AI - Jack & EgiScopri un approccio innovativo al trading automatizzato su BTCUSD. La nostra strategia sfrutta una logica proprietaria e algoritmi dinamici per identificare in tempo reale le opportunità di ingresso ottimali, bilanciando il potenziale profitto con una gestione del rischio sofisticata tramite livelli adattivi di stop loss e take profit. Progettata per operare in maniera autonoma, questa soluzione offre un supporto completo per il trading intraday, consentendoti di cogliere le opportunità del mercato senza la necessità di interventi manuali costanti.
Ideale per trader che cercano un sistema all'avanguardia e pronto a rispondere alle sfide di un mercato in continua evoluzione.
9-30wma//@version=5
indicator("Custom Indicator", overlay=true)
// 9 Günlük EMA ve 30 Günlük WMA
ema9 = ta.ema(close, 9)
wma30 = ta.wma(close, 30)
// Kapanışların 9 EMA ve 30 WMA seviyelerinin üzerinde olup olmadığını kontrol et
isCloseAboveEma9 = close > ema9
isCloseAboveWma30 = close > wma30
// Mavi sinyal: 9 EMA'nın altında, fakat 30 WMA'nın üstünde kapanış yapan ilk mum
blueSignalCondition = ta.crossover(close, ema9) and close < ema9 and close > wma30
// Yeşil sinyal: Mavi sinyali veren mumun üst seviyesinin üstünde kapanış yapan ilk mum
greenSignalCondition = close > ta.highest(blueSignalCondition ? high : na, 1) and blueSignalCondition
// Mavi ve yeşil sinyal çizimleri
plotshape(series=blueSignalCondition, color=color.blue, style=shape.labelup, location=location.belowbar, size=size.small, title="Blue Signal")
plotshape(series=greenSignalCondition, color=color.green, style=shape.labelup, location=location.belowbar, size=size.small, title="Green Signal")
محاسبه سود/ضرر بر اساس هر پیپاندیکاتور محاسبه قیمت
این اندیکاتور بر اساس پیپت و پیپ هایی که جفت ارزها و سایر شاخص ها جا به جا میشوند به شما نشان میدهد که چقدر در سود و ضرر میروید
SMA Crossover Strategy by AARYAN Buy Signal: When the 50-period SMA crosses above the 200-period SMA
Sell Signal: When the 50-period SMA crosses below the 200-period SMA
This script also includes:
✔️ Visual buy/sell markers on the chart
✔️ Alerts for buy and sell signals
✔️ Backtesting capability to analyze past performance
Estrategia: Cruce de EMAs con MACD Explicación
Entradas basadas en Cruce de EMAs y MACD:
Se utiliza ta.crossover(ema_fast_val, ema_slow_val) para detectar cuando la EMA rápida cruza al alza la EMA lenta. Además, se verifica que el histograma del MACD sea mayor que 0 para confirmar una tendencia alcista.
De manera similar, se utiliza ta.crossunder(ema_fast_val, ema_slow_val) y se comprueba que el histograma sea negativo para una señal bajista.
Salidas mediante pivotes:
Se define la resistencia (máximo en un lookback) y el soporte (mínimo en un lookback) para determinar las salidas, lo que simplifica la toma de ganancias o la salida de la posición.
Gestión de Riesgo:
Se calcula un nivel de stop loss y take profit basado en el ATR y se muestran mediante etiquetas en el gráfico.
MTF RSI/MACD Momentum ScalperMTF RSI/MACD Momentum Scalper is designed for multi-timeframe (MTF) trend analysis using the Relative Strength Index (RSI) and the Moving Average Convergence Divergence (MACD) indicators. It provides trading signals and visual cues for traders seeking to capitalize on short-term market momentum.
Key Features and How to Use :
1. Multi-Timeframe Analysis : The script uses three different timeframes to determine the trend (e.g., 5, 15 minutes). It combines the results of RSI and MACD indicators from these timeframes to confirm a strong trend before signaling potential trade opportunities.
- RSI identifies whether a market is in a bullish or bearish condition based on a 14-period length (default).
- MACD provides an additional layer of confirmation by comparing fast and slow moving averages, with customizable lengths.
2. Buy/Sell Signals : The script generates buy signals when all selected timeframes show a bullish trend (both RSI and MACD) and sell signals when all timeframes indicate a bearish trend. These signals are displayed as triangle shapes on the chart for easy identification.
3. Take Profit Signals : Separate signals for taking profits are available, activated when the trend reverses (bullish to bearish or vice versa). These are represented as square shapes on the chart.
4. Candle Color Changes : Optionally, the color of the candlesticks can be adjusted to reflect the prevailing trend, providing a visual cue for market conditions. Bullish candles are teal, bearish candles are red, and neutral conditions are gray.
5. Alert Conditions : The script includes customizable alert conditions for buy and sell signals, which can notify traders when to enter or exit positions.
Why It's Unique:
- Multi-Timeframe Trend Confirmation : Unlike other indicators that rely on a single timeframe, this script combines three timeframes for a more reliable trend analysis. This reduces the chances of false signals by ensuring that the market trend is consistent across different time periods.
- Visual and Alert-Based Signals : It not only changes the candle colors to match the trend but also provides both visual (on-screen) and alert-based notifications for buy, sell, and take-profit opportunities. This makes it easier for traders to make quick decisions.
Why It's Useful:
- Comprehensive Trend Analysis : The combination of RSI and MACD across multiple timeframes provides a robust method for identifying strong market trends, which is especially useful for momentum-based scalping strategies.
- Helps Manage Risk : With take-profit signals and clear buy/sell alerts, the script helps traders capture profits while avoiding the risk of holding positions too long.
- Customizable for Different Strategies : The user can adjust the parameters (e.g., RSI length, MACD settings, and timeframes) to tailor the script to their trading style and asset preferences.
In summary, the MTF RSI/MACD Momentum Scalper is a powerful tool for traders who focus on capturing short-term market movements. By using multi-timeframe analysis combined with popular technical indicators, it offers a more reliable and visually intuitive way to trade.
SP500 Technical Analysis IndicatorOmówienie
Symbol S&P500: Wczytywany jest symbol (domyślnie "SPX:SPX"), a jego zamknięcia (spxClose) służą jako podstawa dalszych obliczeń.
Średnie kroczące: Używamy SMA50 i SMA200 do określenia trendu (np. cena poniżej SMA200 sugeruje tendencję spadkową).
RSI i MACD: Klasyczne wskaźniki do oceny wykupienia/wyprzedania oraz zmiany momentum.
ADX: Obliczany „od zera” – dzięki temu mamy pełną kontrolę nad sposobem wyliczenia siły trendu.
Filtr 3 sesji: Obliczamy procentową zmianę z ostatnich 3 sesji (cumReturn3). Warunki sygnałów są uzupełnione o ten filtr – dla kupna wymagamy spadku (poniżej –5%), a dla sprzedaży wzrostu (powyżej +5%).
Sygnały: Sygnały (buy, sell, strong buy, strong sell) są generowane na podstawie kombinacji wyżej wymienionych warunków.
Wizualizacja: Sygnały są wyświetlane jako strzałki (w górę dla kupna, w dół dla sprzedaży) umieszczone odpowiednio poniżej lub powyżej świecy.
Ten wskaźnik opiera się wyłącznie na analizie technicznej S&P500 i nie korzysta z żadnych danych z euro, WIG czy innych rynków. Możesz dostosować progi oraz okresy według własnych preferencji i warunków rynkowych.
ZACARÍA$ 5/20 EMA Cross + 50 SMAThis is a MA Cross with the 5 EMA + 20 EMA, but it also features a Simple MA at the 50. Useful for Forex, but can be applied to any chart
ZACARÍA$ 9/21 EMA Cross + 55 MAThis is a MA Cross with the 9 EMA + 21 EMA, but it also features a Simple MA at the 55. Useful for Forex, but can be applied to any chart