찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
지금 시작
커뮤니티
/
아이디어
/
Pine講座㉒ ラインとラベルを組み合わせる
미국 달러 / 일본 엔
교육
Pine講座㉒ ラインとラベルを組み合わせる
yuya_takahashi_의
팔로우
팔로우
업데이트됨
2019년 7월 11일
3
3
1
1
2019년 7월 11일
使い方は、発想次第で無限大なのですが、
こんな使い方があるよという例をひとつ。
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" )
=====
2019년 7월 11일
노트
どうしてもコードは長くなってしまいますね。
2019년 7월 11일
노트
[]は、半角の[]に置き換えてください
2019년 8월 1일
노트
次の講座
Beyond Technical Analysis
pinescript
yuya_takahashi_
팔로우
小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q
小次郎講師のLINE@
bit.ly/2VZQFu3
小次郎講師のチャート情報局
bit.ly/2GvLAEp
또한 다음에서도:
관련 발행물
Pine講座① たった2行で移動平均線が出せる
yuya_takahashi_의
Pine講座② EMAに設定項目を追加する
yuya_takahashi_의
Pine講座③ EMAを複数表示する
yuya_takahashi_의
Pine講座④ EMAの間を塗りつぶす
yuya_takahashi_의
Pine講座⑤ ボリンジャーバンドを表示する
yuya_takahashi_의
Pine講座⑥ エンベロープを表示する
yuya_takahashi_의
Pine講座⑦ 出来高加重移動平均(VWMA)を表示する
yuya_takahashi_의
Pine講座⑧ ハイローバンドを表示する
yuya_takahashi_의
Pine講座⑨ ハイローバンドにブレイクも表示する
yuya_takahashi_의
Pine講座⑩ GMMA を表示する
yuya_takahashi_의
Pine講座⑪ 2行でATRを表示する
yuya_takahashi_의
Pine講座⑫ 1000本遡ったATRの均衡点を表示する
yuya_takahashi_의
Pine講座⑬ 2行でストキャスティクスを表示する
yuya_takahashi_의
Pine講座⑭ 2行でRSIを表示する
yuya_takahashi_의
Pine講座⑮ MACDを表示する
yuya_takahashi_의
Pine講座⑯ 2行で日経平均の終値(30分足)を表示する
yuya_takahashi_의
Pine講座⑰ 2行で日経平均との相関を表示する
yuya_takahashi_의
Pine講座⑱ 複数の相関を表示する
yuya_takahashi_의
Pine講座⑲ 2行でlabelを表示する
yuya_takahashi_의
Pine講座⑳ labelでインフォパネルを表示する
yuya_takahashi_의
Pine講座㉑ ラインを表示する
yuya_takahashi_의
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.