Missing / data delay?

Using alpaca python api. Why do I have the last hour missing in the minute data? Also the data between every 20 minutes is missing. What can I do to get latest data?

symbols = [‘DLA’,‘AAPL’]

datatest = api.get_barset(
symbols=symbols,
timeframe=‘minute’,
limit=30,
end=formatted_time)


datatest['DLA']

[Bar({'c': 10.875, 'h': 10.875, 'l': 10.875, 'o': 10.875, 't': 1586893800, 'v': 200}),
 Bar({'c': 10.25, 'h': 10.28, 'l': 10.25, 'o': 10.28, 't': 1586961000, 'v': 400}),
 Bar({'c': 10.31, 'h': 10.31, 'l': 10.31, 'o': 10.31, 't': 1586967000, 'v': 200}),
 Bar({'c': 10.295, 'h': 10.295, 'l': 10.295, 'o': 10.295, 't': 1586967180, 'v': 200}),
 Bar({'c': 10.495, 'h': 10.495, 'l': 10.495, 'o': 10.495, 't': 1586979120, 'v': 200}),
 Bar({'c': 10.63, 'h': 10.63, 'l': 10.63, 'o': 10.63, 't': 1586979180, 'v': 600}),
 Bar({'c': 10.32, 'h': 10.32, 'l': 10.32, 'o': 10.32, 't': 1587045660, 'v': 400}),
 Bar({'c': 10.155, 'h': 10.155, 'l': 10.155, 'o': 10.155, 't': 1587048240, 'v': 200}),
 Bar({'c': 10, 'h': 10, 'l': 10, 'o': 10, 't': 1587054060, 'v': 400}),
 Bar({'c': 9.82, 'h': 9.82, 'l': 9.82, 'o': 9.82, 't': 1587055500, 'v': 400}),
 Bar({'c': 9.78, 'h': 9.78, 'l': 9.78, 'o': 9.78, 't': 1587056880, 'v': 200}),
 Bar({'c': 9.62, 'h': 9.62, 'l': 9.62, 'o': 9.62, 't': 1587057540, 'v': 820}),
 Bar({'c': 9.59, 'h': 9.59, 'l': 9.59, 'o': 9.59, 't': 1587058620, 'v': 200}),
 Bar({'c': 10.39, 'h': 10.39, 'l': 10.39, 'o': 10.39, 't': 1587130200, 'v': 400}),
 Bar({'c': 10.72, 'h': 10.72, 'l': 10.72, 'o': 10.72, 't': 1587130680, 'v': 200}),
 Bar({'c': 10.825, 'h': 10.825, 'l': 10.825, 'o': 10.825, 't': 1587130920, 'v': 400}),
 Bar({'c': 11.17, 'h': 11.17, 'l': 11.17, 'o': 11.17, 't': 1587131040, 'v': 200}),
 Bar({'c': 11.13, 'h': 11.13, 'l': 11.13, 'o': 11.13, 't': 1587131700, 'v': 200}),
 Bar({'c': 11.25, 'h': 11.25, 'l': 11.25, 'o': 11.25, 't': 1587132060, 'v': 200}),
 Bar({'c': 11.18, 'h': 11.18, 'l': 11.18, 'o': 11.18, 't': 1587133320, 'v': 200}),
 Bar({'c': 11.18, 'h': 11.18, 'l': 11.18, 'o': 11.18, 't': 1587133380, 'v': 1000}),
 Bar({'c': 11.17, 'h': 11.17, 'l': 11.17, 'o': 11.17, 't': 1587135480, 'v': 800}),
 Bar({'c': 10.815, 'h': 10.815, 'l': 10.815, 'o': 10.815, 't': 1587137940, 'v': 200}),
 Bar({'c': 10.765, 'h': 10.765, 'l': 10.765, 'o': 10.765, 't': 1587138420, 'v': 200}),
 Bar({'c': 10.765, 'h': 10.765, 'l': 10.765, 'o': 10.765, 't': 1587140280, 'v': 200}),
 Bar({'c': 10.675, 'h': 10.675, 'l': 10.675, 'o': 10.675, 't': 1587142260, 'v': 200}),
 Bar({'c': 10.74, 'h': 10.74, 'l': 10.74, 'o': 10.74, 't': 1587143760, 'v': 600}),
 Bar({'c': 10.51, 'h': 10.51, 'l': 10.51, 'o': 10.51, 't': 1587147960, 'v': 202}),
 Bar({'c': 10.485, 'h': 10.485, 'l': 10.485, 'o': 10.485, 't': 1587148140, 'v': 1400}),
 Bar({'c': 10.53, 'h': 10.53, 'l': 10.53, 'o': 10.53, 't': 1587149340, 'v': 210})]