この戦略は,トゥシャール・チャンデによって開発されたピボットポイント予測振動器をバックテストする.振動器は,閉値とn期間線形回帰予測価格の割合差を計算する. 予想価格が閉値よりも大きいとき0を超越し,低ければ0を下回る. これは,市場のターニングポイントを特定するために使用することができます.
この戦略は,ピボットポイント予測オシレーターを使用して市場の方向性を決定する.具体的には,n 期間の線形回帰予測価格と実際の閉店価格の割合差を計算する. パーセント差が0を超えると,長くなってしまう. パーセント差が0を下回ると,短くなってしまう. 完全な取引論理は以下のとおりである:
戦略は単純で直線的です 市場が過大評価されているか過小評価されているか判断するために実際の価格と予測価格を比較し,取引信号を生成します
この戦略には以下の利点があります.
この戦略にはいくつかのリスクもあります:
対策:
戦略は以下の点で改善できる:
ピボットポイント予報振動器 (Pivot Point Forecast Oscillator) は,線形回帰予報価格を利用した量子取引戦略である.この戦略はシンプルな論理と柔軟なパラメータを有し,明確な取引信号を生成する.ストップ損失を最適化,パラメータ選択,他の指標信号を組み合わせ,より良い取引パフォーマンスを達成するためにさらなる改善の余地がある.
/*backtest start: 2022-12-13 00:00:00 end: 2023-12-19 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 19/03/2018 // The Chande Forecast Oscillator developed by Tushar Chande The Forecast // Oscillator plots the percentage difference between the closing price and // the n-period linear regression forecasted price. The oscillator is above // zero when the forecast price is greater than the closing price and less // than zero if it is below. // // You can change long to short in the Input Settings // WARNING: // - For purpose educate only // - This script to change bars colors. //////////////////////////////////////////////////////////// strategy(title="Chande Forecast Oscillator Backtest", shorttitle="CFO") Length = input(14, minval=1) Offset = input(0) reverse = input(false, title="Trade reverse") hline(0, color=black, linestyle=line) xLG = linreg(close, Length, Offset) xCFO = ((close -xLG) * 100) / close pos = iff(xCFO > 0, 1, iff(xCFO < 0, -1, nz(pos[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) barcolor(possig == -1 ? red: possig == 1 ? green : blue ) plot(xCFO, color=red, title="CFO")