Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
Pine講座⑨ ハイローバンドにブレイクも表示する
U.S. Dollar / Japanese Yen
Education
Pine講座⑨ ハイローバンドにブレイクも表示する
By yuya_takahashi_
Follow
Follow
Updated
Aug 1, 2019
2
9
3
3
Jun 20, 2019
昨日のプログラムに2行追加するだけで、
ブレイクを表示することができるようになります。
今日は追加部分だけ解説を入れますね。
==========
//
version
=3
study( "ハイローバンドとプレイクを表示する" ,overlay=true )
length = input( 20 ,title="計算する期間" )
highest = highest( high ,length )
lowest = lowest( low ,length )
middle = ( highest + lowest ) / 2
plot( middle ,offset=1 ,color=red )
p1 = plot( highest ,offset=1 )
p2 = plot( lowest ,offset=1 )
fill( p1 ,p2 )
// チャートにshapeを描画する
// high > highest[1](最高値のブレイク)のときだけ描画
// highest[1] は1本前のデータを取得している
plotshape( high > highest[1] ,location=location.abovebar ,style=shape.triangleup ,color=gray )
// low < lowest[1](最安値のブレイク)のときだけ描画
plotshape( low < lowest[1] ,location=location.belowbar ,style=shape.triangledown ,color=gray )
==========
Aug 1, 2019
Note
次の講
Beyond Technical Analysis
pinescript
yuya_takahashi_
Follow
小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q
小次郎講師のLINE@
bit.ly/2VZQFu3
小次郎講師のチャート情報局
bit.ly/2GvLAEp
Also on:
Related publications
Pine講座① たった2行で移動平均線が出せる
by yuya_takahashi_
Pine講座② EMAに設定項目を追加する
by yuya_takahashi_
Pine講座③ EMAを複数表示する
by yuya_takahashi_
Pine講座④ EMAの間を塗りつぶす
by yuya_takahashi_
Pine講座⑤ ボリンジャーバンドを表示する
by yuya_takahashi_
Pine講座⑥ エンベロープを表示する
by yuya_takahashi_
Pine講座⑦ 出来高加重移動平均(VWMA)を表示する
by yuya_takahashi_
Pine講座⑧ ハイローバンドを表示する
by yuya_takahashi_
Disclaimer
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
.