I have a question regarding parameters. I found the start param is inclusive and the end param is exlusive on this forum, but I am unable to retrieve the data a s expected.
df=get_history(universe= "MCU0", fields= ["OPEN_PRC","HIGH_1","LOW_1","TRDPRC_1","CASH_SETL"],start='2024/12/6',end='2024/12/10')
[out]
MCU0 OPEN_PRC HIGH_1 LOW_1 TRDPRC_1 CASH_SETL
Date2024-12-09 9110 9103.5 9103.5 9118.98 9104
I'd like to retrieve the data for 2024/12/06. Is the start param exclusive?
Does it vary depending on the method?
Thank you in advance