ロング・ショート・リニアリ回帰クロスオーバー戦略 (Long-Short Linear Regression Crossover Strategy) は,株式の将来の価格動向を予測するためにリニアリ回帰モデルを使用する技術分析戦略である.戦略の基本原理は,株価格動向はしばしば一定の線形トレンドに従っており,価格の線形回帰を計算することで,将来の価格を予測することができる. 予測価格が現在の価格を超えると戦略はロングになり,下を横切るとポジションを退場する.
ストラテジーは,まず,一定の期間における株式価格の線形回帰を計算する.線形回帰は,時間とともに価格の変化の傾向を表す最小正方形方法を使用して直線に適合する.その後,戦略は予測価格線とチャート上の現在の価格をプロットする.
戦略は2つの信号を定義しています
ロング・シグナルが表示されると,戦略はロング・ポジションを開く.ショート・シグナルが表示されると,ポジションを閉じる.
戦略の主要なステップは以下のとおりです.
長期短期線形回帰クロスオーバー戦略には以下の利点があります.
長短線形回帰クロスオーバー戦略には多くの利点があるものの,いくつかのリスクもあります.
ロングショートリグレッション・クロスオーバー戦略は,線形リグレッションと現在の価格から予想価格を比較した取引信号を生成する.戦略の論理はシンプルで明確で,価格の線形トレンドを把握し,さまざまな市場状況に適用することができる.同時に,戦略は実行し最適化しやすく,パラメータを柔軟に調整し,他の指標と組み合わせ,リスクコントロールモジュールを追加し,戦略のパフォーマンスを継続的に改善することができる.しかし,戦略には,傾向認識の不正確,パラメータ設定の不適切,歴史的データの過剰化などのリスクもあります.したがって,実践的な応用では注意が必要です.全体として,ロングショートリグレッション・クロスオーバー戦略は,さらなる探求と最適化に値するシンプルで効果的な定量的な取引戦略です.
/*backtest start: 2024-02-25 00:00:00 end: 2024-03-26 00:00:00 period: 3h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © stocktechbot //@version=5 strategy("Linear Cross", overlay=true, margin_long=100, margin_short=0) //Linear Regression vol = volume // Function to calculate linear regression linregs(y, x, len) => ybar = math.sum(y, len)/len xbar = math.sum(x, len)/len b = math.sum((x - xbar)*(y - ybar),len)/math.sum((x - xbar)*(x - xbar),len) a = ybar - b*xbar [a, b] // Historical stock price data price = close // Length of linear regression len = input(defval = 21, title = 'Strategy Length') linearlen=input(defval = 9, title = 'Linear Lookback') [a, b] = linregs(price, vol, len) // Calculate linear regression for stock price based on volume //eps = request.earnings(syminfo.ticker, earnings.actual) //MA For double confirmation out = ta.sma(close, 200) outf = ta.sma(close, 50) outn = ta.sma(close, 90) outt = ta.sma(close, 21) outthree = ta.sma(close, 9) // Predicted stock price based on volume predicted_price = a + b*vol // Check if predicted price is between open and close is_between = open < predicted_price and predicted_price < close //MACD //[macdLine, signalLine, histLine] = ta.macd(close, 12, 26, 9) // Plot predicted stock price plot(predicted_price, color=color.rgb(65, 59, 150), linewidth=2, title="Predicted Price") plot(ta.sma(predicted_price,linearlen), color=color.rgb(199, 43, 64), linewidth=2, title="MA Predicted Price") //offset = input.int(title="Offset", defval=0, minval=-500, maxval=500) plot(out, color=color.blue, title="MA200") [macdLine, signalLine, histLine] = ta.macd(predicted_price, 12, 26, 9) //BUY Signal longCondition=false mafentry =ta.sma(close, 50) > ta.sma(close, 90) //matentry = ta.sma(close, 21) > ta.sma(close, 50) matwohun = close > ta.sma(close, 200) twohunraise = ta.rising(out, 2) twentyrise = ta.rising(outt, 2) macdrise = ta.rising(macdLine,2) macdlong = ta.crossover(predicted_price, ta.wma(predicted_price,linearlen)) and (signalLine < macdLine) if macdlong and macdrise longCondition := true if (longCondition) strategy.entry("My Long Entry Id", strategy.long) //Sell Signal lastEntryPrice = strategy.opentrades.entry_price(strategy.opentrades - 1) daysSinceEntry = len daysSinceEntry := int((time - strategy.opentrades.entry_time(strategy.opentrades - 1)) / (24 * 60 * 60 * 1000)) percentageChange = (close - lastEntryPrice) / lastEntryPrice * 100 //trailChange = (ta.highest(close,daysSinceEntry) - close) / close * 100 //label.new(bar_index, high, color=color.black, textcolor=color.white,text=str.tostring(int(trailChange))) shortCondition=false mafexit =ta.sma(close, 50) < ta.sma(close, 90) matexit = ta.sma(close, 21) < ta.sma(close, 50) matwohund = close < ta.sma(close, 200) twohunfall = ta.falling(out, 3) twentyfall = ta.falling(outt, 2) shortmafall = ta.falling(outthree, 1) macdfall = ta.falling(macdLine,1) macdsell = macdLine < signalLine if macdfall and macdsell and (macdLine < signalLine) and ta.falling(low,2) shortCondition := true if (shortCondition) strategy.entry("My Short Entry Id", strategy.short)