Pine Script v5 기본 문법 - 2 (조건문, 반복문)
목차 Conditional structures Introduction Pine Script에서 사용하는 조건문은 if와 switch가 있습니다. Pine Script에서는 조건문의 local block에서 호출하지 못하는 내장함수가 있습니다. alertcondition(), barcolor(), fill(), hline(), indicator(), library(), plot(), plotbar(), plotcandle(), plotchar(), plotshape(), 예를 들어 다음 코드는 에러가 발생합니다. //@version=5 indicator("", "", true) float v = 0 if close>open plot(v) else plot(v+1) plot은 조건문의 local block에..
2023. 12. 25.