
यह रणनीतियाँ बाजार में उतार-चढ़ाव की पहचान करने के लिए Pivot Points पर आधारित होती हैं और इस आधार पर ट्रेड करती हैं। जब बाज़ार बायीं ओर 4 K लाइनों के भीतर Pivot Points High (Pivot High) होता है, तो रणनीतियाँ अधिक पोजीशन खोलती हैं; जब बायीं ओर 4 K लाइनों के भीतर Pivot Points Low (Pivot Low) होता है, तो रणनीतियाँ खाली होती हैं। रणनीति का स्टॉप लॉस खोलने की कीमत के ऊपर और नीचे न्यूनतम मूल्य परिवर्तन इकाई (syminfo.mintick) पर सेट किया जाता है। रणनीति के बाहर निकलने की दो शर्तें होती हैंः 1) जब अगले विपरीत दिशा में Pivot Points फ्लैश पोजीशन होते हैं; 2) जब फ्लोट लॉस 30% फ्लैश पोजीशन तक पहुंचता है।
रणनीति के पास कुछ सैद्धांतिक आधार और व्यावहारिक मूल्य है, लेकिन अक्षीय बिंदु सूचक की सीमाओं के कारण, रणनीति को वास्तविक संचालन में कुछ जोखिमों और चुनौतियों का सामना करना पड़ सकता है। अक्षीय बिंदु सूचक के प्रकार, पैरामीटर, फ़िल्टरिंग स्थितियों, स्टॉप लॉस आदि को अनुकूलित करके, रणनीति की स्थिरता और लाभप्रदता को और बढ़ाने की उम्मीद है।
/*backtest
start: 2023-04-24 00:00:00
end: 2024-04-29 00:00:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("Pivot Reversal Strategy with Pivot Exit", overlay=true)
leftBars = input(4)
rightBars = input(2)
var float dailyEquity = na
// Reset equity to $10,000 at the beginning of each day
isNewDay = ta.change(time("D")) != 0
if (isNewDay)
dailyEquity := 10000
// Calculate pivot highs and lows
swh = ta.pivothigh(leftBars, rightBars)
swl = ta.pivotlow(leftBars, rightBars)
// Define long entry condition
swh_cond = not na(swh)
hprice = 0.0
hprice := swh_cond ? swh : hprice[1]
le = false
le := swh_cond ? true : (le[1] and high > hprice ? false : le[1])
// Enter long position if long entry condition is met
if (le)
strategy.entry("PivRevLE", strategy.long, comment="EnterLong", stop=hprice + syminfo.mintick)
// Define short entry condition
swl_cond = not na(swl)
lprice = 0.0
lprice := swl_cond ? swl : lprice[1]
se = false
se := swl_cond ? true : (se[1] and low < lprice ? false : se[1])
// Enter short position if short entry condition is met
if (se)
strategy.entry("PivRevSE", strategy.short, comment="EnterShort", stop=lprice - syminfo.mintick)
// Exit condition: Exit at the next pivot point
exitAtNextPivot() =>
if strategy.opentrades > 0
if strategy.position_size > 0
// Exiting long position at next pivot low
if not na(swl)
strategy.exit("ExitLong", "PivRevLE", stop=swl - syminfo.mintick)
else
// Exiting short position at next pivot high
if not na(swh)
strategy.exit("ExitShort", "PivRevSE", stop=swh + syminfo.mintick)
// Call exitAtNextPivot function
exitAtNextPivot()
// Exit condition: Exit if profit is less than 30%
exitIfProfitLessThanThirtyPercent() =>
if strategy.opentrades > 0
if strategy.position_size > 0
// Calculate profit percentage for long position
profit_percentage_long = (close - strategy.position_avg_price) / strategy.position_avg_price * 100
// Exiting long position if profit is less than 30%
if profit_percentage_long < -30
strategy.close("PivRevLE")
else
// Calculate profit percentage for short position
profit_percentage_short = (strategy.position_avg_price - close) / strategy.position_avg_price * 100
// Exiting short position if profit is less than 30%
if profit_percentage_short < -30
strategy.close("PivRevSE")
// Call exitIfProfitLessThanThirtyPercent function
exitIfProfitLessThanThirtyPercent()