ক্রয় ও বিক্রয় সিগন্যালগুলি সম্ভাব্য বিপরীত নির্দেশের জন্য RSI ওভারক্রয় / ওভারসোল্ড পয়েন্টগুলির সাথে Ema & Sma এর উপর ভিত্তি করে উচ্চতর সময়সীমার জন্য।
এটি বিদ্যমান ট্রেডে মুনাফা বুকিংয়ের জন্য ব্যবহার করা যেতে পারে এবং নতুন মোমবাতিটি পাশের উপর নির্ভর করে সতর্কতা মোমবাতির উচ্চ / নিম্ন ভাঙলে নতুন অবস্থান নিতে পারে।
১ ঘণ্টার বেশি সময় নিয়ে সেরা কাজ।
ব্যাকটেস্ট
/*backtest start: 2022-04-25 00:00:00 end: 2022-05-24 23:59:00 period: 1m 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/ // © nicks1008 //@version=4 study("SWING CALLS",title="SMA call buy/sale",shorttitle = "SWING CALL",precision=1, overlay=true) ema_value=input(5) sma_value=input(50) ema1=ema(close,ema_value) sma2= sma(close,sma_value) rs=rsi(close,14) mycolor= iff(rs>=85 or rs<=15,color.yellow,iff(low> sma2,color.lime,iff(high<sma2,color.red,color.yellow))) hl=input(80,title="Overbought limit of RSI",step=1) ll=input(20,title="Oversold limit of RSI",step=1) buyexit= crossunder(rs,hl) sellexit=crossover(rs,ll) plot(sma2,title="Long SMA",color=mycolor,linewidth=2,transp=40) plotshape(buyexit,title="RSI alert Bearish", style=shape.triangledown, location=location.abovebar, color=color.teal, text="↓\n ↓") plotshape(sellexit,title="RSI alert Bullish", style=shape.triangleup, location=location.belowbar, color=color.teal, text="↑ \n ↑") sellcall= crossover(sma2,ema1)and open>close buycall=crossunder (sma2,ema1)and high>sma2 plotshape(buycall,title="BuyShape", style=shape.labelup, location=location.belowbar, color=color.aqua, text="B",textcolor=color.white) plotshape(sellcall,title="SellShape", style=shape.labeldown, location=location.abovebar, color=color.red,transp=20, text="S",textcolor=color.black) alertcondition(buyexit or sellexit,title="Reversal", message="Possible Reversal on Swing Signal Alert") alertcondition(buycall or sellcall,title="Buy/Sale Swing Signal", message="Swing Signal Entry Alert") if buycall strategy.entry("Enter Long", strategy.long) else if sellcall strategy.entry("Enter Short", strategy.short)