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)
보호된 스크립트입니다
이 스크립트는 비공개 소스로 게시됩니다. 하지만 이를 자유롭게 제한 없이 사용할 수 있습니다 – 자세한 내용은 여기에서 확인하세요.
면책사항
해당 정보와 게시물은 금융, 투자, 트레이딩 또는 기타 유형의 조언이나 권장 사항으로 간주되지 않으며, 트레이딩뷰에서 제공하거나 보증하는 것이 아닙니다. 자세한 내용은 이용 약관을 참조하세요.
보호된 스크립트입니다
이 스크립트는 비공개 소스로 게시됩니다. 하지만 이를 자유롭게 제한 없이 사용할 수 있습니다 – 자세한 내용은 여기에서 확인하세요.
면책사항
해당 정보와 게시물은 금융, 투자, 트레이딩 또는 기타 유형의 조언이나 권장 사항으로 간주되지 않으며, 트레이딩뷰에서 제공하거나 보증하는 것이 아닙니다. 자세한 내용은 이용 약관을 참조하세요.