fixed bug portfolio days not updating

This commit is contained in:
Justin 2023-07-11 16:04:56 +08:00 committed by GitHub
parent f3f99e6ee6
commit 356546558e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -946,9 +946,9 @@ def savePortfolioCryptoSettings():
symbol1 = settings['symbol']
days1 = settings['days']
day_start = datetime.datetime.strptime(str(days1), "%Y-%m-%d")
day_today = datetime.datetime.strptime(datetime.datetime.now(pytz.utc).strftime("%Y-%m-%d"), "%Y-%m-%d")
days1 = str((day_today - day_start).days)
# day_start = datetime.datetime.strptime(str(days1), "%Y-%m-%d")
# day_today = datetime.datetime.strptime(datetime.datetime.now(pytz.utc).strftime("%Y-%m-%d"), "%Y-%m-%d")
# days1 = str((day_today - day_start).days)
portfolio['symbols'][symbol1] = {'shares':shares1, 'day':days1, 'cost':cost1}