bugfixing

This commit is contained in:
MuslemRahimi 2025-03-14 13:36:58 +01:00
parent 1a34c09c0e
commit 27d8958e7c

View File

@ -1621,7 +1621,7 @@ async def get_ipo_calendar(con, symbols):
"name": entry.get("company"),
"ipoDate": entry.get("date"),
"ipoPrice": entry.get("ipoPrice"),
"currentPrice": entry.get("currentPrice"),
"currentPrice": round(entry.get("currentPrice"), 2) if entry.get("currentPrice") is not None else None,
"return": entry.get("return"),
})
except Exception as e: