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
Jul 11, 2019
3
3
1
1
Jul 11, 2019
使い方は、発想次第で無限大なのですが、
こんな使い方があるよという例をひとつ。
20日間の最高値と最安値、その中間点を描画するインジケーターです。
=====
//
version
=4
study( "ラインとラベルを組み合わせる", overlay=true )
// 20日間の高値、安値、均衡点を算出
H = highest( high ,20 )[1]
L = lowest( low ,20 )[1]
M = ( H + L ) / 2
// lineの宣言
var line h = na
var line m = na
var line l = na
// 古いものがあれば削除
line.delete( h )
line.delete( m )
line.delete( l )
// lineを描画
h := line.new( x1=bar_index[20] ,y1=H ,x2=bar_index ,y2=H, extend=extend.right )
m := line.new( x1=bar_index[20] ,y1=M ,x2=bar_index ,y2=M, extend=extend.right )
l := line.new( x1=bar_index[20] ,y1=L ,x2=bar_index ,y2=L, extend=extend.right )
// labelを宣言
var label label_h = na
var label label_m = na
var label label_l = na
// 古いものは削除
label.delete( label_h )
label.delete( label_m )
label.delete( label_l )
// labelを描画
label_h := label.new( bar_index[20] ,H , style=label.style_none, text="high20" )
label_m := label.new( bar_index[20] ,M , style=label.style_none, text="middle20" )
label_l := label.new( bar_index[20] ,L , style=label.style_none, text="low20" )
=====
Jul 11, 2019
Note
どうしてもコードは長くなってしまいますね。
Jul 11, 2019
Note
[]は、半角の[]に置き換えてください
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_
Pine講座⑨ ハイローバンドにブレイクも表示する
by yuya_takahashi_
Pine講座⑩ GMMA を表示する
by yuya_takahashi_
Pine講座⑪ 2行でATRを表示する
by yuya_takahashi_
Pine講座⑫ 1000本遡ったATRの均衡点を表示する
by yuya_takahashi_
Pine講座⑬ 2行でストキャスティクスを表示する
by yuya_takahashi_
Pine講座⑭ 2行でRSIを表示する
by yuya_takahashi_
Pine講座⑮ MACDを表示する
by yuya_takahashi_
Pine講座⑯ 2行で日経平均の終値(30分足)を表示する
by yuya_takahashi_
Pine講座⑰ 2行で日経平均との相関を表示する
by yuya_takahashi_
Pine講座⑱ 複数の相関を表示する
by yuya_takahashi_
Pine講座⑲ 2行でlabelを表示する
by yuya_takahashi_
Pine講座⑳ labelでインフォパネルを表示する
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
.