Guan Chong Bhd.
Pendidikan
Telah dikemas kini

SIRI PINE SCRIPT - Breakout bar dan garisan melintang

220
Menggunakan fungsi plot() untuk kita plotkan garisan melintang selepas terjadinya breakout untuk sekian bar.

Semoga terhibur.
Nota
// This source code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org/MPL/2.0/
// © BURSATRENDBANDCHART

//version=4
study("Top Line", overlay=true)

high10 = close > highest(high,10)[1]

topgreenbar = valuewhen(high10, high, 0)

plot(topgreenbar, title="Green Bar Top Line", color=topgreenbar != topgreenbar[1] ? na : color.green)

Penafian

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.