binancash

Simple box to look up down trend

CME_MINI:NQ1!   나스닥 100 이미니 선물
A simple box in 20 candle to monitor price

Top is the highest and bottom is the lowest of close in 20 candles.

As close is moving outside this box then the signal is up or down trend.

Code sample:
low_val = ta.lowest(close, 20)
high_val = ta.highest(close, 20)
//Create Box
box bx = na
bx := box.new(time, high_val, time, low_val, xloc=xloc.bar_time, bgcolor=color.new(color.aqua, 90), border_width=1)
box.delete(bx)

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.