यह रणनीति समतल हेकिन आशी मोमबत्तियों पर आधारित एक प्रवृत्ति-अनुसरण प्रणाली है। उच्च समय सीमा पर हेकिन आशी मोमबत्तियों की गणना करके और उन्हें कम समय सीमा पर व्यापारिक निर्णयों पर लागू करके, यह प्रभावी रूप से बाजार शोर को कम करता है। यह रणनीति लचीली ट्रेडिंग दिशा विकल्प प्रदान करती है, केवल लंबी, केवल छोटी या द्विदिशात्मक ट्रेडिंग की अनुमति देती है, और पूरी तरह से स्वचालित ट्रेडिंग के लिए स्टॉप-लॉस और टेक-प्रॉफिट फ़ंक्शन को एकीकृत करती है।
मुख्य तर्क प्रवृत्तियों की पहचान करने के लिए उच्च समय सीमाओं पर हेकिन आशि मोमबत्तियों की चिकनाई विशेषताओं का उपयोग करता है। हेकिन आशि मोमबत्तियां प्रभावी रूप से बाजार शोर को फ़िल्टर करती हैं और शुरुआती और समापन कीमतों की चलती औसत गणना के माध्यम से प्रमुख रुझानों को उजागर करती हैं। सिस्टम केवल लंबे मोड में लंबी स्थिति में प्रवेश करता है जब हरी मोमबत्तियां दिखाई देती हैं, जो एक अपट्रेंड को इंगित करती हैं, और केवल कम मोड में छोटी स्थिति में प्रवेश करती हैं जब लाल मोमबत्तियां दिखाई देती हैं, जो एक डाउनट्रेंड को इंगित करती हैं। रणनीति में प्रतिशत-आधारित स्टॉप-लॉस और ले-प्रॉफिट तंत्र भी शामिल हैं जो जोखिम को नियंत्रित करने और लाभ में लॉक करने में मदद करते हैं।
यह रणनीति प्रभावी रूप से बहु-समय सीमा हेकिन आशी संकेतकों की चिकनी विशेषताओं के माध्यम से बाजार के रुझानों को पकड़ती है जबकि व्यापक जोखिम प्रबंधन तंत्र के माध्यम से ड्रॉडाउन को नियंत्रित करती है। रणनीति की लचीलापन और स्केलेबिलिटी इसे अच्छा व्यावहारिक मूल्य देती है, और निरंतर अनुकूलन और सुधार के माध्यम से, यह विभिन्न बाजार वातावरण के अनुकूल हो सकती है। जबकि कुछ जोखिम मौजूद हैं, उचित पैरामीटर सेटिंग और जोखिम प्रबंधन के माध्यम से स्थिर व्यापार प्रदर्शन प्राप्त किया जा सकता है।
/*backtest start: 2024-11-10 00:00:00 end: 2024-12-09 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Optimized Heikin Ashi Strategy with Buy/Sell Options", overlay=true) // User inputs for customizing backtest settings startDate = input(timestamp("2023-01-01 00:00"), title="Backtest Start Date", tooltip="Start date for the backtest") endDate = input(timestamp("2024-01-01 00:00"), title="Backtest End Date", tooltip="End date for the backtest") // Input for Heikin Ashi timeframe optimization ha_timeframe = input.timeframe("D", title="Heikin Ashi Timeframe", tooltip="Choose the timeframe for Heikin Ashi candles") // Inputs for optimizing stop loss and take profit use_stop_loss = input.bool(true, title="Use Stop Loss") stop_loss_percent = input.float(2.0, title="Stop Loss (%)", minval=0.0, tooltip="Set stop loss percentage") use_take_profit = input.bool(true, title="Use Take Profit") take_profit_percent = input.float(4.0, title="Take Profit (%)", minval=0.0, tooltip="Set take profit percentage") // Input to choose Buy or Sell trade_type = input.string("Buy Only", options=["Buy Only", "Sell Only"], title="Trade Type", tooltip="Choose whether to only Buy or only Sell") // Heikin Ashi calculation on a user-defined timeframe ha_open = request.security(syminfo.tickerid, ha_timeframe, ta.sma(open, 2), barmerge.gaps_off, barmerge.lookahead_on) ha_close = request.security(syminfo.tickerid, ha_timeframe, ta.sma(close, 2), barmerge.gaps_off, barmerge.lookahead_on) ha_high = request.security(syminfo.tickerid, ha_timeframe, math.max(high, close), barmerge.gaps_off, barmerge.lookahead_on) ha_low = request.security(syminfo.tickerid, ha_timeframe, math.min(low, open), barmerge.gaps_off, barmerge.lookahead_on) // Heikin Ashi candle colors ha_bullish = ha_close > ha_open // Green candle ha_bearish = ha_close < ha_open // Red candle // Backtest period filter inDateRange = true // Trading logic depending on user input if (inDateRange) // Ensures trades happen only in the selected period if (trade_type == "Buy Only") // Buy when green, Sell when red if (ha_bullish and strategy.position_size <= 0) // Buy on green candle only if no position is open strategy.entry("Buy", strategy.long) if (ha_bearish and strategy.position_size > 0) // Sell on red candle (close the long position) strategy.close("Buy") if (trade_type == "Sell Only") // Sell when red, Exit sell when green if (ha_bearish and strategy.position_size >= 0) // Sell on red candle only if no position is open strategy.entry("Sell", strategy.short) if (ha_bullish and strategy.position_size < 0) // Exit the sell position on green candle strategy.close("Sell") // Add Stop Loss and Take Profit conditions if enabled if (use_stop_loss) strategy.exit("Stop Loss", from_entry="Buy", stop=strategy.position_avg_price * (1 - stop_loss_percent / 100)) if (use_take_profit) strategy.exit("Take Profit", from_entry="Buy", limit=strategy.position_avg_price * (1 + take_profit_percent / 100)) // Plot Heikin Ashi candles on the chart plotcandle(ha_open, ha_high, ha_low, ha_close, color=ha_bullish ? color.green : color.red)