버전4 지표에 버전3 지표 합치기


버전4 지표에 버전3 지표 합치기

안녕하세요 어제 어떤 분이 지표 합치는 걸 물어보시더라구요 // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // HarryBot //@version=4 study("Williams Fractals - Harrybot", shorttitle="Fractals", overlay=true) term = input(title="term", type=input.integer, defval=5, minval=3, maxval=999, step=2) mid = int(term / 2) + 1 fr_up = highest(term) == high[mid] ? high[mid] : float(na) fr_dn = lowest(term) == low[mid] ? low[mid] : float(na) plotshape(fr_up, style=shape.t...


#지표합치기 #트레이딩뷰 #파인스크립트

원문링크 : 버전4 지표에 버전3 지표 합치기