yuya_takahashi_

銅、アルミ、亜鉛の在庫情報を取得するインジケーター

Education
COMEX:HG1!   Copper Futures
メジャーな貴金属の情報はありませんが、
Quandlの情報からこんなインジケーターを作成することもできます。

前日比(%)のヒストグラムです。

※ コピペする場合は以下の変更を行ってください
[](全角の角括弧)→(半角の角括弧)
(全角スペース)→(半角スペース)

=====
//@version=3
study("ロンドン金属取引所の在庫情報を取得", overlay=false)

metal = input(defval='CU', title='Metal', options=['AL','CU','ZI'])

stBase = 'QUANDL:LME/ST_'
stSym = stBase + metal + '_ALL'

st = security( stSym,'D', close[0])
stChange = (( st[0] - st[1]) / st[1]) * 100

stCol = stChange > 0 ? red : green
plot( stChange ,title='Inventory Level Changes (In %)' , color=stCol ,linewidth=3 ,style=columns )
=====

小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q

小次郎講師のLINE@
bit.ly/2VZQFu3

小次郎講師のチャート情報局
bit.ly/2GvLAEp
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.