Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
Pine講座⑳ labelでインフォパネルを表示する
U.S. Dollar / Japanese Yen
Education
Pine講座⑳ labelでインフォパネルを表示する
By yuya_takahashi_
Follow
Follow
Updated
Jul 10, 2019
2
4
Jul 10, 2019
label関数を使うと、インフォパネルのようなものを設置することもできます。
Pineスクリプト上で取得できるほぼ全てデータを表示することができます。
=====
//
version
=4
study( "labelでインフォパネルを表示する", overlay=true )
var label l = na
label.delete(l)
l := label.new( timenow + round(change(time)*15), close[1],
xloc=xloc.bar_time, yloc=yloc.price, style=label.style_labelup,
text="label test\n\n[インフォパネル]\n\nx="+tostring(bar_index)+"\ny="+tostring(close) )
=====
label.new( ) の関数だけだと、ローソク足が増える度にチャート上のlabelが増えていってしまいます。そこで、「label.delete(l)」で都度、削除してあげる必要があります。以下の流れですね。
1.var label l = na
「l」というlabelがあると宣言
2.label.delete(l)
古いlabel「l」があれば削除
3.label.new( )
labelを表示
Jul 10, 2019
Note
※ このコードはコピペしたあと、6・7行目に半角スペースを3つずつくらい追加する必要があります。
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_
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
.