यह एक व्यापक ट्रेडिंग रणनीति है जो कई चलती औसत, प्रवृत्ति के बाद, संरचना ब्रेकआउट और गति संकेतक को जोड़ती है। यह रणनीति मूल्य संरचना ब्रेकआउट और पुलबैक प्रविष्टियों को शामिल करते हुए कई समय सीमाओं में रुझानों का विश्लेषण करके ट्रेडिंग संकेत निर्धारित करती है। यह जोखिम प्रबंधन के लिए निश्चित स्टॉप-लॉस और लाभ लेने के लक्ष्यों का उपयोग करती है और ट्रेडिंग सटीकता को बढ़ाने के लिए कई सत्यापन तंत्र का उपयोग करती है।
यह रणनीति बाजार के रुझानों को निर्धारित करने के लिए तीन घातीय चलती औसत (EMA25, EMA50, और EMA200) का उपयोग करती है। जब कीमत EMA200 से ऊपर होती है और EMA200 ऊपर की ओर ढलती है, तो एक अपट्रेंड की पहचान की जाती है; इसके विपरीत एक डाउनट्रेंड का संकेत देता है। प्रवृत्ति की दिशा निर्धारित करने के बाद, रणनीति EMA25 या EMA50 तक मूल्य पुलबैक की तलाश करती है। इसके अलावा, रणनीति को गति की दिशा की पुष्टि करने के लिए हाल के उच्च या निम्न ब्रेकआउट और शुरुआती कीमतों के सापेक्ष समापन कीमतों की स्थिति की पुष्टि की आवश्यकता होती है। आरएसआई संकेतक एक अतिरिक्त फ़िल्टर के रूप में कार्य करता है, जिसमें खरीद संकेतों के लिए आरएसआई 50 से ऊपर और बिक्री संकेतों के लिए 50 से नीचे की आवश्यकता होती है।
यह एक अच्छी तरह से डिज़ाइन की गई व्यापक ट्रेडिंग रणनीति है जो कई तकनीकी संकेतकों के समन्वित उपयोग के माध्यम से प्रभावी रूप से ट्रेडिंग अवसरों और जोखिम नियंत्रण को संतुलित करती है। रणनीति की मुख्य ताकत इसके सख्त कई सत्यापन तंत्र में निहित है, जो ट्रेडिंग सफलता दरों में सुधार करने में मदद करता है। जबकि अनुकूलन के लिए क्षेत्र हैं, कुल मिलाकर, यह पता लगाने के लिए एक सार्थक रणनीति ढांचे का प्रतिनिधित्व करता है।
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-27 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Custom Buy/Sell Strategy", overlay=true) // Input parameters ema25 = ta.ema(close, 25) ema50 = ta.ema(close, 50) ema200 = ta.ema(close, 200) rsi = ta.rsi(close, 14) sl_pips = 10 tp_pips = 15 // Convert pips to price units sl_price_units = sl_pips * syminfo.pointvalue tp_price_units = tp_pips * syminfo.pointvalue // Define conditions for buy and sell signals uptrend_condition = ema200 < close and ta.rising(ema200, 1) downtrend_condition = ema200 > close and ta.falling(ema200, 1) pullback_to_ema25 = low <= ema25 pullback_to_ema50 = low <= ema50 pullback_condition = pullback_to_ema25 or pullback_to_ema50 break_of_structure = high > ta.highest(high, 5)[1] candle_imbalance = close > open buy_condition = uptrend_condition and pullback_condition and rsi > 50 and break_of_structure and candle_imbalance pullback_to_ema25_sell = high >= ema25 pullback_to_ema50_sell = high >= ema50 pullback_condition_sell = pullback_to_ema25_sell or pullback_to_ema50_sell break_of_structure_sell = low < ta.lowest(low, 5)[1] candle_imbalance_sell = close < open sell_condition = downtrend_condition and pullback_condition_sell and rsi < 50 and break_of_structure_sell and candle_imbalance_sell // Plot signals on the chart plotshape(series=buy_condition, location=location.belowbar, color=color.green, style=shape.labelup, text="BUY", size=size.large) plotshape(series=sell_condition, location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL", size=size.large) // Calculate stop loss and take profit levels for buy signals var float buy_sl = na var float buy_tp = na if buy_condition and strategy.position_size == 0 buy_sl := close - sl_price_units buy_tp := close + tp_price_units strategy.entry("Buy", strategy.long) strategy.exit("TP/SL Buy", from_entry="Buy", limit=buy_tp, stop=buy_sl) label.new(bar_index, high, text="Entry: " + str.tostring(close) + "\nSL: " + str.tostring(buy_sl) + "\nTP: " + str.tostring(buy_tp), style=label.style_label_up, color=color.green, textcolor=color.white, size=size.small) // Calculate stop loss and take profit levels for sell signals var float sell_sl = na var float sell_tp = na if sell_condition and strategy.position_size == 0 sell_sl := close + sl_price_units sell_tp := close - tp_price_units strategy.entry("Sell", strategy.short) strategy.exit("TP/SL Sell", from_entry="Sell", limit=sell_tp, stop=sell_sl) label.new(bar_index, low, text="Entry: " + str.tostring(close) + "\nSL: " + str.tostring(sell_sl) + "\nTP: " + str.tostring(sell_tp), style=label.style_label_down, color=color.red, textcolor=color.white, size=size.small) // // Plot stop loss and take profit levels for buy signals // if not na(buy_sl) // line.new(x1=bar_index, y1=buy_sl, x2=bar_index + 1, y2=buy_sl, color=color.red, width=1) // if not na(buy_tp) // line.new(x1=bar_index, y1=buy_tp, x2=bar_index + 1, y2=buy_tp, color=color.green, width=1) // // Plot stop loss and take profit levels for sell signals // if not na(sell_sl) // line.new(x1=bar_index, y1=sell_sl, x2=bar_index + 1, y2=sell_sl, color=color.red, width=1) // if not na(sell_tp) // line.new(x1=bar_index, y1=sell_tp, x2=bar_index + 1, y2=sell_tp, color=color.green, width=1)