Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
Pine講座⑮ MACDを表示する
U.S. Dollar / Japanese Yen
Education
Pine講座⑮ MACDを表示する
By yuya_takahashi_
Follow
Follow
Updated
Aug 1, 2019
3
0
6
6
Jul 1, 2019
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)
=====
Aug 1, 2019
Note
次の講座
Sep 25, 2019
Note
コードに間違いがありました。
= macd (close ,12 ,26 ,9)
↓ ↓ ↓
[macdLine, signalLine, histLine] = macd (close ,12 ,26 ,9)
Sep 25, 2019
Note
= macd (close ,12 ,26 ,9)
↓ ↓ ↓
[macdLine, signalLine, histLine] = macd (close ,12 ,26 ,9)
※[]を半角に直してお使いください
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_
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
.