커뮤니티

수식 변환 부탁합니다

프로필 이미지
고도산
2025-05-20 22:11:18
263
글번호 191014
답변완료
다음 TradingView 수식 변환 부탁합니다. PivotHigh, PivotLow를 해결 못하겠네요 study("Support and Resistance", overlay=true) left = input(10) right = input(10) hih = pivothigh(high, left, right) lol = pivotlow (low , left, right) top = valuewhen(hih, high[right], 0) bot = valuewhen(lol, low [right], 0) res = plot(top, color=top != top[1] ? na : color.red, offset=-left) sup = plot(bot, color=bot != bot[1] ? na : color.green, offset=-left)
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2025-05-21 11:03:20

안녕하세요 예스스탁입니다. input : left(10); input : right(10); var : Top(0),bot(0); if SwingHigh(1,High, Left, Right, Left+Right+1) != -1 Then top = high[right]; if SwingLow(1,Low, Left, Right, Left+Right+1) != -1 Then bot = Low[right]; plot1(top,"Resistance",Red); plot2(bot,"Support",Green); FixPlotShift(1,-right); FixPlotShift(2,-right); 즐거운 하루되세요 > 고도산 님이 쓴 글입니다. > 제목 : 수식 변환 부탁합니다 > 다음 TradingView 수식 변환 부탁합니다. PivotHigh, PivotLow를 해결 못하겠네요 study("Support and Resistance", overlay=true) left = input(10) right = input(10) hih = pivothigh(high, left, right) lol = pivotlow (low , left, right) top = valuewhen(hih, high[right], 0) bot = valuewhen(lol, low [right], 0) res = plot(top, color=top != top[1] ? na : color.red, offset=-left) sup = plot(bot, color=bot != bot[1] ? na : color.green, offset=-left)