Hi, As you can see below the code produces a DateListPlot for some Trading data. In the weekends there no trading and DateListPlot shows this in the plot by skipping these values and connecting the friday and mondays. This of course creates a "gap" between the friday and monday. How can I get the fridays and monday values next to each other? Is there an option to do this?
data = FinancialData["^AEX", {{2015, 1, 1}, {2015, 2, 1}}];
DateListPlot[data, Frame -> False, Ticks -> {data[[All, 1]], Automatic}, DateTicksFormat -> {"Day"}, ImageSize -> {600, 100}, AspectRatio -> 100/600.]

So the gap below between 09 and 12 I would have liked removed

thx for helping