BRAHIM KHATTARA Components of the Strategy
Input Settings:
RSI Oversold Level: Set at 30, meaning the asset is considered oversold when RSI drops below this level.
RSI Overbought Level: Set at 70, meaning the asset is considered overbought when RSI rises above this level.
Stop Loss: A percentage-based stop loss (default: 1%).
Take Profit: A percentage-based take profit level (default: 2%).
Trade Entry Conditions:
A buy trade (long position) is triggered when the RSI is below 30 and was previously above 30 in the last candle.
A sell trade (short position) is triggered when the RSI is above 70 and was previously below 70 in the last candle.
Risk Management:
When a long position is opened:
The take profit is set 2% above the entry price.
The stop loss is set 1% below the entry price.
When a short position is opened:
The take profit is set 2% below the entry price.
The stop loss is set 1% above the entry price.
Buy and Sell Signals on the Chart:
A "BUY" label appears below the candles when a buy condition is met.
A "SELL" label appears above the candles when a sell condition is met.
Fibonacci Bollinger Bands:
The middle line is calculated using VWMA (Volume-Weighted Moving Average).
The bands are calculated using standard deviation with Fibonacci levels: 0.236, 0.382, 0.5, 0.618, 0.764, and 1.0.
The upper bands act as resistance, while the lower bands act as support.
✅ Advantages of the Strategy
✔️ Simple and easy to understand, relying only on RSI and support/resistance levels.
✔️ Suitable for scalping and swing trading.
✔️ Uses Fibonacci Bollinger Bands to improve entry and exit accuracy.
✔️ Clear risk management with predefined stop loss and take profit levels.
Indicadores e estratégias
EMA 9/20/50/200 FethiEma değerleri altında denemler Ema değerleri altında denemler Ema değerleri altında denemler Ema değerleri altında denemler Ema değerleri altında denemler Ema değerleri altında denemler Ema değerleri altında denemler
Distancia a EMA25 y % de Cierres
Línea Roja (% Cierres Sobre EMA)
Indica el porcentaje de velas (dentro de tu lookback, por ejemplo 50 barras) que han cerrado por encima de la EMA25.
Si está en valores altos (por ejemplo, 70-80%), significa que en la mayoría de las últimas 50 velas el precio ha cerrado por encima de la EMA, lo cual sugiere un sesgo alcista o, al menos, una fortaleza relativa del precio frente a la EMA.
Línea Naranja (% Cierres Bajo EMA)
Representa el porcentaje de velas que han cerrado por debajo de la EMA25 en el mismo período.
Al ser complementaria, la suma de la línea roja y la naranja debe dar 100%.
Si esta línea es más alta que la roja, indica que la mayoría de velas cierran por debajo de la EMA25, sugiriendo un sesgo bajista.
Distancia % (Precio - EMA25)
Dependiendo de cómo lo hayas configurado, podrías ver una línea o un valor numérico que mide cuán lejos está el precio de la EMA25 en términos porcentuales.
Si este valor se aleja mucho de 0 (por ejemplo, +2% o -2%), indica que el precio se ha separado bastante de su media, lo que a veces se interpreta como un posible punto de sobreextensión (sobrecompra o sobreventa, según la dirección).
bseSmallCap / Nifty50 RatioTo determine the entry point in small cap space to make the most of it during trend reversal
BarbellFX 2 in 1 ORB + Super Trend with signalsThis “BarbellFX 2 in 1 ORB + Super Trend with signals” indicator merges two powerful trading approaches into a single, customizable script:
1. Multi-Session Open Range Breakout (ORB)
• Automatically detects and plots the London and New York session ranges.
• Optionally displays session highs/lows with colored lines, highlights each session’s background, and plots an EMA for extra trend context.
• Detects and alerts on breakouts above/below session ranges.
• Provides an on-chart table showing session range size and breakout activity.
2. Barbell FX Super Trend System
• Utilizes multi-timeframe (4H, Daily, Weekly) EMA crossovers alongside an RSI and ATR-based volatility filter.
• Shows a simple dash of higher-timeframe trends (Bullish/Bearish) to confirm the overall market direction.
• Alerts and plots buy/sell signals on the chart based on 4H EMA crossovers, RSI conditions, and user-defined volatility thresholds.
• Option to filter signals further by requiring all three higher timeframes (4H, Daily, Weekly) to align.
Fully Customizable Toggles
• Global On/Off: Toggle each main component (ORB or Super Trend) individually.
• Session Lines, Backgrounds, EMA, Table: Enable or disable each visual element in the ORB section.
• Super Trend Settings: Show/hide 4H EMAs, signals, and the multi-timeframe trend dashboard.
• Alerts: Toggle breakout alerts for the ORB sessions and 4H buy/sell alerts for the Super Trend system.
This combination helps traders quickly spot intraday session breakouts that align with higher-timeframe momentum, all while keeping the chart clean via on/off switches for each feature.
Predictive Buy/Sell IndicatorĐây là mã Pine Script dự báo tín hiệu BUY/SELL trước khi nến chạy, dựa trên Fibonacci, Order Block, RSI và EMA. Chỉ báo sẽ:
✅ Hiển thị tín hiệu BUY (mua) khi giá phá vỡ Order Block, RSI thấp và nằm trên EMA.
✅ Hiển thị tín hiệu SELL (bán) khi giá giảm dưới Order Block, RSI cao và nằm dưới EMA.
✅ Tự động đặt Take Profit (TP) & Stop Loss (SL) dựa trên ATR.
Descending HLines//@version=5
indicator("Descending HLines", overlay=true)
// Input for symbol restriction with a default valid value
symbolInput = input.symbol("AAPL", "Apply only to symbol")
// Define specific price levels
priceLevels = array.from(4800, 4900, 5000, 5100, 5200, 5300, 5400, 4700, 4650, 4600, 5050, 5700)
// Define colors in the required order
colorsArray = array.from(
color.new(color.green, 0), // Dark Green
color.new(color.lime, 0), // Light Green
color.new(color.green, 0), // Dark Green
color.new(color.lime, 0), // Light Green
color.new(color.purple, 0), // Purple
color.new(color.purple, 0), // Purple
color.new(color.orange, 0), // Orange
color.new(color.orange, 0), // Orange
color.new(color.red, 0), // Light Red
color.new(color.maroon, 0), // Dark Red
color.new(color.red, 0), // Light Red
color.new(color.maroon, 0) // Dark Red
)
// Ensure the script applies only to the selected symbol
if str.upper(syminfo.ticker) == str.upper(symbolInput)
for i = 0 to array.size(priceLevels) - 1
line.new(
x1 = bar_index - 500,
y1 = array.get(priceLevels, i),
x2 = bar_index + 500,
y2 = array.get(priceLevels, i),
color = array.get(colorsArray, i),
width = 2,
extend = extend.both
)
Ross Larter - Trend Following Momentum Strategy with ATRThis indicator was inspired by Ross Larter's Trend Following Momentum Strategy.
Signals are printed on the chart when the entry criteria is met on the Stochastic and the MACD, and then a confirmation entry is printed at the bottom of the chart when all 3 criteria has been met. ATR Bands and fractals were also added for variations of the strategy.
bseSmallCap / Nifty50 RatiobseSmallCap / Nifty50 Ratio to determine when to enter the small cap segment to make the most out of it during recovery
Multi-Timeframe Strategy with Time FiltersLooks at overall trend on 15 minute timeframe and identifies candlestick types on 1 minute time frame to determine entry. Does not execute trades too close to market open or close and doesn't hold any trades past the end of trading day.
JULI_LU_Day_EMAграфик смещения EMA. позволяет видеть индикаторы с разным периодом, смещением вверх и вниз, и даже вправо.
Gold trading (High TimeFrame)this strategy is the opposite of my previous strategy and work on higher time frame
from 5min to daily
you MUST try to change value yourself, change rsi period MA period and % of tp and sl, the result will greatly change with different timeframe so you have to adapt the value to the timeframe you are on, please give feedback and ask if you need any help
Zona Momentum Strategysilakan dipakai sepuasnya untuk hasil maksimal. jadikan momentum buy dan sell dengan baik dan jangan bingung
Тестовый индикатор MA v2"Индикатор 'Тестовый индикатор MA v2' разработан для трейдеров, работающих с криптовалютами, такими как BTCUSDT, и использует две экспоненциальные скользящие средние (EMA) с настройками по умолчанию: быстрая MA длиной 10 и медленная MA длиной 50. Зелёные стрелки вверх сигнализируют о возможности покупки, когда быстрая MA пересекает медленную снизу вверх, а красные стрелки вниз — о продаже, когда быстрая MA пересекает медленную сверху вниз. Индикатор идеально подходит для краткосрочного трейдинга на низких таймфреймах (1M, 5M, 15M), но может быть адаптирован для более длительных периодов. Он интегрируется с уведомлениями TradingView и вебхуками для автоматизации через платформы, такие как n8n. Пользователи могут настроить длины MA в настройках для оптимизации под конкретный актив или рынок. Рекомендуется тестировать на исторических данных перед использованием в реальной торговле, особенно на волатильных рынках, таких как криптовалюты. Индикатор прост в использовании, но требует настройки для минимизации ложных сигналов на коротких интервалах."
Damien - M5 EMA crossoverIndicateur de croisement des moyennes mobiles en M5 pour XAUUSD, BTCUSD, EURUSD et GBPUSD
Zona Momentum Strategyindikator santai dengan gabungan yang sudah teruji. kita bisa entry buy saat dua kotak hijau plus satu kuning muncul (buy)
Directional Cycle Indicator (DCI) - RSI + MACD + MTF✅ RSI Confirmation:
Apex signals only when RSI is above 50 (momentum slowing down).
Nadir signals only when RSI is below 50 (momentum recovering).
✅ MACD Histogram Confirmation:
Apex requires MACD histogram to be decreasing (momentum weakening).
Nadir requires MACD histogram to be increasing (momentum strengthening).
✅ Multi-Timeframe (MTF) DCI Support:
Uses higher timeframe DCI trend to confirm stronger Apex/Nadir points.
Default higher timeframe = 15m, but this can be adjusted.
✅ Filtered Alerts:
Only confirms Apex & Nadir when RSI, MACD & MTF trend align.
Enhanced CM_Williams_Vix_Fix for CryptoVERSION2
逻辑运算符调整:把 sd and upperBand 改成 sd ? upperBand : na,hp and rangeHigh 改成 hp ? rangeHigh : na 等,以此确保条件判断是布尔类型的。
支撑阻力线绘制:用 line.new 替代 hline 来绘制动态的支撑和阻力线,避免 hline 函数参数类型不匹配的问题。
USDTRY by GoX
You can view your share in the lower window in fixed USD/TL.
Alt pencerede hissenizi Dolar/TL cinsinden sabit şekilde görüntüleye bilirsiniz.