If you are interested in trading gaps in DAX, then DOW plotted in DAX's trading hours, will help you know whether the smoothed candle was a gap or not. Use a different script to plot yesterday's closing price. This will help you see the target for the gap close. Let me know if you find it helpful or not!

オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study("DOW GAP")
higherRes = input("15", type=resolution) 
is_newbar(res) =>
    t = time(res)
    change(t) != 0 ? 1 : 0
o = security("US30", higherRes, open)
h = security("US30", higherRes, high)
l = security("US30", higherRes, low)
c = security("US30", higherRes, close) 
plotcandle(is_newbar(higherRes) ? o : na, h, l, c, color=c >= o ? lime : red)