Estrategia Intradía con 3EMAs y BB + RSI 14 PAnalisis Este script en Pine Script versión 6 implementa una estrategia de análisis técnico basada en medias móviles exponenciales (EMAs), Bandas de Bollinger y el Índice de Fuerza Relativa (RSI). Se trata de una configuración útil para el trading intradía, proporcionando herramientas clave para identificar tendencias, volatilidad y condiciones de sobrecompra o sobreventa.detallado con combinacion de indicadores
Chart patterns
fvg2orem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
5 SMAThe Simple Moving Average (SMA) is a type of moving average where each data point is equally weighted. As new data is added, the oldest data point is removed, ensuring that each day in the dataset maintains equal importance.
"Use this if it will help in analyzing your chart."
ATR & CCIThe **ATR % & 14-Day CCI Indicator** displays the **ATR as a percentage** of the closing price and a **14-day CCI** to identify overbought/oversold conditions. ATR % is shown as a number, while CCI highlights momentum shifts.
Bollinger Bands + RSI Strategy//@version=5
strategy("Bollinger Bands + RSI Strategy", overlay=true,
description="This is a trading strategy based on Bollinger Bands and RSI. The strategy generates buy and sell signals based on price action and market momentum. It buys when the price crosses above the lower Bollinger Band while the RSI is below 30 (indicating oversold conditions). It sells when the price crosses below the upper Bollinger Band while the RSI is above 70 (indicating overbought conditions). Positions are closed when the price crosses the middle Bollinger Band (the moving average).")
// Bollinger Bands parameters
length = input.int(20, title="Bollinger Bands Length")
src = input(close, title="Source")
mult = input.float(2.0, title="Bollinger Bands Multiplier")
basis = ta.sma(src, length)
dev = mult * ta.stdev(src, length)
upper_band = basis + dev
lower_band = basis - dev
// RSI parameters
rsi_length = input.int(14, title="RSI Length")
rsi = ta.rsi(src, rsi_length)
// Plot Bollinger Bands
plot(upper_band, color=color.red, linewidth=2, title="Upper Bollinger Band")
plot(lower_band, color=color.green, linewidth=2, title="Lower Bollinger Band")
plot(basis, color=color.blue, linewidth=1, title="Middle Band")
// Buy Condition
buy_condition = ta.crossover(close, lower_band) and rsi < 30
if buy_condition
strategy.entry("Buy", strategy.long)
// Sell Condition
sell_condition = ta.crossunder(close, upper_band) and rsi > 70
if sell_condition
strategy.entry("Sell", strategy.short)
// Exit Conditions (optional: use the middle Bollinger Band for exits)
exit_condition = ta.cross(close, basis)
if exit_condition
strategy.close("Buy")
strategy.close("Sell")
// Optional: Plot RSI for additional insight
hline(70, "Overbought", color=color.red)
hline(30, "Oversold", color=color.green)
plot(rsi, color=color.purple, title="RSI", linewidth=1, offset=-5)
vivek arora bandsthis is based on overbought and oversold conditions. works on all time frames . this is the best
vivek arora bandsThis script is based on bollinger bands .its is based on overbought and oversold conditions and works perfectly fine . its the best and its the best
RSI4DUMPThis script likely warns you before a dump occurs in crypto coins. I have tested it on Ethereum and BTC. I use it instead of a trailing stop loss because it works better during a downtrend. I don't day trade when I receive a DUMP signal.
Good luck!
NguDanIndex VIP📌 Mô tả chỉ báo: NguDanIndex Pro
🚀 NguDanIndex Pro là một chỉ báo kỹ thuật mạnh mẽ, kết hợp RSI, Divergence (Phân kỳ), Hỗ trợ & Kháng cự, và Vùng Điều Chỉnh (Correction Zone) để giúp trader xác định xu hướng và tìm điểm vào lệnh tối ưu.
👉 Dành cho ai?
✔ Scalper / Day Trader – Tìm tín hiệu nhanh và chính xác.
✔ Swing Trader – Xác định điểm đảo chiều để vào lệnh dài hạn.
✔ Holder & Investor – Theo dõi xu hướng thị trường trước khi quyết định giao dịch.
📖 Hướng dẫn sử dụng
🔹 1. RSI & Divergence (Phân kỳ)
RSI (Relative Strength Index) giúp xác định khi nào thị trường đang quá mua (>70) hoặc quá bán (<30).
Phân kỳ RSI (Divergence) giúp phát hiện đảo chiều sớm:
🟢 Phân kỳ tăng (Bullish Divergence - Xanh lá): Khi giá tạo đáy thấp hơn nhưng RSI tạo đáy cao hơn → Báo hiệu khả năng tăng giá.
🔴 Phân kỳ giảm (Bearish Divergence - Đỏ): Khi giá tạo đỉnh cao hơn nhưng RSI tạo đỉnh thấp hơn → Báo hiệu khả năng giảm giá.
🔹 2. Hỗ trợ & Kháng cự (S/R Levels)
✅ Vùng hỗ trợ mạnh (màu xanh lá) → Có thể xuất hiện lực mua.
❌ Vùng kháng cự mạnh (màu đỏ) → Có thể xuất hiện lực bán.
🔹 3. Vùng Điều Chỉnh (Correction Zone)
🟦 Vùng điều chỉnh giá (màu xanh dương nhạt) giúp trader nhận biết giai đoạn giá đang điều chỉnh trước khi tiếp tục xu hướng chính.
Nếu giá chạm vùng này, cẩn trọng với xu hướng ngắn hạn.
🎯 Cách sử dụng trong giao dịch
📌 Chiến lược vào lệnh:
✅ BUY khi:
✔ RSI < 30 + Xuất hiện Bullish Divergence (màu xanh lá).
✔ Giá chạm vùng hỗ trợ mạnh.
✔ Giá vào vùng điều chỉnh nhưng có dấu hiệu bật lên.
❌ SELL khi:
✔ RSI > 70 + Xuất hiện Bearish Divergence (màu đỏ).
✔ Giá chạm vùng kháng cự mạnh.
✔ Giá vào vùng điều chỉnh nhưng có dấu hiệu giảm tiếp.
📌 Kết hợp với các chỉ báo khác:
🔹 EMA / SMA: Xác nhận xu hướng dài hạn.
🔹 MACD: Kiểm tra động lực xu hướng.
🔹 Volume: Xác nhận sức mạnh của tín hiệu.
💡 Lợi ích của chỉ báo
✔ Xác định xu hướng thị trường một cách trực quan.
✔ Phát hiện điểm đảo chiều chính xác với RSI & Divergence.
✔ Tối ưu điểm vào lệnh dựa trên hỗ trợ, kháng cự và vùng điều chỉnh.
✔ Giảm thiểu tín hiệu nhiễu, tập trung vào các vùng quan trọng nhất.
📌 Cảnh báo & Lưu ý
⚠ Không có chỉ báo nào đúng 100%! Luôn kết hợp với quản lý vốn & chiến lược giao dịch.
⚠ Tín hiệu phân kỳ RSI không phải lúc nào cũng chính xác ngay lập tức, cần xác nhận thêm bằng hỗ trợ, kháng cự hoặc khối lượng giao dịch.
🚀 Hãy thử nghiệm trên tài khoản demo trước khi sử dụng trên tài khoản thật!
📢 Nếu bạn thấy chỉ báo hữu ích, hãy bấm Like & Follow để cập nhật những nâng cấp mới nhất! 🚀🔥
💬 Mọi phản hồi & góp ý, hãy để lại bình luận bên dưới!
📊 Chúc bạn giao dịch thành công! 💹💰🚀
Combined UT Bot and Breakout FinderThis indicator works best for scalping US30 and NAS on the 5m chart.
This could also be used on the 30m and 1h chart, set SL below the candle of the signal candle, set tp at nearest zone or draw your fib from the bottom of the signal candle to the close of the candle and set tp at the 1.8 level as your TP.
MyBoxTЭто очень полезная штука. Давай те вместе развивать
Для работы включите 5 минутный интервал
Иногда подвисает. Просто запускаю заново
Gold Price APIGold_mammad sends live chart on this api.i want to test it.just testing and nothing more
Nifty BreakOut HourlyStrategy on Nifty hourly breakouts on either direction.
Considers vwap as well to follow the larger trend.
SL is either the entry candle's low or range low whichever is higher.
Gelişmiş Fiyat Denge Sistemi + Çoklu SAR + TSI Tarama1.Kısa/uzun periyotlar ve doğrusal regresyon uzunluğu ile Gerçek Güç Endeksi ayarlarını yapılandırır.
2.Daha sonra sinyal filtrelemede kullanılan bir matematiksel fonksiyonu tanımlar.
3.Her SAR, yükseliş/düşüş durumları için farklı renkler kullanır.
4.Her SAR, yükseliş/düşüş durumları için farklı renkler kullanır.
5.Dinamik bir denge düzeyi bulmak için sıralanmış fiyatları kullanır.
5.Logaritmik ölçeklendirme ile fiyat oynaklığını birleştirir.
6.Tanh aktivasyonunu kullanarak medyan, denge çizgisi ve kaos faktörünü birleştirir.
7.Fiyat ağırlıklı medyanın üzerine çıktığında tetiklenir.
8.İzlenen tüm zaman dilimlerinde mevcut SAR değerlerini gösteren bir tablo oluşturur.
9.Hücreleri, yükseliş/düşüş SAR konumuna göre renk kodları.
10.Hem medyana hem de TSI momentumuna göre fiyat pozisyonunu değerlendirir.
11.Her iki koşul da karşılandığında uyarılar oluşturur.
ATR Stop Loss & Take Profit這是一個完整的 ATR 停損 & 移動停損 策略筆記,你可以直接抄錄或修改,確保你在交易時能快速參考 🚀
📌 ATR 停損 & 移動停損 策略筆記
1. ATR(Average True Range)是什麼?
• ATR 是衡量市場波動的指標,不預測價格方向,而是告訴你市場的「平均波動範圍」。
• 常用 14 根 K 棒 ATR 來計算市場的波動程度。
📌 公式
TR = \max(當前最高價 - 當前最低價, |當前最高價 - 前一收盤價|, |當前最低價 - 前一收盤價|)
ATR = \frac{\sum TR}{N}
(N 為 ATR 計算週期,常見設為 14)
2. ATR 停損 & 目標獲利設定
✅ 初始停損
設定方式:
\text{初始停損} = \text{入場時 ATR} \times 1.5
• 目的:確保不被隨機波動掃出場
✅ 移動停損(Trailing Stop)
設定方式:
\text{移動停損} = \text{當前價格} - (\text{當前 ATR} \times 1.5)
• 目的:保護已獲利的部位,避免獲利變回虧損
• 隨市場波動調整,讓獲利最大化
✅ 動態目標獲利
設定方式:
\text{動態目標獲利} = \text{入場時 ATR} \times 3
• 目的:隨市場波動調整出場目標,防止過早獲利了結
3. ATR 搭配微型台指期(MTX)交易
項目 設定值(範例)
ATR 時間週期 14(預設值)
停損距離 1.5 × ATR(入場時 ATR)
移動停損 當前價格 - 1.5 × 當前 ATR
目標獲利 3 × 入場時 ATR
🔹 安全 vs 激進
交易風格 ATR 係數設定
更安全 停損 2x ATR,移動停損 1.8x ATR
更激進 停損 1.2x ATR,移動停損 1.5x ATR
4. ATR 停損 & 移動停損 追蹤表
這是一個標準化的交易紀錄表格,用來追蹤 ATR 停損執行效果。
交易編號 進場價格 入場時 ATR 初始停損 (1.5x ATR) 移動停損 (1.5x ATR) 動態目標獲利 (3x ATR) 最終交易結果
1 20000 10 19985 當前價格 - (當前 ATR × 1.5) 20030 待填
2 20100 12 20082 當前價格 - (當前 ATR × 1.5) 20136 待填
3 19950 9 19936.5 當前價格 - (當前 ATR × 1.5) 20022 待填
4 20050 11 20033.5 當前價格 - (當前 ATR × 1.5) 20083 待填
5 20200 13 20180.5 當前價格 - (當前 ATR × 1.5) 20239 待填
📌 5. 交易執行步驟
✅ 進場前
✅ 1. 計算「入場時 ATR」
✅ 2. 設定 初始停損(ATR × 1.5)
✅ 3. 設定 動態目標獲利(ATR × 3)
✅ 進場後
✅ 1. 當市場達到 盈虧比 1:1,將停損移動到成本價
✅ 2. 市場價格突破 2R 時,開始移動停損(當前價格 - 當前 ATR × 1.5)
✅ 3. 市場價格突破 3R 時,部分出場,確保至少 1R 獲利
🎯 6. 總結
✅ ATR 幫助設定 更合理的停損,避免過早出場
✅ 移動停損(Trailing Stop)確保獲利不變虧損
✅ 動態目標獲利 確保交易靈活調整出場點
✅ ATR 係數可調整,依照不同市場條件選擇安全或激進策略
🚀 這份筆記可以幫助你在交易中靈活運用 ATR,確保交易穩定性與獲利空間!
如果你有其他細節想補充或優化,告訴我,我幫你調整!💡
printer:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr:)nbhjjhkjhgjhtrfghfhtrhtrfhtrthr
ICT Strategy - Final//@version=5
indicator("ICT Strategy - Final", overlay=true)
// تنظیمات
var int lookback = 50 // تعداد کندلها برای شناسایی نقدینگی
var float risk_reward_ratio = 2 // نسبت ریسک به ریوارد
var int min_ob_size = 2 // حداقل اندازه اوردربلوک (تعداد کندلها)
// شناسایی نقدینگی (Liquidity)
var float liquidity_high = ta.highest(high, lookback) // بالاترین High در lookback کندل
var float liquidity_low = ta.lowest(low, lookback) // پایینترین Low در lookback کندل
// شناسایی CHoCH (Change of Character)
var bool is_choch = na
is_choch := ta.crossover(close, ta.highest(high, 5)) or ta.crossunder(close, ta.lowest(low, 5))
// شناسایی BOS (Break of Structure)
var bool is_bos = na
is_bos := ta.crossover(high, ta.highest(high, 5)) or ta.crossunder(low, ta.lowest(low, 5))
// شناسایی FVG (Fair Value Gap)
var bool is_fvg = na
is_fvg := (high < low and low > high ) or (low > high and high < low )
// شناسایی اوردربلوکها (Order Blocks)
var float ob_high = na
var float ob_low = na
var string ob_type = na
var int ob_size = 0 // اندازه اوردربلوک (تعداد کندلها)
if (is_choch or is_bos or is_fvg) and close > open and close < open // کندل صعودی پس از کندل نزولی
ob_high := high
ob_low := low
ob_type := "Buy"
ob_size := 1
else if (is_choch or is_bos or is_fvg) and close < open and close > open // کندل نزولی پس از کندل صعودی
ob_high := high
ob_low := low
ob_type := "Sell"
ob_size := 1
else if ob_type == "Buy" and low > ob_low // ادامه اوردربلوک خرید
ob_size += 1
else if ob_type == "Sell" and high < ob_high // ادامه اوردربلوک فروش
ob_size += 1
// فیلتر اوردربلوکهای قوی
var bool is_strong_ob = na
if ob_size >= min_ob_size
is_strong_ob := true
else
is_strong_ob := false
// شناسایی نقاط ورود با فیلتر نویز و نقدینگی
var string entry = na
var float stop_loss = na
var float take_profit = na
if is_strong_ob and ob_type == "Buy" and low > ob_low and close > ob_high and high >= liquidity_high // ورود خرید
entry := "Buy"
stop_loss := ob_low - 1 // حد ضرر کمی پایینتر از اوردربلوک
take_profit := close + (risk_reward_ratio * (close - stop_loss)) // حد سود بر اساس RR
else if is_strong_ob and ob_type == "Sell" and high < ob_high and close < ob_low and low <= liquidity_low // ورود فروش
entry := "Sell"
stop_loss := ob_high + 1 // حد ضرر کمی بالاتر از اوردربلوک
take_profit := close - (risk_reward_ratio * (stop_loss - close)) // حد سود بر اساس RR
// نمایش نقدینگی
plot(liquidity_high, color=color.blue, linewidth=1, title="Liquidity High")
plot(liquidity_low, color=color.blue, linewidth=1, title="Liquidity Low")
// نمایش اوردربلوکهای قوی
plotshape(series=is_strong_ob and ob_type == "Buy", title="Strong Buy OB", location=location.belowbar, color=color.green, style=shape.labelup, text="OB Buy")
plotshape(series=is_strong_ob and ob_type == "Sell", title="Strong Sell OB", location=location.abovebar, color=color.red, style=shape.labeldown, text="OB Sell")
// نمایش سیگنالهای ورود
plotshape(series=entry == "Buy", title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=entry == "Sell", title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// نمایش حد ضرر و حد سود
plot(stop_loss, color=color.red, linewidth=2, title="Stop Loss")
plot(take_profit, color=color.green, linewidth=2, title="Take Profit")
Estrategia Barrido de Liquidez + EMAsDetección de swing highs (H) y swing lows (L).
Confirmación con EMAs, RSI y volumen.
Reglas de entrada/salida y gestión de riesgo.