You can subscribe to this list here.
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2010 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
(3) |
Jun
(4) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
|
From: Nigel <nj....@sk...> - 2017-11-08 09:55:01
|
Is anybody out there or has this project died? |
|
From: Laurentiu M. <la...@mr...> - 2010-08-26 10:04:05
|
We are proud to announce Chartsy 1.3, the latest public release of the open source stock charting software Chartsy. Here's what's new: - favorites window - TA-Lib integration with many new indicators and overlays, thanks to Josh Taylor for that! - StockScanPRO integration - Text annotation - NetBeans Platform upgrade to 6.9 At the same time we're launching a new website design. Things are now easier to find and it's easier to join our community, just use your Chartsy application registration data to login to the website. Chartsy is built on the NetBeans Platform and it can be installed on Windows, MacOS and Linux. It's a modular application that can be extended with datafeed, indicator, overlay and annotation plugins. Please visit http://www.chartsy.org to download and to join our community. The Chartsy development team. -- Dipl. Eng. Laurentiu Matei MrSwing Senior Engineer www.mrswing.com |
|
From: Josh T. <nli...@ya...> - 2010-06-06 18:39:22
|
Good News for Ta-Lib integration. It is nearly complete. I figured out the integration for TA-Lib into Chartsy. I used Parabolic SAR. The great news is that everything fits nice and neatly into the Calculate() method. The even better news is that it will basically be the exact same approach over and over for all 200 hundred indicators in the library. And the final bit of good news is that I was able to implement the ultra-fast calculation pattern that I sent out a couple weeks ago. Here's what I need to do before I submit it: 1) create DefaultPainter.dots(...); I'm using DefaultPainter.line(...) right now but the data points are precisely correct so it's just a matter of redrawing them. No sweat there.2) run speed execution tests within Chartsy3) Document and provide outputs to the tests 4) Document in a word doc or pdf the entire process. It's actually really straight forward now since anyone can basically copy/paste and change a line or two depending on the indicator. But clear documentation of what is being done still needs to be completed for sanity's sake and for others who have questions later on. Look for the code to be submitted later this week or maybe next weekend. I have two other groups who are interested or need the information on how to do a working TA-Lib integration into an application using the fast calculations. I need to knock out everything that's required for them along those lines and also complete one more round of testing. Everything looks like it's working exactly as designed. BTW, thanks for creating such a sound architecture for Chartsy. I was quite surprised once I started the integration to see such solid work with threads, synchronization, abstractions, loose coupling, etc. Every time I worried about those things while I was doing this integration I found that the answers were already applied. Top-notch work! I'll be sticking with the development of indicators for a while before I focus on the other pieces that I'm most interested in. josh --- On Fri, 6/4/10, Josh Taylor <nli...@ya...> wrote: From: Josh Taylor <nli...@ya...> Subject: [Chartsy-devel] Nevermind! I figured it out... To: cha...@li..., cha...@li... Date: Friday, June 4, 2010, 11:04 PM Ok first, I'll be more careful about spamming this group for no reason from now on. I figured out what was going on. It's not in any books I have or even online but here's the output from the compile that I wasn't reading carefully: taskdefs:common-init:projectized-common.basic-init:basic-init:files-init:testuserdir-delete:test-clean:test.unit.folderScanning for modules in C:\Program Files (x86)\NetBeans 6.9M1\platformScanning for modules in suite C:\Users\home\Documents\NetBeansProjects\Chartsy\trunk\Chartsywarning: had to upgrade dependencies for module org.chartsy.sma: added = [module org.openide.util.lookup > 8.0] removed = []; details: [#170056: Separate module for Lookup API]test.qa-functional.folderwarning: had to upgrade dependencies for module org.chartsy.sma: added = [module org.openide.util.lookup > 8.0] removed = []; details: [#170056: Separate module for Lookup API]clean:Deleting: C:\Users\home\Documents\NetBeansProjects\Chartsy\trunk\Chartsy\build\cluster\update_tracking\org-chartsy-sma.xmltaskdefs: You'll see that Netbeans is compensating for the old way of doing Lookup when it compiles because it's aware of the new library "behind the scenes." Pretty slick, but pretty deceptive as well. It doesn't correct the code in the .java file but it corrects the code that needs to be compiled and ends up in the .class file. I'm not sure I like this approach for the compiler. I was going batty trying to figure out what the heck was going on. It seems counter-intuitive or at least incomplete. Eclipse doesn't do that, nor does JBuilder nor any other Java compiler I've used in the past. If the library cannot be found (as it indicates in the .java file through the intellisense), it's flagged and the build fails. But not with Netbeans. I fear this could lead to bad things in the long term. They need to do something better than a tiny little red text line that shows up in what is ultimately a gigantic output of build statements. Someone new to Netbeans like me is guaranteed to miss it the first 10 times they glance over it. Respectfully,josh --- On Fri, 6/4/10, Josh Taylor <nli...@ya...> wrote: From: Josh Taylor <nli...@ya...> Subject: Re: [Chartsy-devel] YouTube Channel To: cha...@li..., cha...@li... Date: Friday, June 4, 2010, 9:01 PM All, I'm using Netbeans 6.9M1 and I'm getting an error from the most recent Chartsy build on the OverlayNode.java class. "error: org.openide.util.lookup.Lookup does not exist" I'm new to Netbeans and did some research. There is a Lookup API now that is supposed to be used unless I'm misreading something. I need to know two things: 1) How did you guys get it to compile and not throw this error? I'm assuming you have an older library that you are referencing. Where can I get it? 2) Why in the world is my build of the Chartsy v1.2 compiling without errors while at the exact same time showing the above error on every OverlayNode.java class in the project (Red Stop Signs)? It shouldn't be compiling at all but it compiles perfectly. Something isn't set correctly in my Netbeans I think but I have several Netbeans books and references online as well and nothing is giving me a clue why this is. I've never seen this behavior before anywhere. Josh --- On Fri, 6/4/10, Laurentiu Matei <la...@mr...> wrote: From: Laurentiu Matei <la...@mr...> Subject: [Chartsy-devel] YouTube Channel To: cha...@li..., cha...@li... Date: Friday, June 4, 2010, 10:16 AM Hi, Today we launched the YouTube channel for Chartsy: http://www.youtube.com/user/chartsyorg For now you can find there the tutorial and also a video for developers showing how to add a module. With this video, the developer documentation at www.chartsy.org and by looking at the existing modules developers should be able to add new modules. Please don't hesitate to write to the lists if you need any kind of help (user or developer). Also please let us know what features do you miss more so we can change development priorities if needed. Regards, -- Dipl. Eng. Laurentiu Matei MrSwing Senior Engineer www.mrswing.com ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Chartsy-devel mailing list Cha...@li... https://lists.sourceforge.net/lists/listinfo/chartsy-devel -----Inline Attachment Follows----- ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo -----Inline Attachment Follows----- _______________________________________________ Chartsy-devel mailing list Cha...@li... https://lists.sourceforge.net/lists/listinfo/chartsy-devel -----Inline Attachment Follows----- ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo -----Inline Attachment Follows----- _______________________________________________ Chartsy-devel mailing list Cha...@li... https://lists.sourceforge.net/lists/listinfo/chartsy-devel |
|
From: Josh T. <nli...@ya...> - 2010-06-05 03:04:43
|
Ok first, I'll be more careful about spamming this group for no reason from now on. I figured out what was going on. It's not in any books I have or even online but here's the output from the compile that I wasn't reading carefully: taskdefs:common-init:projectized-common.basic-init:basic-init:files-init:testuserdir-delete:test-clean:test.unit.folderScanning for modules in C:\Program Files (x86)\NetBeans 6.9M1\platformScanning for modules in suite C:\Users\home\Documents\NetBeansProjects\Chartsy\trunk\Chartsywarning: had to upgrade dependencies for module org.chartsy.sma: added = [module org.openide.util.lookup > 8.0] removed = []; details: [#170056: Separate module for Lookup API]test.qa-functional.folderwarning: had to upgrade dependencies for module org.chartsy.sma: added = [module org.openide.util.lookup > 8.0] removed = []; details: [#170056: Separate module for Lookup API]clean:Deleting: C:\Users\home\Documents\NetBeansProjects\Chartsy\trunk\Chartsy\build\cluster\update_tracking\org-chartsy-sma.xmltaskdefs: You'll see that Netbeans is compensating for the old way of doing Lookup when it compiles because it's aware of the new library "behind the scenes." Pretty slick, but pretty deceptive as well. It doesn't correct the code in the .java file but it corrects the code that needs to be compiled and ends up in the .class file. I'm not sure I like this approach for the compiler. I was going batty trying to figure out what the heck was going on. It seems counter-intuitive or at least incomplete. Eclipse doesn't do that, nor does JBuilder nor any other Java compiler I've used in the past. If the library cannot be found (as it indicates in the .java file through the intellisense), it's flagged and the build fails. But not with Netbeans. I fear this could lead to bad things in the long term. They need to do something better than a tiny little red text line that shows up in what is ultimately a gigantic output of build statements. Someone new to Netbeans like me is guaranteed to miss it the first 10 times they glance over it. Respectfully,josh --- On Fri, 6/4/10, Josh Taylor <nli...@ya...> wrote: From: Josh Taylor <nli...@ya...> Subject: Re: [Chartsy-devel] YouTube Channel To: cha...@li..., cha...@li... Date: Friday, June 4, 2010, 9:01 PM All, I'm using Netbeans 6.9M1 and I'm getting an error from the most recent Chartsy build on the OverlayNode.java class. "error: org.openide.util.lookup.Lookup does not exist" I'm new to Netbeans and did some research. There is a Lookup API now that is supposed to be used unless I'm misreading something. I need to know two things: 1) How did you guys get it to compile and not throw this error? I'm assuming you have an older library that you are referencing. Where can I get it? 2) Why in the world is my build of the Chartsy v1.2 compiling without errors while at the exact same time showing the above error on every OverlayNode.java class in the project (Red Stop Signs)? It shouldn't be compiling at all but it compiles perfectly. Something isn't set correctly in my Netbeans I think but I have several Netbeans books and references online as well and nothing is giving me a clue why this is. I've never seen this behavior before anywhere. Josh --- On Fri, 6/4/10, Laurentiu Matei <la...@mr...> wrote: From: Laurentiu Matei <la...@mr...> Subject: [Chartsy-devel] YouTube Channel To: cha...@li..., cha...@li... Date: Friday, June 4, 2010, 10:16 AM Hi, Today we launched the YouTube channel for Chartsy: http://www.youtube.com/user/chartsyorg For now you can find there the tutorial and also a video for developers showing how to add a module. With this video, the developer documentation at www.chartsy.org and by looking at the existing modules developers should be able to add new modules. Please don't hesitate to write to the lists if you need any kind of help (user or developer). Also please let us know what features do you miss more so we can change development priorities if needed. Regards, -- Dipl. Eng. Laurentiu Matei MrSwing Senior Engineer www.mrswing.com ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Chartsy-devel mailing list Cha...@li... https://lists.sourceforge.net/lists/listinfo/chartsy-devel -----Inline Attachment Follows----- ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo -----Inline Attachment Follows----- _______________________________________________ Chartsy-devel mailing list Cha...@li... https://lists.sourceforge.net/lists/listinfo/chartsy-devel |
|
From: Josh T. <nli...@ya...> - 2010-06-05 01:01:39
|
All, I'm using Netbeans 6.9M1 and I'm getting an error from the most recent Chartsy build on the OverlayNode.java class. "error: org.openide.util.lookup.Lookup does not exist" I'm new to Netbeans and did some research. There is a Lookup API now that is supposed to be used unless I'm misreading something. I need to know two things: 1) How did you guys get it to compile and not throw this error? I'm assuming you have an older library that you are referencing. Where can I get it? 2) Why in the world is my build of the Chartsy v1.2 compiling without errors while at the exact same time showing the above error on every OverlayNode.java class in the project (Red Stop Signs)? It shouldn't be compiling at all but it compiles perfectly. Something isn't set correctly in my Netbeans I think but I have several Netbeans books and references online as well and nothing is giving me a clue why this is. I've never seen this behavior before anywhere. Josh --- On Fri, 6/4/10, Laurentiu Matei <la...@mr...> wrote: From: Laurentiu Matei <la...@mr...> Subject: [Chartsy-devel] YouTube Channel To: cha...@li..., cha...@li... Date: Friday, June 4, 2010, 10:16 AM Hi, Today we launched the YouTube channel for Chartsy: http://www.youtube.com/user/chartsyorg For now you can find there the tutorial and also a video for developers showing how to add a module. With this video, the developer documentation at www.chartsy.org and by looking at the existing modules developers should be able to add new modules. Please don't hesitate to write to the lists if you need any kind of help (user or developer). Also please let us know what features do you miss more so we can change development priorities if needed. Regards, -- Dipl. Eng. Laurentiu Matei MrSwing Senior Engineer www.mrswing.com ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Chartsy-devel mailing list Cha...@li... https://lists.sourceforge.net/lists/listinfo/chartsy-devel |
|
From: Laurentiu M. <la...@mr...> - 2010-06-04 14:17:00
|
Hi, Today we launched the YouTube channel for Chartsy: http://www.youtube.com/user/chartsyorg For now you can find there the tutorial and also a video for developers showing how to add a module. With this video, the developer documentation at www.chartsy.org and by looking at the existing modules developers should be able to add new modules. Please don't hesitate to write to the lists if you need any kind of help (user or developer). Also please let us know what features do you miss more so we can change development priorities if needed. Regards, -- Dipl. Eng. Laurentiu Matei MrSwing Senior Engineer www.mrswing.com |
|
From: Laurentiu M. <la...@mr...> - 2010-05-31 16:03:50
|
We are proud to announce Chartsy 1.2, the latest public release of the open source stock charting software Chartsy. Here's what's new: - symbol search - resizable indicator area - indicator controls (minimize, restore, remove) - MrSwing EOD feeds (including global coverage) - 13 indicators - 5 overlays - many bugfixes Chartsy is built on the NetBeans Platform and it can be installed on Windows, MacOS and Linux. It's a modular application that can be extended with datafeed, indicator, overlay and annotation plugins. Please visit www.chartsy.org to download and to join our community. The Chartsy development team. -- Dipl. Eng. Laurentiu Matei MrSwing Senior Engineer www.mrswing.com |
|
From: Laurentiu M. <la...@mr...> - 2010-05-10 13:16:00
|
On 5/4/2010 4:30 AM, Rajiv Vyas wrote: > This seems mostly like a charting software. Are there any plans to add > "scan" and "systems". > Yes, we plan do implement a full blown trading solution. For now we are concentrating on basic charting, then we can move on. -- Dipl. Eng. Laurentiu Matei MrSwing Senior Engineer www.mrswing.com |
|
From: Rajiv V. <ra...@gm...> - 2010-05-04 01:39:11
|
This seems mostly like a charting software. Are there any plans to add "scan" and "systems". Thanks, -- Rajiv |
|
From: Chartsy.org <new...@ch...> - 2010-04-01 08:58:41
|
Chartsy, I'll keep this short as I know you're busy, I just got word from my inside contact at MarketClub, that they're opening up the premium service for a no cost 2 week trial! Get instant access here: http://www.ino.com/info/539/CD131/&dp=0&l=0&campaignid=8 There are 4 powerful tools available to members that you, as a free trial member, will have access to. Smart Scan, Trade School, Chart Analysis, and Data Central will be opened up just for you. The other major bonus about this trial is that their, customer support team will be providing UNLIMITED support! You can call or email for an instant response (I know because I've used it) to any question, comment or concern. They've added another support person (hired a month ago just to train her) to ensure that all calls and emails get answered as quickly as possible. Here's that link again: http://www.ino.com/info/539/CD131/&dp=0&l=0&campaignid=8 I'll get you more info a little bit later, but I'd recommend you jump on this now. May the Swing be With You Larry Swing Edit Your Profile: http://listmail.mrswing.com/edit.php?u=b85e90b To stop further mailings: http://listmail2.mrswing.com/rem.php?u=b85e90b MrSwing Inc 14781 Memorial Dr. Office # 991 Houston, TX 77079 +1.360.566.2281 http://www.mrswing.com |
|
From: Chartsy.org <new...@ch...> - 2010-03-30 09:39:24
|
********************************************************************** LAST CHANCE: On Wednesday, March 31st, The guys over at Options University will be unveiling their new Trade Alert service where you can get potentially profitable trade ideas delivered right to your inbox... Here's the best part: they are going to let you test drive it for 14 days. -AND- Some of you will get a bonus valued at $497 just for trying it out. Here is the link to register: www.optionsuniversity.com/iscript.php?3440_A97515_21788 ********************************************************************** Hi Chartsy, I have some exciting news for you... Options University is about to open the doors to a new service that is the closest thing to being on the trading floor that I've ever seen. That's saying a lot. And here's the best part... you don't need travel to New York or Chicago to take advantage of this powerful new trading 'weapon'. If you're interested in learning about this new service that practically takes all of the guesswork out of trading options, go ahead and register for one of two preview webinars that are on Wednesday, March 31st. Follow the link below to register: ******************************************************************* www.optionsuniversity.com/iscript.php?3440_A97515_21788 ******************************************************************* Options trading expert Greg Loehr, who's responsible for managing an options portfolio that EXCEEDED $100 Million... is now running this new service that alerts you when he finds his next potentially profitable trade. Sound too good to be true? And the best part is... He doesn't leave you hanging after that. He'll be working that trade for profit, and sending you an email at the exact moment he sees the perfect trade setup. Let's face it. Life is busy enough. Most of us don't have time to sit in front of the market all day. So this service is perfect for those of you who: - Have little time to trade. - Just want to have profitable trades sent to you. - Want to spend less time trading and more time living. No classes to sit through, no courses to read, no software to subscribe to...all you have to do is open up his email, read a few paragraphs of what he will be trading and why, and then decide for yourself if it fits into your trading portfolio. If it does, GREAT! Game on. If it doesn't, wait for a trade that is more in line with your risk level. You don't even have to know the reasons for the trade. Just trade it. So, here's what's happening... There will be two preview webinars for this dynamic service on Wednesday, March 31st. Seats are limited, so I urge you to follow the link below to reserve your "virtual seat" right now before they fill up... www.optionsuniversity.com/iscript.php?3440_A97515_21788 Attend this webinar. You can thank me later. May the Swing be With You Larry Swing P.S. Imagine being able to take action on potentially HUGE trading p.r.o.f.i.t.s with virtually no effort on your part... And professional Options traders do all the work for you. To learn how you can test out the new Options University Trade Alert service F.R.E.E for 14 days (and be one of the lucky attendees to get a $497 bonus) follow this link immediately as space is limited: www.optionsuniversity.com/iscript.php?3440_A97515_21788 Edit Your Profile: http://listmail.mrswing.com/edit.php?u=b85e90b To stop further mailings: http://listmail2.mrswing.com/rem.php?u=b85e90b MrSwing Inc 14781 Memorial Dr. Office # 991 Houston, TX 77079 +1.360.566.2281 http://www.mrswing.com |
|
From: Chartsy.org <new...@ch...> - 2010-03-26 10:53:14
|
Dear Chartsy users, This is just a short note to let you know that a new version of Chartsy has been released, 1.1. You can use Help->Check for updates to update or you can download the new installer from www.chartsy.org. We also have some new indicators that I'm sure you'll appreciate in Tools->Plugins. This project is still in its early days so we'd really appreciate your feedback. You can use the forum, join mailing lists, post bugs or feature requests in our Community page: http://www.chartsy.org/community If you want to join the project (development, documentation, artwork) please join the developers mailing list and let us know how can you help: https://lists.sourceforge.net/lists/listinfo/chartsy-devel Best regards, Laurentiu "Lars" Matei MrSwing Senior Engineer. To stop further mailings: http://listmail2.mrswing.com/rem.php?u=b85e90b |
|
From: Laurentiu \Lars\ M. <la...@mr...> - 2009-10-22 14:42:57
|
another test Lars |