এটি একটি প্রস্থান কৌশল যা আংশিক লাভ গ্রহণের সাথে একটি ধাপে ধাপে ট্রেলিং স্টপ ব্যবহার করে। এটি প্রথম লাভের স্তরে পৌঁছানোর পরে স্টপ লসকে ব্রেক ইভেনে সরিয়ে দেয় এবং দ্বিতীয় স্তরে পৌঁছানোর পরে প্রথম লাভের দিকে চলে যায়। এটি লাভের সম্ভাবনা বজায় রেখে কিছু লাভকে লক করার অনুমতি দেয়।
এই কৌশলটির মূল উপাদানগুলি হল:
বিশেষ করে, এটি প্রথমে 100 পয়েন্টের স্টপ লস সেট করে এবং 100/200/300 পয়েন্টে মুনাফা নেয়।curProfitInPts
এই ফাংশনটি বর্তমান মূল্য এবং প্রবেশ মূল্যের উপর ভিত্তি করে বর্তমান মুনাফা গণনা করে।calcStopLossPrice
ফাংশনটি স্টপ লস মূল্যকে পয়েন্ট দূরত্বের ভিত্তিতে গণনা করে।
মূল যুক্তি হচ্ছেgetCurrentStage
ফাংশন যা চেক করে যে একটি অবস্থান আছে কিনা এবং যদি মুনাফা প্রতিটি লাভের স্তর অতিক্রম করেছে, যদি সত্য হয় তবে পর্যায়ে অগ্রসর হয়। উদাহরণস্বরূপ, স্টেজ 2 100 পয়েন্ট মুনাফা পরে এবং স্টেজ 3 200 পয়েন্ট মুনাফা পরে পৌঁছেছে।
অবশেষে, স্টপ লসটি পর্যায় অনুসারে সংশোধন করা হয়। পর্যায় 1 মূল স্টপ ব্যবহার করে, পর্যায় 2 ব্রেকএভেন, এবং পর্যায় 3 প্রথম লাভের স্তর অনুসরণ করে।
এই ধাপে ধাপে ট্রেলিং স্টপ কৌশলটির সুবিধাঃ
কিছু ঝুঁকি বিবেচনা করা উচিতঃ
এই কৌশলকে উন্নত করার কিছু উপায়ঃ
/*backtest start: 2023-11-20 00:00:00 end: 2023-11-27 00:00:00 period: 3m basePeriod: 1m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © adolgov // @description // when tp1 is reached, sl is moved to break-even // when tp2 is reached, sl is moved to tp1 // when tp3 is reached - exit //@version=4 strategy("Stepped trailing strategy example", overlay=true) // random entry condition longCondition = crossover(sma(close, 14), sma(close, 28)) if (longCondition) strategy.entry("My Long Entry Id", strategy.long) // sl & tp in points sl = input(100) tp1 = input(100) tp2 = input(200) tp3 = input(300) curProfitInPts() => if strategy.position_size > 0 (high - strategy.position_avg_price) / syminfo.mintick else if strategy.position_size < 0 (strategy.position_avg_price - low) / syminfo.mintick else 0 calcStopLossPrice(OffsetPts) => if strategy.position_size > 0 strategy.position_avg_price - OffsetPts * syminfo.mintick else if strategy.position_size < 0 strategy.position_avg_price + OffsetPts * syminfo.mintick else 0 calcProfitTrgtPrice(OffsetPts) => calcStopLossPrice(-OffsetPts) getCurrentStage() => var stage = 0 if strategy.position_size == 0 stage := 0 if stage == 0 and strategy.position_size != 0 stage := 1 else if stage == 1 and curProfitInPts() >= tp1 stage := 2 else if stage == 2 and curProfitInPts() >= tp2 stage := 3 stage stopLevel = -1. profitLevel = calcProfitTrgtPrice(tp3) // based on current stage set up exit // note: we use same exit ids ("x") consciously, for MODIFY the exit's parameters curStage = getCurrentStage() if curStage == 1 stopLevel := calcStopLossPrice(sl) strategy.exit("x", loss = sl, profit = tp3, comment = "sl or tp3") else if curStage == 2 stopLevel := calcStopLossPrice(0) strategy.exit("x", stop = stopLevel, profit = tp3, comment = "breakeven or tp3") else if curStage == 3 stopLevel := calcStopLossPrice(-tp1) strategy.exit("x", stop = stopLevel, profit = tp3, comment = "tp1 or tp3") else strategy.cancel("x") // this is debug plots for visulalize TP & SL levels plot(stopLevel > 0 ? stopLevel : na, style = plot.style_linebr) plot(profitLevel > 0 ? profitLevel : na, style = plot.style_linebr)