hi.. Brushed up against this problem on another post, way back, problem not solved, and the solution was a work around, using hours.
However, daily and 24hours might not be the same, depending on the start reference. Not looked into that and verified if it is or isn’t.
#jerome888 brings up a good point with the historical units.
5min x 12 per hr x 24hr = 1440 mins 1440mins/ 5min = 288 units per day 2days = 576 units
The reason for 2days is worst case scenario, from before the last bar on a day, back to the days open, then back another day to previous days open.
The default loaded historical units is about 500 at 25units setting, so not enough.
Further…
By comparing values from the test code below on 5min chart and daily candles on daily chart , you can see that:-
- The TF..(Daily) open[1] doesn’t give a value until a new day starts and the value it gives is the open at barindex = 0 or bar zero of the chart TF and not required value. This appears to happen even if you increase the units. Its not until the following day it reads right. This means you need enough bars to include the days open and days close before correct value resolved.
- Replacing the TF..(Daily) open[1] with Dopen[1], gives the correct value at bar zero, even with default historical bars loaded and the bar of the previous day isn’t available in the chart.
- Removing the daily timeframe and its code and just using Dopen[1] in the chart/default timeframes give required results.
Since open[1] version doesn’t render a value, straight away, it could be undefined. An undefined variable may cause calculation error. That what i’m thinking at the moment.
Further to your problem your psesudo code works without problem on its own, and previous experience leads to the conclusion that there is a conflict between other parts of your code which using TF Daily brings out and hours may not.
I’m unable to re-create error to investigate further, if you can post the full code, and screenshot of error message it could help toward solving problem if work around unsuitable. That’s not to say it can be solved!
Regards druby
TIMEFRAME(daily)
b = open[1]
c = Dopen(1)
TIMEFRAME(default)
d = Dopen(1)
return b coloured("red"), c coloured("green")style(dottedline,1),c coloured("yellow")style(dottedline,4)