vitvlkv

Time Frame Superimpose

630
Filled area shows a "candle body" of a higher time frame. So we get a superimposition of current and any other higher time frame on the same chart!
Request from here getsatisfaction.com/..._in_the_same_browser
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
study("Time Frame Superimpose", shorttitle="TFSupImp", overlay=true)
res = input("W", type=resolution)
o = security(tickerid, res, open)
c = security(tickerid, res, close)
col = c >= o ? lime : red
po = plot(o, color=col, title="Open")
pc = plot(c, color=col, title="Close")
fill(po, pc)