この戦略の主な考え方は,価格の下落を監視することによって買い取取引を行うことである.価格が前期と比較して5%以上下落すると,買い取信号が起動し,現在の閉店価格で一定の金額のポジションが購入される.価格が購入価格よりも高くなった場合,ポジションは利益を得るために閉鎖される.この戦略は市場の変動を活用し,短期的な価格リバウンド機会を把握して利益を得ようとします.
この戦略は,特定の幅を超えた短期的な価格低下を購入信号として利用し,価格のリバウンド機会を把握して利益を得ます.論理は単純で理解しやすい.戦略の利点はトレンドキャプチャとリスク制御にありますが,頻繁な取引,深層引き下げ,価格変動などのリスクも注意する必要があります.将来,戦略は,より堅牢な結果を得るために,ストップ損失最適化,信号フィルタリング,ポジション管理,およびマルチバリエイトの協力などの側面からさらに最適化および改善することができます.
/*backtest start: 2023-06-01 00:00:00 end: 2024-06-06 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Thgoodtrader //@version=5 strategy("TGT Falling Buy", overlay=true, margin_long=100, margin_short=100) var float buy_price = na var float open_price = na var float open_weekend = na var float close_weekend = na var bool trade=false var float balance = 1000 // Definir el precio de compra inicial y la cantidad inicial var float qty = na // Verificar si el día de la semana es sábado (6) o domingo (0) es_sabado = dayofweek == 1 es_domingo = dayofweek == 7 es_viernes = dayofweek == 6 // Calcular el valor del saldo inicial balance_initial = balance change_percent = ((close - close[1]) / close[1]) * 100 is_last_candle_negative = close < open is_change_above_threshold = change_percent < -5 // Cambiar el color de la última vela si cumple las condiciones barcolor(is_last_candle_negative and is_change_above_threshold ? color.yellow : na) bgcolor(is_last_candle_negative and is_change_above_threshold ? color.yellow : na, transp=80) // Guardar el precio de compra cuando se cumpla la condición del 5% if is_change_above_threshold // Calcular la cantidad basada en el precio de compra y el saldo qty := balance / close // Guardar el precio de compra buy_price := close open_price := open strategy.entry("Buy Trading",strategy.long,qty) alert("Comprar BTC", alert.freq_once_per_bar_close) trade :=true //if (((close - strategy.position_avg_price) / strategy.position_avg_price) * 100 ) > 2 if close > strategy.position_avg_price // Calcular el valor de ganancia o pérdida pnl = (close - strategy.position_avg_price) * qty // Actualizar el saldo balance := balance_initial + pnl strategy.close("Buy Trading") alertcondition(is_change_above_threshold, title = "Buy 5% Discount", message = "Buy Position") alertcondition(close > strategy.position_avg_price, title = "Close Trade", message = "Close Buy Position")