top of page

(PineScript) ATR Channel

최종 수정일: 2020년 6월 8일

설명

Study>Indicators>"ATR & ATR Channel (Average True Range)"

사용방법

Study>Indicators>"ATR & ATR Channel (Average True Range)"

Source Code

//@version=4

study("ATRchannel",overlay=true)


up = ema(close,350) + (7 * atr(14))

down = ema(close,350) - (3 * atr(14))


plot(up,color=color.red)

plot(down,color=color.red)


최근 게시물

전체 보기

Comments


Since 2020

rrlogo.jpg
Copyright by Risk&Return © All Rights Reserved
bottom of page