...d CRB Index (.TRCCRB)
I am trying to get the daily close price for for Baltic Exchange Supramax Index (.BSIS) and CRB Index (.TRCCRB) after the market closes. I run my script around 6:50pm UK time  but the close price for the current day come up as 0. This is my code below: 
start_date =str(datetime.date.today() - datetime.timedelta(80))
end_date = str(datetime.date.today()) 
df_real_time = ek.get_timeseries(['/.BSIS', '/.TRCCRB ' ],
                start_date = start_date,
                end_date   = end_date,
                fields     = ['*'],
                interval   = 'daily')