Some time ago I came across an indicator that shows a daily candle on your chart, no matter what your chart timeframe is, so you can see at a glance what the day looks like. And of course you can do something similar in Chart Logic.
This is a strategy file for Chart Logic that creates a candlestick on your chart, displayed on the right-hand side of your chart. You'll need to have the chart "shift" turned on, so there is room on the right edge, because the candle will be placed at what would be 3-4 bars to the right of whatever your chart timeframe is.

The configuration for this is pretty straightforward:

There were some tricky bits though. To get the candle placed correctly I had to get the number of seconds in the current bar, and then create times on the chart for future candles that were offset by some multiples of this. In MQL4 you can get the number of seconds in a bar really easily, there's a function for that. I was considering whether I would need to add something to CL to get this number, and where the best place to add it would be. I may still do it. But then it occurred to me, I can get the number of seconds in the current timeframe's bar by subtracing the Time[] data for two adjacent candles. So I get Time[2] - Time [3], and that's the number of seconds. And then 4 candles in the future is just Time[0] + 4x(Time[2]-Time[3]). I had to make an adjustment in CL to allow it to work correctly when doing mathematical operations on datetimes, so be sure you have CL 1.2 or later for this one.