Yahoo Finance online quote date format problem

Retrieving a stock online quote from Yahoo Finance for VATE (NYSE) returns the error:
Unable to parse symbol for VATE
Price found: ‘8.29’ (8.29)
Date found: ‘1743105602’
Date format found: ‘1743105602’ → ‘’
Received an invalid price for VATE, unable to update.

Yahoo Finance returns the date as a Posix integer, which seems to be the problem.

The URL I use is: https://query2.finance.yahoo.com/v8/finance/chart/%1?symbol=%1&modules=price

The Price field is selected using: “regularMarketPrice”:((\d+|\d{1,3}(?:[,]\d{3})).\d+)

The Date field is selected using: “regularMarketTime”:([\d]+)

Can someone confirm that the problem is the inability to convert the Posix date format to KMyMoney’s internal format?

Yes, that is true. Use the master (aka development) version and set the date format to %u to fix it.

Thanks. That fixed it.