79346711

Date: 2025-01-10 18:43:37
Score: 1
Natty:
Report link

for debug, plot the line 10% to upTrend

upTrendLine = direction < 0 ? supertrend : na
upTrend10 = upTrendLine * 1.1
plot(upTrend10)

Now create the alert

croosUpTrend10 = ta.crossunder(low, upTrend10)
plotshape(croosUpTrend10)
alertcondition(croosUpTrend10, "croosUpTrend10" )

test

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Gu5tavo71