この戦略は,移動平均クロスオーバーとキャンドルスタイクパターン認識を含む古典的な技術分析ツールを組み合わせたインテリジェントな取引システムである.この戦略は,ダブル移動平均クロスオーバー信号を組み込む一方で,キャンドルスタイクシャードとボディの関係を分析することによって潜在的な市場のターニングポイントを特定する.システムは価格動向に焦点を当てているだけでなく,適応性を向上させるためにダイナミックに取引パラメータを調整するために平均範囲を計算する.
基本的な論理は2つの主要要素で構成されています.
ろうそくパターン認識モジュールは,影と体間の比率を計算することによって潜在的な逆転信号を識別する.このシステムは,信号品質を最適化するために影倍数 (wickMultiplier) と体パーセント (bodyPercentage) の調整可能なパラメータを含む.ろうそくが適格な長い上または下の影を表示すると,システムは対応する長いまたは短い信号を生成する.
二重移動平均クロスオーバーシステムは,14期および28期のシンプル・ムービング・平均値 (SMA) をトレンドインジケーターとして利用する.短期MAが長期MAを超越したとき,長期MAが長期MAを下回るときに短信号が生成される.
この戦略は,キャンドルスタイクパターン認識と移動平均クロスオーバーシステムを組み合わせて比較的完全な取引決定枠組みを構築する.その強みは,厳格な信号フィルタリングメカニズムと柔軟なパラメータ調整能力にあります.一方で,パラメータ最適化と市場環境適応性にも注意を払わなければならない.継続的な最適化と精製を通じて,戦略はさまざまな市場条件で安定したパフォーマンスを維持する可能性を示しています.
/*backtest start: 2024-10-28 00:00:00 end: 2024-11-27 00:00:00 period: 1h basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 indicator("Wick Reversal Setup", overlay=true) // Input parameters wickMultiplier = input.float(3.5, title="Wick Multiplier", minval=0.5, maxval=20) bodyPercentage = input.float(0.25, title="Body Percentage", minval=0.1, maxval=1.0) // Calculate the average range over 50 periods avgRange = ta.sma(high - low, 50) // Define the lengths of wicks and bodies bodyLength = math.abs(close - open) upperWickLength = high - math.max(close, open) lowerWickLength = math.min(close, open) - low totalRange = high - low // Long signal conditions longSignal = (close > open and upperWickLength >= bodyLength * wickMultiplier and upperWickLength <= totalRange * bodyPercentage) or (close < open and lowerWickLength >= bodyLength * wickMultiplier and upperWickLength <= totalRange * bodyPercentage) or (close == open and close != high and upperWickLength >= bodyLength * wickMultiplier and upperWickLength <= totalRange * bodyPercentage) or (open == high and close == high and totalRange >= avgRange) // Short signal conditions shortSignal = (close < open and (high - open) >= bodyLength * wickMultiplier and lowerWickLength <= totalRange * bodyPercentage) or (close > open and (high - close) >= bodyLength * wickMultiplier and lowerWickLength <= totalRange * bodyPercentage) or (close == open and close != low and lowerWickLength >= bodyLength * wickMultiplier and lowerWickLength <= totalRange * bodyPercentage) or (open == low and close == low and totalRange >= avgRange) // Plot signals plotshape(series=longSignal, location=location.belowbar, color=color.green, style=shape.labelup, text="Long") plotshape(series=shortSignal, location=location.abovebar, color=color.red, style=shape.labeldown, text="Short") // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Sahaj_Beriwal //@version=5 strategy("My strategy", overlay=true, margin_long=100, margin_short=100) longCondition = ta.crossover(ta.sma(close, 14), ta.sma(close, 28)) if (longCondition) strategy.entry("L", strategy.long) shortCondition = ta.crossunder(ta.sma(close, 14), ta.sma(close, 28)) if (shortCondition) strategy.entry("S", strategy.short)