リバーサルとマネーフローの組み合わせ戦略


作成日: 2023-09-17 22:37:54 最終変更日: 2023-09-17 22:58:03
コピー: 0 クリック数: 651
1
フォロー
1617
フォロワー

この戦略は123の反転形状と資金流動量指標を組み合わせて,トレンド追跡と反転取引を実現する.

戦略原則

まず,123の逆転形状によって価格逆転点を判断する.具体的には,前2日の閉盘価格が下がれば,第3日の閉盘価格が上昇し,ランダムな指標が値より低くなれば,買入シグナルを生じ;前2日の閉盘価格が上がれば,第3日の閉盘価格が下がれば,そしてランダムな指標が値より高くなれば,売り出シグナルを生じする.

次に,快線と慢線の資金流動量指標を計算する.快線は,近期資金流動量指数移動平均で構成され,慢線は,より長い周期の指数移動平均である.快線が慢線より高い場合は,資金流入として判断され,買入シグナルが生じ,逆は,売り出しシグナルが生じます.

最後に,123の反転形状と資金流動指標の合体信号が一致した場合,取引信号が生成される.

優位分析

  • 複数の信号を組み合わせることで,信号の信頼性が向上する.
  • 123の逆転形は逆転点を捉え,資金流動量指数は資金の流れを判断する.
  • 異なる品種と周期のパフォーマンスを最適化するためにパラメータを調整できます.
  • 単一のシグナルで取引できます.

リスク分析

  • 123反転形は偽信号を生成する可能性がある.
  • 資金の流動が遅れているため,転換点を把握することができません.
  • 複数の信号の組み合わせで,戦略の論理は比較的複雑である.
  • 過剰取引を避けるためにパラメータを最適化する必要があります.

逆転形態の信頼性を高め,資金流動量指標の感度を設定し,ストップローズロジックを追加することでリスクを制御することができる.

最適化の方向

  • 異なるパラメータの組み合わせをテストし,最適なパラメータを見つけます.
  • 誤った取引の確率を減らすために,値下げの調整をします.
  • 信号の質を向上させるための技術指標を追加する.
  • 単一損失を抑えるために, Stop Loss メカニズムに参加する.
  • 資金管理戦略の最適化と,全体的なリスクの抑制.

要約する

この戦略は,反転取引とトレンド追跡の優位性を統合し,市場の転換点を効果的に識別することができる。しかし,パラメータ調整とリスク管理に注意する必要がある.トレンドを追跡しながら,過度の誤信号を生成することを防ぐ必要がある。もしうまく使えば,高効率の取引戦略の1つになることができる。

ストラテジーソースコード
/*backtest
start: 2023-08-17 00:00:00
end: 2023-09-16 00:00:00
period: 4h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=4
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 24/02/2021
// This is combo strategies for get a cumulative signal. 
//
// First strategy
// This System was created from the Book "How I Tripled My Money In The 
// Futures Market" by Ulf Jensen, Page 183. This is reverse type of strategies.
// The strategy buys at market, if close price is higher than the previous close 
// during 2 days and the meaning of 9-days Stochastic Slow Oscillator is lower than 50. 
// The strategy sells at market, if close price is lower than the previous close price 
// during 2 days and the meaning of 9-days Stochastic Fast Oscillator is higher than 50.
//
// Second strategy
//    Indicator plots Money Flow Indicator (Chaikin). This indicator looks 
//    to improve on Larry William's Accumulation Distribution formula that 
//    compared the closing price with the opening price. In the early 1970's, 
//    opening prices for stocks stopped being transmitted by the exchanges. 
//    This made it difficult to calculate Williams' formula. The Chaikin 
//    Oscillator uses the average price of the bar calculated as follows 
//    (High + Low) /2 instead of the Open.
//    The indicator subtracts a 10 period exponential moving average of the 
//    AccumDist function from a 3 period exponential moving average of the 
//    AccumDist function.  
//
// WARNING:
// - For purpose educate only
// - This script to change bars colors.
////////////////////////////////////////////////////////////
Reversal123(Length, KSmoothing, DLength, Level) =>
    vFast = sma(stoch(close, high, low, Length), KSmoothing) 
    vSlow = sma(vFast, DLength)
    pos = 0.0
    pos := iff(close[2] < close[1] and close > close[1] and vFast < vSlow and vFast > Level, 1,
	         iff(close[2] > close[1] and close < close[1] and vFast > vSlow and vFast < Level, -1, nz(pos[1], 0))) 
	pos


MFI(Fast,Slow) =>
    pos = 0.0
    lenMax = max(Fast, Slow)
    lenMin = min(Fast, Slow)
    xDiv = (high - low) * volume
    SumMax = sum(iff(xDiv > 0, (close - open) / (high - low) * volume , 0) , lenMax)
    SumMin = sum(iff(xDiv > 0, (close - open) / (high - low) * volume , 0) , lenMin)
    emaMax = ema(SumMax, lenMax)
    emaMin = ema(SumMin, lenMin)
    nRes = emaMax - emaMin
    pos:= iff(nRes > 0, 1,
           iff(nRes < 0, -1, nz(pos[1], 0))) 
    pos

strategy(title="Combo Backtest 123 Reversal & Money Flow Indicator", shorttitle="Combo", overlay = true)
line1 = input(true, "---- 123 Reversal ----")
Length = input(14, minval=1)
KSmoothing = input(1, minval=1)
DLength = input(3, minval=1)
Level = input(50, minval=1)
//-------------------------
line2 = input(true, "---- Money Flow ----")
Fast = input(3, minval=1)
Slow = input(10, minval=1)
reverse = input(false, title="Trade reverse")
posReversal123 = Reversal123(Length, KSmoothing, DLength, Level)
posMFI = MFI(Fast,Slow)
pos = iff(posReversal123 == 1 and posMFI == 1 , 1,
	   iff(posReversal123 == -1 and posMFI == -1, -1, 0)) 
possig = iff(reverse and pos == 1, -1,
          iff(reverse and pos == -1 , 1, pos))	   
if (possig == 1 ) 
    strategy.entry("Long", strategy.long)
if (possig == -1 )
    strategy.entry("Short", strategy.short)	 
if (possig == 0) 
    strategy.close_all()
barcolor(possig == -1 ? #b50404: possig == 1 ? #079605 : #0536b3 )