
यह रणनीति एक बहु-समय-फ्रेम रणनीति है जिसमें ट्रेंड ट्रैकिंग और ट्रेडिंग को तोड़ना शामिल है, ईएमए क्रॉसिंग को ट्रेंड फिल्टर के रूप में, आरएसआई को गतिशीलता की पुष्टि करने वाले संकेतक के रूप में और एटीआर को गतिशील जोखिम प्रबंधन के लिए। यह रणनीति एक अलग अलर्ट सिस्टम के माध्यम से सटीक प्रवेश और निकास सिग्नल प्रबंधन को लागू करती है, और प्रतिशत-आधारित धन प्रबंधन दृष्टिकोण का उपयोग करके जोखिम को नियंत्रित करती है।
यह एक संरचित सख्त प्रवृत्ति ट्रैकिंग रणनीति है, जो कई तकनीकी संकेतकों के सत्यापन के माध्यम से संकेत की विश्वसनीयता को बढ़ाता है, वैज्ञानिक धन प्रबंधन प्रणाली प्रभावी रूप से डाउनग्रेड जोखिम को नियंत्रित करती है। रणनीति विशेष रूप से प्रवृत्ति-स्पष्ट बाजार वातावरण के लिए अनुकूल है, जो कि उतार-चढ़ाव के लिए उपयुक्त किस्मों पर सबसे अच्छा प्रदर्शन करती है। पैरामीटर को अनुकूलित करने और बाजार की स्थिति की पहचान करने वाले मॉड्यूल को जोड़ने के लिए अनुकूलन तंत्र को और अनुकूलित करके रणनीति की स्थिरता और अनुकूलन क्षमता को काफी बढ़ाया जा सकता है।
// @version=5
strategy("Trend Breakout Strategy with Separated Alerts", overlay=true, initial_capital=10, default_qty_type=strategy.percent_of_equity, default_qty_value=100)
// --- Parameters ---
var float risk_per_trade = 0.02 // 2% risk per trade
var int ema_fast = 9
var int ema_slow = 21
var int rsi_length = 14
var int atr_length = 14
var float atr_multiplier_sl = 2.0 // ATR multiplier for SL
var float tp_ratio = 3.0 // TP to SL ratio = 3:1
var float trail_trigger_ratio = 0.5 // Trailing stop triggers at 50% of TP
// --- Indicators ---
ema9 = ta.ema(close, ema_fast)
ema21 = ta.ema(close, ema_slow)
rsi = ta.rsi(close, rsi_length)
atr = ta.atr(atr_length)
// --- Trend Filter ---
bull_trend = ta.crossover(ema9, ema21) or (ema9 > ema21)
bear_trend = ta.crossunder(ema9, ema21) or (ema9 < ema21)
// --- Entry Conditions ---
long_entry = bull_trend and rsi > 50 and close > high[1]
short_entry = bear_trend and rsi < 50 and close < low[1]
// --- Position Size Calculation ---
equity = strategy.equity
stop_loss_distance = atr * atr_multiplier_sl
risk_amount = equity * risk_per_trade
position_size = risk_amount / stop_loss_distance
// --- SL and TP Levels ---
long_sl = close - stop_loss_distance
long_tp = close + stop_loss_distance * tp_ratio
short_sl = close + stop_loss_distance
short_tp = close - stop_loss_distance * tp_ratio
// --- Trailing Stop (activated after 50% of TP) ---
trail_points = atr * atr_multiplier_sl * tp_ratio * trail_trigger_ratio
trail_offset = atr * atr_multiplier_sl
// --- Entries ---
if long_entry
strategy.entry("Long", strategy.long, qty=position_size)
strategy.exit("Long Exit", "Long", stop=long_sl, limit=long_tp, trail_points=trail_points, trail_offset=trail_offset)
if short_entry
strategy.entry("Short", strategy.short, qty=position_size)
strategy.exit("Short Exit", "Short", stop=short_sl, limit=short_tp, trail_points=trail_points, trail_offset=trail_offset)
// --- Alert Conditions ---
var bool long_opened = false
var bool short_opened = false
// Track position opening
long_open_alert = long_entry and not long_opened
short_open_alert = short_entry and not short_opened
// Track position closing
long_close_alert = long_opened and strategy.position_size == 0
short_close_alert = short_opened and strategy.position_size == 0
// Update position states
if long_entry
long_opened := true
if short_entry
short_opened := true
if strategy.position_size == 0
long_opened := false
short_opened := false
// --- Alerts ---
alertcondition(long_open_alert, title="Open Long", message='{"action":"buy","symbol":"{{ticker}}","price":{{close}}}')
alertcondition(long_close_alert, title="Close Long", message='{"action":"close_long","symbol":"{{ticker}}","price":{{close}}}')
alertcondition(short_open_alert, title="Open Short", message='{"action":"sell","symbol":"{{ticker}}","price":{{close}}}')
alertcondition(short_close_alert, title="Close Short", message='{"action":"close_short","symbol":"{{ticker}}","price":{{close}}}')
// --- Visualization ---
plot(ema9, color=color.blue, title="EMA9")
plot(ema21, color=color.red, title="EMA21")
plotshape(long_open_alert, title="Long Entry", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(short_open_alert, title="Short Entry", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)