487 views
One of the most important thing to understand in order to estimate the trend direction and its continuation is how the lower time frame candlesticks have been formed.
There are many processes by which candlesticks have been formed even if same size.
So in this script, daily candlestick is overlapped on the currently chart as default, and that can be changed.
Only real body is shown so as not to interfere with the currently chart.
There are many processes by which candlesticks have been formed even if same size.
So in this script, daily candlestick is overlapped on the currently chart as default, and that can be changed.
Only real body is shown so as not to interfere with the currently chart.
リリースノート:
I added High/Low line which are able to switch ON/OFF.
Default: off
Default: off
コメント
sec_open = security(syminfo.tickerid, res, high, lookahead=barmerge.lookahead_on)
sec_close = security(syminfo.tickerid, res, low, lookahead=barmerge.lookahead_on)
You would still need open/close for the BullishColor/BearishColor rules, and using high/low only might affect real-time painting, so it might not be ideal. Hope this is helpful for you