دوہری اشارے کی پیشرفت کی حکمت عملی میں RSI اشارے اور اختتامی قیمت کے اشارے کو یکجا کیا گیا ہے تاکہ تجارت کے لئے کم خرید اور اعلی فروخت حاصل کی جاسکے۔ یہ حکمت عملی کم واپسی کے خطرے کے ساتھ آسان اور عملی ہے اور درمیانی اور طویل مدتی ہولڈز کے لئے موزوں ہے۔
حکمت عملی بنیادی طور پر مندرجہ ذیل دو اشارے پر مبنی ہے:
دوہری اشارے کی ترقی کی حکمت عملی کے مندرجہ ذیل فوائد ہیں:
اس حکمت عملی میں کچھ خطرات بھی ہیں:
مذکورہ بالا خطرات کو آر ایس آئی پیرامیٹرز کی اصلاح ، مارکیٹ کے حالات کا جائزہ اور فیصلے کے لئے دیگر اشارے کے استعمال سے بچا جاسکتا ہے۔
اس حکمت عملی کی اصلاح کی اہم سمتیں مندرجہ ذیل پہلوؤں پر مرکوز ہیں:
/*backtest start: 2023-12-01 00:00:00 end: 2023-12-31 23:59:59 period: 1h basePeriod: 15m 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/ // © hobbiecode // If RSI(2) is less than 15, then enter at the close. // Exit on close if today’s close is higher than yesterday’s high. //@version=5 strategy("Hobbiecode - RSI + Close previous day", overlay=true) // RSI parameters rsi_period = 2 rsi_lower = 15 // Calculate RSI rsi_val = ta.rsi(close, rsi_period) // Check if RSI is lower than the defined threshold if (rsi_val < rsi_lower) strategy.entry("Buy", strategy.long) // Check if today's close is higher than yesterday's high if (strategy.position_size > 0 and close > ta.highest(high[1], 1)) strategy.close("Buy") // Plot RSI on chart plot(rsi_val, title="RSI", color=color.red) hline(rsi_lower, title="Oversold Level", color=color.blue)