If you're using the TOC, then I think the answer is "no". But if you're rolling your own, and if the dates have a format that has something in common, then you can use nesting.
<$list filter="[tag[mytag]tags[]prefix[2018]sort[]]" variable=datetag >
<$list filter="[tag<datetag>tag[mytag]sort[]]">
<<currentTiddler>><br/>
</$list>
</$list>
The outer list finds the date tags (which I assume start with 2018) and feeds them to the next list one by one. The next list just finds tiddlers that match by the original tag and by the date tag.
-- Mark