ndicator("Highest & Lowest Moving Average", overlay=true)
// 이동 평균선 계산
ma20 = ta.sma(close, 20)
ma60 = ta.sma(close, 60)
ma120 = ta.sma(close, 120)
// 가장 높은 이평선과 가장 낮은 이평선 찾기
highestMA = math.max(ma20, math.max(ma60, ma120))
lowestMA = math.min(ma20, math.min(ma60, ma120))
// 차트에 표시
plot(highestMA, color=color.blue, title="Highest MA", linewidth=2)
plot(lowestMA, color=color.red, title="Lowest MA", linewidth=2)
이 수식을 전환 가능한가요?
답변 감사합니다.
답변 1
예스스탁
예스스탁 답변
2025-03-11 17:33:42
안녕하세요
예스스탁입니다.
var : ma20(0),ma60(0),ma120(0);
var : highestMA(0),lowestMA(0);
// 이동 평균선 계산
ma20 = ma(close, 20);
ma60 = ma(close, 60);
ma120 = ma(close, 120);
// 가장 높은 이평선과 가장 낮은 이평선 찾기
highestMA = max(ma20, max(ma60, ma120));
lowestMA = min(ma20, min(ma60, ma120));
// 차트에 표시
plot1(highestMA, "Highest MA", Blue);
plot2(lowestMA,"Lowest MA",Red);
즐거운 하루되세요
> alltoone 님이 쓴 글입니다.
> 제목 : 문의 드립니다.
> ndicator("Highest & Lowest Moving Average", overlay=true)
// 이동 평균선 계산
ma20 = ta.sma(close, 20)
ma60 = ta.sma(close, 60)
ma120 = ta.sma(close, 120)
// 가장 높은 이평선과 가장 낮은 이평선 찾기
highestMA = math.max(ma20, math.max(ma60, ma120))
lowestMA = math.min(ma20, math.min(ma60, ma120))
// 차트에 표시
plot(highestMA, color=color.blue, title="Highest MA", linewidth=2)
plot(lowestMA, color=color.red, title="Lowest MA", linewidth=2)
이 수식을 전환 가능한가요?
답변 감사합니다.