এই কৌশলটির মূল ধারণা হ'ল বাজারের পলব্যাকের পরে রিবাউন্ডের সুযোগটি ধরার জন্য বিভিন্ন সময়ের সাথে দুটি চলমান গড় ব্যবহার করা। যখন দাম দীর্ঘমেয়াদী চলমান গড়ের উপরে থাকে এবং স্বল্পমেয়াদী চলমান গড়ের দিকে ফিরে আসে, তখন কৌশলটি একটি দীর্ঘ অবস্থান খোলে এবং যখন দাম স্বল্পমেয়াদী চলমান গড়ের উপরে ফিরে আসে বা স্টপ-লস মূল্যকে আঘাত করে তখন অবস্থানটি বন্ধ করে দেয়। প্রবণতার মধ্যে পলব্যাকের সময় কেনার সুযোগগুলি সন্ধান করে কৌশলটি ট্রেন্ডিং বাজারগুলি থেকে লাভ অর্জনের লক্ষ্য রাখে।
মুভিং এভারেজ পুলব্যাক ট্র্যাকিং কৌশলটি বিভিন্ন সময়কালের দুটি মুভিং এভারেজের আপেক্ষিক অবস্থান ব্যবহার করে একটি আপট্রেন্ডে দামের পুলব্যাকের সময় দীর্ঘ ব্যবসায়ের সুযোগগুলি ক্যাপচার করে। এই কৌশলটি ট্রেন্ডিং মার্কেটের জন্য উপযুক্ত, এবং উপযুক্ত প্যারামিটার সেটিং এবং স্টপ-লস সহ, এটি ট্রেন্ডিং শর্তে স্থিতিশীল রিটার্ন তৈরি করতে পারে। তবে, কৌশলটি অস্থির বাজারে এবং ট্রেন্ড বিপরীতের সময় নির্দিষ্ট ঝুঁকিগুলির মুখোমুখি হয়। আরও সূচক প্রবর্তন, অবস্থান আকারের অনুকূলকরণ, গতিশীল স্টপ-লস বাস্তবায়ন এবং অন্যান্য পদ্ধতির মাধ্যমে এই কৌশলটির কর্মক্ষমতা এবং স্থিতিশীলতা আরও উন্নত করা যেতে পারে।
/*backtest start: 2023-03-22 00:00:00 end: 2024-03-27 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © contapessoal_ivan // @version=5 strategy("Pullback Strategy", overlay=true, initial_capital=1000, default_qty_type=strategy.percent_of_equity, default_qty_value=100, // 100% of balance invested on each trade commission_type=strategy.commission.cash_per_contract, commission_value=0.005) // Interactive Brokers rate // Get user input i_ma1 = input.int(title="MA 1 Length", defval=200, step=10, group="Strategy Parameters", tooltip="Long-term MA") i_ma2 = input.int(title="MA 2 Length", defval=10, step=10, group="Strategy Parameters", tooltip="Short-term MA") i_stopPercent = input.float(title="Stop Loss Percent", defval=0.10, step=0.1, group="Strategy Parameters", tooltip="Failsafe Stop Loss Percent Decline") i_lowerClose = input.bool(title="Exit On Lower Close", defval=false, group="Strategy Parameters", tooltip="Wait for a lower-close before exiting above MA2") i_startTime = input(title="Start Filter", defval=timestamp("26 Jan 2023 00:00 +0000"), group="Time Filter", tooltip="Start date & time to begin searching for setups") i_endTime = input(title="End Filter", defval=timestamp("26 Mar 2024 23:59 +0000"), group="Time Filter", tooltip="End date & time to stop searching for setups") // Get indicator values ma1 = ta.sma(close, i_ma1) ma2 = ta.sma(close, i_ma2) // Check filter(s) f_dateFilter = true // Check buy/sell conditions var float buyPrice = 0 buyCondition = close > ma1 and close < ma2 and strategy.position_size == 0 and f_dateFilter sellCondition = close > ma2 and strategy.position_size > 0 and (not i_lowerClose or close < low[1]) stopDistance = strategy.position_size > 0 ? ((buyPrice - close) / close) : na stopPrice = strategy.position_size > 0 ? buyPrice - (buyPrice * i_stopPercent) : na stopCondition = strategy.position_size > 0 and stopDistance > i_stopPercent // Enter positions if buyCondition strategy.entry(id="Long", direction=strategy.long) if buyCondition[1] buyPrice := open // Exit positions if sellCondition or stopCondition strategy.close(id="Long", comment="Exit" + (stopCondition ? "SL=true" : "")) buyPrice := na // Draw pretty colors plot(buyPrice, color=color.lime, style=plot.style_linebr) plot(stopPrice, color=color.red, style=plot.style_linebr, offset=-1) plot(ma1, color=color.blue) plot(ma2, color=color.orange)