কৌশলটি স্টোকাস্টিক %D হিসাবে একটি 14 পেরিওড স্টোকাস্টিক %K লাইন এবং একটি 3 পেরিওড সহজ চলমান গড় লাইন প্লট করে। %D এর উপরে %K এর একটি আপক্রসকে একটি উত্থান সংকেত হিসাবে বিবেচনা করা হয়। %D এর নীচে %K এর একটি ডাউনক্রস একটি হ্রাসী পদক্ষেপের সংকেত দেয়। নির্দিষ্ট প্রবেশ এবং প্রস্থান নিয়মগুলি নীচে সংজ্ঞায়িত করা হয়েছেঃ
লং এন্ট্রিঃ %K %D এর উপরে অতিক্রম করে যখন %K 20 এর নিচে থাকে দীর্ঘ প্রস্থানঃ %K %D এর নিচে অতিক্রম করে যখন %K 80 এর উপরে থাকে সংক্ষিপ্ত প্রবেশঃ %K %D এর নিচে অতিক্রম করে যখন %K 80 এর উপরে থাকে সংক্ষিপ্ত প্রস্থানঃ %K %D এর উপরে অতিক্রম করে যখন %K 20 এর নিচে থাকে
এই কৌশলটি স্টোক্যাস্টিক ব্যবহার করে ওভারকুপ / ওভারসোল্ড স্তরগুলি সনাক্ত করে সম্ভাব্য টার্নিং পয়েন্টগুলি ক্যাপচার করে। প্রবণতা অনুসরণকারী কৌশলগুলির তুলনায়, এটি পাল্টা পয়েন্টগুলিতে বৃহত্তর পদক্ষেপগুলি ক্যাপচার করার লক্ষ্য রাখে। প্যারামিটার টিউনিং, সংকেত ফিল্টারিংয়ের মাধ্যমে আরও উন্নতি কৌশল স্থিতিশীলতা উন্নত করতে পারে। ভারসাম্যপূর্ণ ঝুঁকি পরিচালনার সাথে, বিকল্প-কেন্দ্রিক পদ্ধতি উচ্চতর সম্ভাব্য পুরষ্কারের জন্য দক্ষ মূলধন মোতায়েনের অনুমতি দেয়।
/*backtest start: 2024-01-04 00:00:00 end: 2024-02-03 00:00:00 period: 2h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Stochastic Weekly Options Strategy", overlay=true, shorttitle="WOS") // Stochastic settings K = ta.stoch(close, high, low, 14) D = ta.sma(K, 3) // Entry and exit conditions longEntry = ta.crossover(K, 20) longExit = ta.crossunder(K, 80) shortEntry = ta.crossunder(K, 80) shortExit = ta.crossover(K, 20) // Strategy execution strategy.entry("Long", strategy.long, when=longEntry) strategy.close("Long", when=longExit) strategy.entry("Short", strategy.short, when=shortEntry) strategy.close("Short", when=shortExit) // Alert conditions alertcondition(longEntry, title="Long Entry Alert", message="Stochastic bullish crossover! Consider buying a call option.") alertcondition(longExit, title="Long Exit Alert", message="Stochastic bearish crossover! Consider selling the call option.") alertcondition(shortEntry, title="Short Entry Alert", message="Stochastic bearish crossover! Consider buying a put option.") alertcondition(shortExit, title="Short Exit Alert", message="Stochastic bullish crossover! Consider selling the put option.") // Plotting shapes for buy and sell signals plotshape(longEntry, title="Calls Entry Label", color=color.new(color.green, 25), textcolor=color.white, style=shape.triangleup, text="Calls", location=location.belowbar, size=size.small) plotshape(longExit, title="Calls Exit Label", color=color.new(color.green, 25), textcolor=color.white, style=shape.circle, text="Exit", location=location.belowbar, size=size.small) plotshape(shortEntry, title="Puts Entry Label", color=color.new(color.red, 25), textcolor=color.white, style=shape.triangledown, text="Puts", location=location.abovebar, size=size.small) plotshape(shortExit, title="Puts Exit Label", color=color.new(color.red, 25), textcolor=color.white, style=shape.circle, text="Exit", location=location.abovebar, size=size.small) // Plotting plot(K, color=color.blue, title="Stochastic %K") plot(D, color=color.red, title="Stochastic %D") hline(80, "Overbought", color=color.red) hline(20, "Oversold", color=color.green)