PROTECTED SOURCE SCRIPT
Daily Low < Threshold AND Close > Threshold

//version=5
indicator("Daily Low < Threshold AND Close > Threshold", overlay=true)
// Get 1-month close (no lookahead)
monthlyClose = request.security(syminfo.tickerid, "1M", close, lookahead=barmerge.lookahead_off)
// Compute adjustment and threshold
adjustment = monthlyClose * 12.15 / (100 * math.sqrt(360.0 / 30.0))
threshold = monthlyClose - adjustment
// Conditions
condLow = low < threshold
condClose = close > threshold
signal = condLow and condClose
// Plots
plot(threshold, title="Threshold", color=color.orange, linewidth=2)
plot(low, title="Daily Low", color=color.red, linewidth=1)
plot(close, title="Daily Close", color=color.green, linewidth=1)
// Signal marker
plotshape(signal,
title="Signal",
location=location.belowbar,
style=shape.labelup,
text="OK",
textcolor=color.white,
size=size.tiny,
color=color.green)
indicator("Daily Low < Threshold AND Close > Threshold", overlay=true)
// Get 1-month close (no lookahead)
monthlyClose = request.security(syminfo.tickerid, "1M", close, lookahead=barmerge.lookahead_off)
// Compute adjustment and threshold
adjustment = monthlyClose * 12.15 / (100 * math.sqrt(360.0 / 30.0))
threshold = monthlyClose - adjustment
// Conditions
condLow = low < threshold
condClose = close > threshold
signal = condLow and condClose
// Plots
plot(threshold, title="Threshold", color=color.orange, linewidth=2)
plot(low, title="Daily Low", color=color.red, linewidth=1)
plot(close, title="Daily Close", color=color.green, linewidth=1)
// Signal marker
plotshape(signal,
title="Signal",
location=location.belowbar,
style=shape.labelup,
text="OK",
textcolor=color.white,
size=size.tiny,
color=color.green)
Geschütztes Skript
Dieses Script ist als Closed-Source veröffentlicht. Sie können es kostenlos und ohne Einschränkungen verwenden – erfahren Sie hier mehr.
Haftungsausschluss
Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.
Geschütztes Skript
Dieses Script ist als Closed-Source veröffentlicht. Sie können es kostenlos und ohne Einschränkungen verwenden – erfahren Sie hier mehr.
Haftungsausschluss
Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.