찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
Black Friday 세일
최대 70% 싸게
커뮤니티
/
아이디어
/
Pine講座⑮ MACDを表示する
미국 달러 / 일본 엔
교육
Pine講座⑮ MACDを表示する
yuya_takahashi_의
팔로우
팔로우
업데이트됨
2019년 8월 1일
3
0
6
6
2019년 7월 1일
MACDは描画する要素が多いので
「2行で」というわけにはいきませんが、
組み込みの関数で簡単に描画することができます。
今日からは Pineスクリプト v4 で
プログラムを書いていきたいと思います!
=====
//
version
=4
study( "MACDを表示する" )
//macd( ) で MACD を算出する
//macd( ) は唯一、配列で算出結果を受け取る
[macdLine ,signalLine ,histLine] = macd(close ,12 ,26 ,9)
//MACDの各計算値を描画する
plot(macdLine ,color=color.blue)
plot(signalLine ,color=color.orange)
plot(histLine ,color=color.red ,style=plot.style_histogram)
=====
2019년 8월 1일
노트
次の講座
2019년 9월 25일
노트
コードに間違いがありました。
= macd (close ,12 ,26 ,9)
↓ ↓ ↓
[macdLine, signalLine, histLine] = macd (close ,12 ,26 ,9)
2019년 9월 25일
노트
= macd (close ,12 ,26 ,9)
↓ ↓ ↓
[macdLine, signalLine, histLine] = macd (close ,12 ,26 ,9)
※[]を半角に直してお使いください
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_의
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.