I have df containing randomly created dates in the current year.
df['timestamp_open'] = [randomtimestamp(start_year=2023,end_year=2023) for _ in range(len(df.index))]
I would need additional datetime column whose values are randomly higher, but not more than 5 days. Don't know how to do it
Edit: adding a fragment of df containing randomly created datetime, as per comment: