Source i (link to git-repo or to original if based on someone elses unmodified work):

Add the source-code for this project on opencode.net

5
Become a Fan
5.7

Description:
Last changelog:

== 2.1 ==
- BUG: Stock is now left clickable only
- BUG: Link to the generic yahoo finance page instead of the au specific one
- ENHANCEMENT: KDE proxies are now supported
- ENHANCEMENT: Opacity is now configurable
- ENHANCEMENT: Currency conversions to 4 decimal places


== 2.0 ==
- Data engine backend
- Improved theme
- Improved percent display
- Clickable stocks link to yahoo finance
- Position/resize bug fixes
- Supports stock with commas in description
- Supports kde 4.2

== 1.1 ==
- All text colour is now configurable
- Added an icon
- remove redundant code

== 1.0 ==
- dynamic height
- configurable update period
- supports all yahoo stock quotes


Ratings & Comments

35 Comments

grepnix

Can't get this stock to show up? Any ideas? I've tried qrvo qorvo nasdaq=qorvo qorvo=nasdaq ...

hikaricore

Seems to need fixed, I havn't had working quotes for a couple months now. Probably a change to the Yahoo stock page which this sources from.

ab4bd

Will this work on KF5 Plasma 5?

ab4bd

ability to add high / low prices and trigger alarm or run a script if a price hits the low or high price. Still a handy widget, thanks.

ilba

Hi, very useful widget, but it stopped working in kde 4.8. Can you have a look at it? Thank you!

soulspit

This is exactly what I was looking for, and I'm glad it works with the latest KDE even though it hasn't been updated in a while - I'm on 4.7.1 and I haven't run into any problems. Kubuntu 11.04, got it through the repositories, package plasma-widget-stockquote. Perfect little widget, cheers.

lordcris

hello, this plasmoid should not use fixed precision to print the quotes. some tickers require precision 2 ( most of them ) but others require precision 4 (usdeur=x). you should keep the representation given by yahoo.

yelsn

I'm having trouble with some quotes: JACK GOOG COP JACK won't show up whatever I do and oddly enough GOOG and COP will only show whichever is higher in the list. Anything else I've entered has been fine. Can anyone else reproduce this? Anyone have any ideas?

Dalkhan

I propose you the next changement accordingly with the doc http://developer.kde.org/documentation/library/3.2-api/kio/html/classKRun.html void StockItem::mousePressEvent(QGraphicsSceneMouseEvent* event) { if (Qt::LeftButton == event->button()) { const QString url = "http://finance.yahoo.com/q?s=" + m_symbol; KRun::runUrl(url, 0, false, false); } } Thanks for the widget.

nicollivier

Hi and thanks for this great job... I've a little problem. I don't find the log file, so after each install, I must to enter all informations. And if I could keep log file that would be great. Thanks. Nico

gammadragon

This is a great plasma app, but I did have some trouble installing it. This should work: 1. Run the following command: sudo apt-get install build-essential cmake kdelibs5-dev 2. Run the commands in supplied INSTALL script "Stock Quote" should now appear in the "Add Widgets" list

dglent

Here a package for Mandriva 2009 spring http://www.mediafire.com/file/5nmunmz0dsg/plasma-applet-stockquote-2.0-1mdv2009.1.i586.rpm

dglent

rpm for the 2.1 version http://www.mediafire.com/file/mkdyzdyzzmm/plasma-applet-stockquote-2.1-1mdv2009.1.i586.rpm

bege

Follow-up of my previous mail Looking at the cpp code it appears that you using the qt interface for http interface (in a previous version it was KIO). This is the reason why the KDE proxy is not used. Do you have any plan to include the KDE proxy in a future version? BTW we are in KDE-look forum.

wintered

Hi Bege, I fixed this is 2.1 by switching back to a KIO job.

Moppel

Hi, Version 1 worked for me, version 2.0 doesn't. It doesn't display correclty. Text colour doesn't seem to be configurable anymore. When clicking on an (empty) entry yahoo only displays a site containing the text: "Error: Please enter a ticker symbol." I'll send you an eMail how it looks at my desktop

Moppel

The problems I'm seeing seem to result from the different access method used. Behind a proxy nothing is displayed whilst the same configuration works on a network without a proxy. Please reconsider using KIO again. Thanks!

bege

Can you tell which telecom stack are you using because my the stock plasmoid works fine from home but not from my work where there is a proxy. I tried to change the proxy setting in KDE but without success although Conqueror works fine.

buschmann23

The new click link feature is great, but would it be possible to localize it? Automatically or via a configuration option.

nellery

Hi, I've packaged this plasmoid for Ubuntu, and it is now in the official archive - https://launchpad.net/ubuntu/+source/plasmoid-stockquote

dawo

Great plasmoid - I really like it. Also nice improvements over the original widget. However, I have a few remarks concerning layout and functionality. (1) Not enough space is provided for decription of the ticker symbols (for example ^DJIs description shows as 'Dow Jones Industr' - resizing does not change the situation). (2) Currency quotes like 'EURDOL=X' don't show the changes (instead NAs are displayed) (3) Would be nice if a click on a quote would open a link to yahoo finance. (4) The style of the changes should maybe be displayed in the usual ticker form, i.e. absolute change (change in %), instead of absolute change- change in percent. (5) In my opinion it would be better to to display full name of an asset bold and the ticker symbol in normal font (or in brackets). Not the other way around (or provide an option which makes this possible). regards, dawo

wintered

Thanks for the feedback dawo. 1. Unfortunately, the yahoo API I am using has already truncated the description. 2. Slightly confused about this, but will look into it in the future 3. Done in v2.0! 4. Done in v2.0! 5. Oops, missed this one, and I probably agree. Will consider this for v2.1.

ghstwrtr

Is adding portfolio capability in your feature-adding plans? It would be nice to be able to indicate how many shares I own and the purchase price. That way I'll know exactly how much money I'm losing! Great plasmoid though. Very useful!

wintered

Hi ghstwrtr, I am thinking about this for the next version as it is something that I would use as well. Not very hard from the display point of view, but requires a major rework on the configuration dialog which is currently quite simply.

tkjacobsen

Name: kde-plasma-stock-quote Version: 1.1 Release: 1%{?dist} Summary: Stocks plasmoid Group: System/GUI/KDE License: GPL URL: http://www.kde-look.org/content/show.php/Stock+Quote?content=90695 Source0: 90695-plasma_stock_quote-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: kdebase-workspace-devel BuildRequires: cmake #Requires: %description Displays stock quotes on the desktop pulled from the yahoo servers. For finding the ticker symbols you have to go to finance.yahoo.com and search for your symbols (IE: ^DJI, ^IXIC). %prep %setup -q -n plasma_stock_quote-%{version} %build mkdir -p builddir cd builddir %cmake_kde4 .. make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT cd builddir make install DESTDIR=$RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %{_libdir}/kde4/plasma_applet_stock_quote.so %{_kde4_sharedir}/kde4/services/plasma_applet_stock_quote.desktop %doc %changelog * Fri Dec 12 2008 Troels Kofoed Jacobsen <tkjacobsen@gmail.com> - initial package

Pling
0 Affiliates
Details
license
version 2.1
updated
added
downloads 24h 0
mediaviews 24h 0
pageviews 24h 7

Other Plasma 4 Extensions:

Icon Tasks deb build
N00bun2
last update date: 13 years ago

Score 4.3

Prayer Times Plasmoid
riyad
last update date: 12 years ago

Score 5.2

KPrayertime4 Islamic Prayer Times
ahaq
last update date: 15 years ago

Score 4.4

Hostinfo
mgraesslin
last update date: 13 years ago

Score 4.7

Monitor QuadCore Russian
kuchumovn
last update date: 16 years ago

Score 5.0

blaKjaK
werevire
last update date: 15 years ago

Score 5.0