이 전략은 피보나치 리트레이싱 레벨과 촛불 패턴을 기반으로 한 트렌드 트레이딩 시스템이다. 기술 분석과 리스크 관리 원칙을 결합하여 여러 시간 프레임에 걸쳐 작동합니다. 전략은 주로 리스크 관리에 대한 스톱 로스 및 수익 목표를 활용하면서 주요 피보나치 리트레이싱 레벨 (0.618 및 0.786) 을 식별하여 거래 기회를 찾습니다.
전략의 핵심 논리는 몇 가지 핵심 요소에 기반합니다.
이 전략은 피보나치 리트레이싱, 촛불 패턴 및 리스크 관리 원칙을 결합하여 체계적인 거래 접근 방식을 제공하는 잘 구성된 트렌드 추적 전략입니다. 특정 위험이 존재하지만 제안된 최적화 방향에 의해 전략의 안정성과 신뢰성이 더욱 향상 될 수 있습니다. 전략의 멀티 타임프레임 성격과 사용자 정의 가능한 매개 변수는 다양한 유형의 트레이더에 적합합니다.
/*backtest start: 2024-12-03 00:00:00 end: 2024-12-10 00:00:00 period: 2m basePeriod: 2m 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/ // © jontucklogic7467 //@version=5 strategy("Fibonacci Swing Trading Bot", overlay=true) // Input parameters fiboLevel1 = input.float(0.618, title="Fibonacci Retracement Level 1") fiboLevel2 = input.float(0.786, title="Fibonacci Retracement Level 2") riskRewardRatio = input.float(2.0, title="Risk/Reward Ratio") stopLossPerc = input.float(1.0, title="Stop Loss Percentage") / 100 // Timeframe selection useTimeframe = input.timeframe("240", title="Timeframe for Analysis", options=["240", "D", "W", "M"]) // Request data from selected timeframe highTF = request.security(syminfo.tickerid, useTimeframe, high) lowTF = request.security(syminfo.tickerid, useTimeframe, low) // Swing high and low calculation over the last 50 bars in the selected timeframe highestHigh = ta.highest(highTF, 50) lowestLow = ta.lowest(lowTF, 50) // Fibonacci retracement levels fib618 = highestHigh - (highestHigh - lowestLow) * fiboLevel1 fib786 = highestHigh - (highestHigh - lowestLow) * fiboLevel2 // Plot Fibonacci levels // line.new(bar_index[1], fib618, bar_index, fib618, color=color.red, width=2, style=line.style_dashed) // line.new(bar_index[1], fib786, bar_index, fib786, color=color.orange, width=2, style=line.style_dashed) // Entry signals based on candlestick patterns and Fibonacci levels bullishCandle = close > open and close > fib618 and close < highestHigh bearishCandle = close < open and close < fib786 and close > lowestLow // Stop loss and take profit calculation stopLoss = bullishCandle ? close * (1 - stopLossPerc) : close * (1 + stopLossPerc) takeProfit = bullishCandle ? close + (close - stopLoss) * riskRewardRatio : close - (stopLoss - close) * riskRewardRatio // Plot buy and sell signals if bullishCandle strategy.entry("Buy", strategy.long) strategy.exit("Take Profit", "Buy", limit=takeProfit, stop=stopLoss) if bearishCandle strategy.entry("Sell", strategy.short) strategy.exit("Take Profit", "Sell", limit=takeProfit, stop=stopLoss)