Morningstar Sweden
zynex
Source i (link to git-repo or to original if based on someone elses unmodified work):
© 2025 store.kde.org - The official KDE Store
All rights reserved. All trademarks are copyright by their respective owners. All contributors are responsible for their uploads.
Ratings & Comments
2 Comments
10 It works well for me. To install it: File FinancialTimesFund.txt must be copied to ${HOME}/.local/share/skrooge/quotes/FinancialTimesFund.txt
Just checked this online quote service and recognized two issues: 1. The date string captured by the date regex includes time and timezone, which fails with the given QDate format string 'MMM dd yyyy' . The date regex needs to be changed to something like Date=minutes, as of ([^\.]*)\s\d+: I removed alo the term with the '15' minutes to be more robust for further changes. 2. The website has been refactored to use javascript to include the related content, which means using KIO to download the page content will not return the request data anymore. (I guessed that SKGServices::downloadToStream uses KIO, at least with KMymoney, which uses KIO, parsing fails). A solution for this issue is to use QWebKit, which supports javascript out of the box. BTW: There is work in progress to add enhanced support of fetching and parsing online qoutes for finance applications to alkimia library based on QWebKit, GHNS, which will also be usable by skrooge (and other finance applications). If there is any interest, let me know for further informations.