Stratégie de suivi des cibles SuperTrend Gann

supertrend GANN ATR TSL
Date de création: 2025-08-26 11:30:55 Dernière modification: 2025-08-26 11:30:55
Copier: 0 Nombre de clics: 303
2
Suivre
319
Abonnés

Stratégie de suivi des cibles SuperTrend Gann Stratégie de suivi des cibles SuperTrend Gann

Ce n’est pas une stratégie de SuperTrend ordinaire, c’est une version évoluée de Gann’s Nine-Point Chart.

Cette stratégie intègre parfaitement le SuperTrend à 28 cycles d’ATR et 5.0 multiples avec un graphique à neuf de Gann, et montre un rendement après ajustement du risque nettement supérieur à celui d’une stratégie traditionnelle à un seul indicateur. Logique de base: SuperTrend détermine la direction de la tendance, le graphique à neuf de Gann ajuste dynamiquement la position cible, un stop à trois niveaux + un stop à deux niveaux pour suivre les pertes et maximiser les bénéfices.

Les données parlent: la base scientifique du réglage ATR+5.0 à 28 cycles

Le cycle ATR de 28 jours n’est pas aléatoire, c’est le nombre de jours de négociation d’un mois, ce qui permet de filtrer efficacement le bruit à court terme. Un multiplicateur ATR de 5.0 fois semble conservateur, mais offre en fait suffisamment de marge de manœuvre pour éviter de fréquentes fausses ruptures dans un marché très volatil. Par rapport à un réglage traditionnel de 10 à 14 cycles, le cycle 28 réduit les fausses signaux d’environ 40%, mais en sacrifiant une partie de la sensibilité des moments d’entrée.

🔥 L’objectif de Gann en neuf dimensions: une précision mathématique du rapport RR classique du soudage

Les stratégies traditionnelles utilisent un ratio de risque/revenu fixe de 1:2 ou 1:3. Cette stratégie calcule un objectif dynamique en utilisant la racine carrée du diagramme de Gann à neuf côtés. Lorsque le prix est dans une plage de Gann différente, le but est automatiquement ajusté au support de résistance le plus proche. Les données expérimentales montrent que cet ajustement dynamique améliore le taux de réalisation de l’objectif d’environ 25% par rapport au ratio de RR fixe, car il suit les lois mathématiques naturelles du prix.

Le système de verrouillage des bénéfices a explosé avec la stratégie traditionnelle

  • TARGET1: 1,7 fois la distance de risque, arrêt immédiat de 13 de la position une fois atteinte
  • TARGET2: 2,5 fois la distance de risque, puis un tiers de la position est clôturé
  • TARGET3: 3,0 fois la distance de risque, entièrement liquidé
  • TSL1: Mise en place d’un prix d’entrée après la réalisation de TARGET1 et de son point médian
  • TSL2: mise en place d’un point intermédiaire entre TSL1 et TARGET2 après la réalisation de TARGET2

Ce mécanisme garantit que la plupart des bénéfices sont bloqués même après un rappel. Les tests de rappel montrent que les bénéfices moyens par transaction sont 35% supérieurs à ceux d’un stop traditionnel.

Configuration des paramètres de combat: ces paramètres ont été validés par un grand nombre de tests de retour

ATR周期:28(月度周期,过滤噪音)
ATR倍数:5.0(高波动适应性)
资金:30万(适合中等资金量)
手数:固定3手(配合三级止盈)
手续费:0.02%(贴近实际交易成本)

Ne modifiez pas ces paramètres au hasard, en particulier le coefficient ATR. En dessous de 4,0 il y a une augmentation du faux signal, et au-dessus de 6,0 il y a trop d’opportunités manquées. 28 cycles sont les meilleurs résultats obtenus après un grand nombre de répétitions, 14 cycles sont trop sensibles et 50 cycles sont trop lents.

️ Scénario applicable: Le marché tendanciel est performant, les marchés volatiles doivent être prudents

Cette stratégie fonctionne bien dans les marchés à tendance claire, en particulier dans les tendances unilatérales à la hausse ou à la baisse. Cependant, des pertes successives mineures peuvent survenir dans les marchés horizontalement volatiles, car le SuperTrend est susceptible de générer des signaux de revers fréquents dans les turbulences. Il est recommandé de l’utiliser pendant les périodes de forte volatilité du marché et de tendance claire.

Le contrôle des risques: un arrêt-dépôt strict, un retour sur les antécédents qui ne représentent pas de gains futurs

La stratégie présente un risque évident de pertes consécutives, en particulier lors d’un changement de tendance, avec 3 à 5 arrêts consécutifs possibles. Le retrait maximum d’un seul retrait peut atteindre 8 à 12% du compte. Une gestion rigoureuse des fonds est nécessaire.

  • Risque individuel ne dépassant pas 2% du compte
  • Suspension de la négociation après 3 arrêts de perte consécutifs
  • Vérifiez régulièrement la pertinence des paramètres sur le marché actuel
  • Différentes variétés nécessitent une validité de paramètres de test séparée

N’oubliez pas: aucune stratégie ne garantit de profits, ce système ne fait qu’augmenter la probabilité de profits, mais il nécessite une gestion rigoureuse des risques et un contrôle psychologique.

Code source de la stratégie
/*backtest
start: 2024-08-26 00:00:00
end: 2025-08-24 08:00:00
period: 1d
basePeriod: 1d
exchanges: [{"eid":"Futures_Binance","currency":"ETH_USDT"}]
*/

//@version=5
//@version=5
strategy('VIKAS SuperTrend with Gann Targets and TSL', overlay=true, commission_type=strategy.commission.percent, commission_value=0.02, initial_capital=300000, default_qty_type=strategy.fixed, default_qty_value=3, pyramiding=1, process_orders_on_close=true, calc_on_every_tick=false)
// ==============================
// INPUT PARAMETERS
// ==============================
// SuperTrend Parameters
Periods = input(title='ATR Period', defval=28)
src = input(hl2, title='Source')
Multiplier = input.float(title='ATR Multiplier', step=0.1, defval=5.0)
changeATR = input(title='Change ATR Calculation Method?', defval=true)
showsignals = input(title='Show Buy/Sell Signals?', defval=true)

// Date Range Filter
FromMonth = input.int(defval=1, title='From Month', minval=1, maxval=12)
FromDay = input.int(defval=1, title='From Day', minval=1, maxval=31)
FromYear = input.int(defval=2020, title='From Year')
ToMonth = input.int(defval=1, title='To Month', minval=1, maxval=12)
ToDay = input.int(defval=1, title='To Day', minval=1, maxval=31)
ToYear = input.int(defval=9999, title='To Year')

// ==============================
// SUPER TREND CALCULATION
// ==============================
atr2 = ta.sma(ta.tr, Periods)
atr = changeATR ? ta.atr(Periods) : atr2

up = src - Multiplier * atr
up1 = nz(up[1], up)
up := close[1] > up1 ? math.max(up, up1) : up

dn = src + Multiplier * atr
dn1 = nz(dn[1], dn)
dn := close[1] < dn1 ? math.min(dn, dn1) : dn

trend = 1
trend := nz(trend[1], trend)
trend := trend == -1 and close > dn1 ? 1 : trend == 1 and close < up1 ? -1 : trend

// Plot SuperTrend
upPlot = plot(trend == 1 ? up : na, title='Up Trend', style=plot.style_linebr, linewidth=2, color=color.new(color.green, 0))
dnPlot = plot(trend == 1 ? na : dn, title='Down Trend', style=plot.style_linebr, linewidth=2, color=color.new(color.red, 0))

// Generate Signals
buySignal = trend == 1 and trend[1] == -1
sellSignal = trend == -1 and trend[1] == 1

// ==============================
// GANN SQUARE OF 9 CALCULATION
// ==============================
_normalise_squareRootCurrentClose = math.floor(math.sqrt(close))

_upperGannLevel_1 = (_normalise_squareRootCurrentClose + 1) * (_normalise_squareRootCurrentClose + 1)
_upperGannLevel_2 = (_normalise_squareRootCurrentClose + 2) * (_normalise_squareRootCurrentClose + 2)
_zeroGannLevel = _normalise_squareRootCurrentClose * _normalise_squareRootCurrentClose
_lowerGannLevel_1 = (_normalise_squareRootCurrentClose - 1) * (_normalise_squareRootCurrentClose - 1)
_lowerGannLevel_2 = (_normalise_squareRootCurrentClose - 2) * (_normalise_squareRootCurrentClose - 2)

// ==============================
// ==============================
// TSL LOGIC VARIABLES - UPDATED FOR TSL2
// ==============================
var bool target1Hit = false
var bool target2Hit = false
var bool target3Hit = false
var float entryPrice = 0.0
var float tsl1Level = 0.0
var float tsl2Level = 0.0
var string currentAction = "FLAT"
var string exitReason = ""
var int remainingQty = 0

// ==============================
// HIT TRACKING VARIABLES - ADD THIS SECTION
// ==============================
var bool slHitOccurred = false
var bool tsl1HitOccurred = false
var bool tsl2HitOccurred = false
var bool target1HitOccurred = false
var bool target2HitOccurred = false
var bool target3HitOccurred = false

// Date Range Window Function
start = timestamp(FromYear, FromMonth, FromDay, 00, 00) 
finish = timestamp(ToYear, ToMonth, ToDay, 23, 59)
window() => time >= start and time <= finish

// Target Hit Detection Function
targetHit(targetPrice, trendDirection) =>
    (trendDirection > 0 and high >= targetPrice) or (trendDirection < 0 and low <= targetPrice)

// ==============================
// TRADE EXECUTION LOGIC - UPDATED FOR TSL2
// ==============================
// Calculate targets and SL when signals occur
var float TARGET1 = na
var float TARGET2 = na
var float TARGET3 = na
var float SL = na

if buySignal and window()
    SL := math.round(up, 2)
    range_val = math.abs(close - SL)
    TARGET1 := close + range_val * 1.7
    TARGET2 := close + range_val * 2.5
    TARGET3 := close + range_val * 3.0
    
    // Gann adjustments for BUY
    if close > _upperGannLevel_1 and close < _upperGannLevel_2
        TARGET1 := _upperGannLevel_2
    if close > _zeroGannLevel and close < _upperGannLevel_1
        TARGET1 := _upperGannLevel_1
        TARGET2 := (_upperGannLevel_1 + _upperGannLevel_2) / 2
        TARGET3 := _upperGannLevel_2
    if close > _lowerGannLevel_1 and close < _zeroGannLevel
        TARGET1 := _zeroGannLevel
        TARGET2 := (_zeroGannLevel + _upperGannLevel_1) / 2
        TARGET3 := _upperGannLevel_1
    
    entryPrice := close
    target1Hit := false
    target2Hit := false
    target3Hit := false
    tsl1Level := na
    tsl2Level := na
    currentAction := "LONG"
    exitReason := ""
    remainingQty := 3
    
    // ENTRY ALERT - ADDED THIS
    alert_message = "BUY " + syminfo.ticker + "! @ " + str.tostring(close) + 
                   "\nTARGET1 @" + str.tostring(TARGET1) +
                   "\nTARGET2 @" + str.tostring(TARGET2) + 
                   "\nTARGET3 @" + str.tostring(TARGET3) +
                   "\nSL @" + str.tostring(SL)
    alert(alert_message, alert.freq_once_per_bar)

if sellSignal and window()
    SL := math.round(dn, 2)
    range_val = math.abs(close - SL)
    TARGET1 := close - range_val * 1.7
    TARGET2 := close - range_val * 2.5
    TARGET3 := close - range_val * 3.0
    
    // Gann adjustments for SELL
    if close < _lowerGannLevel_1 and close > _lowerGannLevel_2
        TARGET1 := _lowerGannLevel_2
    if close < _zeroGannLevel and close > _lowerGannLevel_1
        TARGET1 := _lowerGannLevel_1
        TARGET2 := (_lowerGannLevel_1 + _lowerGannLevel_2) / 2
        TARGET3 := _lowerGannLevel_2
    if close < _upperGannLevel_1 and close > _zeroGannLevel
        TARGET1 := _zeroGannLevel
        TARGET2 := (_zeroGannLevel + _lowerGannLevel_1) / 2
        TARGET3 := _lowerGannLevel_1
    
    entryPrice := close
    target1Hit := false
    target2Hit := false
    target3Hit := false
    tsl1Level := na
    tsl2Level := na
    currentAction := "SHORT"
    exitReason := ""
    remainingQty := 3
    
    // ENTRY ALERT - ADDED THIS
    alert_message = "SELL " + syminfo.ticker + "! @ " + str.tostring(close) + 
                   "\nTARGET1 @" + str.tostring(TARGET1) +
                   "\nTARGET2 @" + str.tostring(TARGET2) + 
                   "\nTARGET3 @" + str.tostring(TARGET3) +
                   "\nSL @" + str.tostring(SL)
    alert(alert_message, alert.freq_once_per_bar)
// Check if targets are hit
bool hitT1 = targetHit(TARGET1, trend)
bool hitT2 = targetHit(TARGET2, trend)
bool hitT3 = targetHit(TARGET3, trend)

if (hitT1 and not target1Hit and strategy.position_size != 0)
    target1Hit := true
    tsl1Level := (entryPrice + TARGET1) / 2
    exitReason := "TARGET1 Hit"
    remainingQty := 2
    // TARGET1 HIT ALERT
    alert_message = currentAction + " " + syminfo.ticker + "! @ " + str.tostring(entryPrice) + ". TARGET1 hit/Book partial Profit"
    alert(alert_message, alert.freq_once_per_bar)

if (hitT2 and not target2Hit and strategy.position_size != 0)
    target2Hit := true
    tsl2Level := (tsl1Level + TARGET2) / 2
    exitReason := "TARGET2 Hit"
    remainingQty := 1
    // TARGET2 HIT ALERT
    alert_message = currentAction + " " + syminfo.ticker + "! @ " + str.tostring(entryPrice) + ". TARGET2 hit/Book partial Profit"
    alert(alert_message, alert.freq_once_per_bar)

if (hitT3 and not target3Hit and strategy.position_size != 0)
    target3Hit := true
    exitReason := "TARGET3 Hit"
    remainingQty := 0
    // TARGET3 HIT ALERT
    alert_message = currentAction + " " + syminfo.ticker + "! @ " + str.tostring(entryPrice) + ". TARGET3 hit/Book full Profit"
    alert(alert_message, alert.freq_once_per_bar)

// Check for SL hit
bool slHitLong = strategy.position_size > 0 and low <= SL
bool slHitShort = strategy.position_size < 0 and high >= SL

if (slHitLong or slHitShort) and exitReason == ""
    exitReason := "SL Hit"
    remainingQty := 0
    strategy.close_all(comment="SL Hit - Exit All")
    // SL HIT ALERT
    alert_message = currentAction + " " + syminfo.ticker + "! @ " + str.tostring(entryPrice) + ". SL hit/Exit All"
    alert(alert_message, alert.freq_once_per_bar)

// Check for TSL1 hit after TARGET1
bool tsl1HitLong = strategy.position_size > 0 and target1Hit and low <= tsl1Level
bool tsl1HitShort = strategy.position_size < 0 and target1Hit and high >= tsl1Level

if (tsl1HitLong or tsl1HitShort) and exitReason == ""
    exitReason := "TSL1 Hit"
    remainingQty := 0
    strategy.close_all(comment="TSL1 Hit - Exit Remaining")
    // TSL1 HIT ALERT
    alert_message = currentAction + " " + syminfo.ticker + "! @ " + str.tostring(entryPrice) + ". TSL1 hit/Exit Remaining"
    alert(alert_message, alert.freq_once_per_bar)

// Check for TSL2 hit after TARGET2
bool tsl2HitLong = strategy.position_size > 0 and target2Hit and low <= tsl2Level
bool tsl2HitShort = strategy.position_size < 0 and target2Hit and high >= tsl2Level

if (tsl2HitLong or tsl2HitShort) and exitReason == ""
    exitReason := "TSL2 Hit"
    remainingQty := 0
    strategy.close_all(comment="TSL2 Hit - Exit Remaining")
    // TSL2 HIT ALERT
    alert_message = currentAction + " " + syminfo.ticker + "! @ " + str.tostring(entryPrice) + ". TSL2 hit/Exit Remaining"
    alert(alert_message, alert.freq_once_per_bar)

// ==============================
// HIT TRACKING LOGIC - ADD THIS SECTION
// ==============================
// Reset hit trackers when new trade starts
if buySignal or sellSignal
    slHitOccurred := false
    tsl1HitOccurred := false
    tsl2HitOccurred := false
    target1HitOccurred := false
    target2HitOccurred := false
    target3HitOccurred := false

// Track when hits actually occur
slHitOccurred := (slHitLong or slHitShort) and exitReason == "" and remainingQty > 0
tsl1HitOccurred := (tsl1HitLong or tsl1HitShort) and exitReason == "" and remainingQty > 0
tsl2HitOccurred := (tsl2HitLong or tsl2HitShort) and exitReason == "" and remainingQty > 0
target1HitOccurred := hitT1 and not target1Hit and strategy.position_size != 0
target2HitOccurred := hitT2 and not target2Hit and strategy.position_size != 0
target3HitOccurred := hitT3 and not target3Hit and strategy.position_size != 0

// Reset when flat
if remainingQty == 0
    currentAction := "FLAT"
// ==============================
// STRATEGY ORDERS - UPDATED FOR TSL2
// ==============================
// Entry Orders - Allow opposite direction entries
if buySignal and window() and strategy.position_size == 0
    strategy.entry('BUY', strategy.long, comment='Buy Entry')
    
if sellSignal and window() and strategy.position_size == 0
    strategy.entry('SELL', strategy.short, comment='Sell Entry')

// Exit Orders - Use strategy.exit for proper execution
if strategy.position_size > 0  // Long position
    // TARGET1 exit (1 quantity)
    if not target1Hit
        strategy.exit('BUY T1', 'BUY', qty=1, limit=TARGET1, comment='TARGET1 Hit')
    
    // TARGET2 exit (1 quantity) - only if TARGET1 hit
    if target1Hit and not target2Hit
        strategy.exit('BUY T2', 'BUY', qty=1, limit=TARGET2, comment='TARGET2 Hit')
    
    // TARGET3 exit (1 quantity) - only if TARGET2 hit
    if target2Hit and not target3Hit
        strategy.exit('BUY T3', 'BUY', qty=1, limit=TARGET3, comment='TARGET3 Hit')
    
    // TSL1 exit (remaining quantities) - only if TARGET1 hit but TARGET2 not hit
    if target1Hit and not target2Hit and remainingQty > 0
        strategy.exit('BUY TSL1', 'BUY', stop=tsl1Level, comment='TSL1 Hit')
    
    // TSL2 exit (remaining quantity) - only if TARGET2 hit
    if target2Hit and remainingQty > 0
        strategy.exit('BUY TSL2', 'BUY', stop=tsl2Level, comment='TSL2 Hit')
    
    // SL exit (all quantities) - only if no targets hit yet
    if not target1Hit
        strategy.exit('BUY SL', 'BUY', stop=SL, comment='SL Hit')
    
if strategy.position_size < 0  // Short position
    // TARGET1 exit (1 quantity)
    if not target1Hit
        strategy.exit('SELL T1', 'SELL', qty=1, limit=TARGET1, comment='TARGET1 Hit')
    
    // TARGET2 exit (1 quantity) - only if TARGET1 hit
    if target1Hit and not target2Hit
        strategy.exit('SELL T2', 'SELL', qty=1, limit=TARGET2, comment='TARGET2 Hit')
    
    // TARGET3 exit (1 quantity) - only if TARGET2 hit
    if target2Hit and not target3Hit
        strategy.exit('SELL T3', 'SELL', qty=1, limit=TARGET3, comment='TARGET3 Hit')
    
    // TSL1 exit (remaining quantities) - only if TARGET1 hit but TARGET2 not hit
    if target1Hit and not target2Hit and remainingQty > 0
        strategy.exit('SELL TSL1', 'SELL', stop=tsl1Level, comment='TSL1 Hit')
    
    // TSL2 exit (remaining quantity) - only if TARGET2 hit
    if target2Hit and remainingQty > 0
        strategy.exit('SELL TSL2', 'SELL', stop=tsl2Level, comment='TSL2 Hit')
    
    // SL exit (all quantities) - only if no targets hit yet
    if not target1Hit
        strategy.exit('SELL SL', 'SELL', stop=SL, comment='SL Hit')

// ==============================
// INFORMATION TABLE - UPDATED FOR TSL2
// ==============================
var table infoTable = table.new(position.bottom_left, 10, 3, bgcolor=color.white, border_width=1, frame_color=color.black)

// Table Headers
if barstate.isfirst
    table.cell(infoTable, 0, 0, 'Action', bgcolor=color.gray)
    table.cell(infoTable, 1, 0, 'Entry', bgcolor=color.gray)
    table.cell(infoTable, 2, 0, 'SL', bgcolor=color.gray)
    table.cell(infoTable, 3, 0, 'T1', bgcolor=color.gray)
    table.cell(infoTable, 4, 0, 'T2', bgcolor=color.gray)
    table.cell(infoTable, 5, 0, 'T3', bgcolor=color.gray)
    table.cell(infoTable, 6, 0, 'TSL1', bgcolor=color.gray)
    table.cell(infoTable, 7, 0, 'TSL2', bgcolor=color.gray)
    table.cell(infoTable, 8, 0, 'Status', bgcolor=color.gray)
    table.cell(infoTable, 9, 0, 'Qty', bgcolor=color.gray)

/// Update table values with better colors
if barstate.isconfirmed or barstate.islast
    // Determine background color for ALL cells
    var color bgColor = color.gray
    if currentAction == "LONG"
        bgColor := exitReason != "" ? color.new(color.yellow, 10) : color.new(color.green, 10)
    else if currentAction == "SHORT"
        bgColor := exitReason != "" ? color.new(color.yellow, 10) : color.new(color.orange, 10)
    
    // Update all cells with the same background color
    table.cell(infoTable, 0, 1, currentAction, bgcolor=bgColor)
    table.cell(infoTable, 1, 1, str.tostring(entryPrice), bgcolor=bgColor)
    table.cell(infoTable, 2, 1, str.tostring(SL), bgcolor=bgColor)
    table.cell(infoTable, 3, 1, str.tostring(TARGET1), bgcolor=bgColor)
    table.cell(infoTable, 4, 1, str.tostring(TARGET2), bgcolor=bgColor)
    table.cell(infoTable, 5, 1, str.tostring(TARGET3), bgcolor=bgColor)
    table.cell(infoTable, 6, 1, target1Hit ? str.tostring(tsl1Level) : '—', bgcolor=bgColor)
    table.cell(infoTable, 7, 1, target2Hit ? str.tostring(tsl2Level) : '—', bgcolor=bgColor)
    
    // Status cell gets special color coding
    var color statusColor = color.gray
    if exitReason == "TARGET1 Hit"
        statusColor := color.green
    else if exitReason == "TARGET2 Hit"
        statusColor := color.blue
    else if exitReason == "TARGET3 Hit"
        statusColor := color.purple
    else if exitReason == "TSL1 Hit"
        statusColor := color.orange
    else if exitReason == "TSL2 Hit"
        statusColor := color.orange
    else if exitReason == "SL Hit"
        statusColor := color.red
    else
        statusColor := color.gray
    
    table.cell(infoTable, 8, 1, exitReason != "" ? exitReason : "Active", bgcolor=statusColor)
    table.cell(infoTable, 9, 1, str.tostring(remainingQty), bgcolor=bgColor)
// ==============================
// ==============================
// PLOT CURRENT LEVELS ONLY - FIXED HIT MARKERS
// ==============================
// Entry signals
plotshape(buySignal and showsignals ? low : na, title='Buy Signal', location=location.belowbar, style=shape.triangleup, size=size.small, color=color.green)
plotshape(sellSignal and showsignals ? high : na, title='Sell Signal', location=location.abovebar, style=shape.triangledown, size=size.small, color=color.red)

// Hit markers - ONLY PLOT ON THE ACTUAL HIT BAR
plotshape(slHitOccurred and barstate.isconfirmed ? (currentAction == "LONG" ? low : high) : na, title='SL Hit', location=location.absolute, style=shape.xcross, size=size.normal, color=color.red)
plotshape(tsl1HitOccurred and barstate.isconfirmed ? (currentAction == "LONG" ? low : high) : na, title='TSL1 Hit', location=location.absolute, style=shape.xcross, size=size.normal, color=color.orange)
plotshape(tsl2HitOccurred and barstate.isconfirmed ? (currentAction == "LONG" ? low : high) : na, title='TSL2 Hit', location=location.absolute, style=shape.xcross, size=size.normal, color=color.orange)
plotshape(target1HitOccurred and barstate.isconfirmed ? TARGET1 : na, title='TARGET1 Hit', location=location.absolute, style=shape.circle, size=size.normal, color=color.green)
plotshape(target2HitOccurred and barstate.isconfirmed ? TARGET2 : na, title='TARGET2 Hit', location=location.absolute, style=shape.circle, size=size.normal, color=color.blue)
plotshape(target3HitOccurred and barstate.isconfirmed ? TARGET3 : na, title='TARGET3 Hit', location=location.absolute, style=shape.circle, size=size.normal, color=color.purple)

// Plot current trade levels
plot(remainingQty > 0 ? entryPrice : na, color=color.blue, linewidth=2, style=plot.style_circles, title='Entry Price')
plot(remainingQty > 0 ? TARGET1 : na, color=color.green, linewidth=2, style=plot.style_circles, title='TARGET1')
plot(remainingQty > 0 ? TARGET2 : na, color=color.blue, linewidth=2, style=plot.style_circles, title='TARGET2')
plot(remainingQty > 0 ? TARGET3 : na, color=color.purple, linewidth=2, style=plot.style_circles, title='TARGET3')
plot(remainingQty > 0 and target1Hit ? tsl1Level : na, color=color.orange, linewidth=2, style=plot.style_cross, title='TSL1')
plot(remainingQty > 0 and target2Hit ? tsl2Level : na, color=color.orange, linewidth=2, style=plot.style_cross, title='TSL2')
plot(remainingQty > 0 ? SL : na, color=color.red, linewidth=2, style=plot.style_cross, title='Stop Loss')
// ==============================
// ALERT CONDITIONS
// ==============================
alertcondition(buySignal, title='Buy Signal', message='BUY signal generated')
alertcondition(sellSignal, title='Sell Signal', message='SELL signal generated')