Skip to content

Releases: scoofy/wxStocks

wxStocks v2.0: Python 3, ZODB, and XBRL support

09 May 22:26
Compare
Choose a tag to compare

New version!!! Woot, i finally got XBRL support working. Say goodbye to your free harddrive space as your database grows RAPIDLY! Throw a party for you and your friends as we all lose money in the markets together!

wxStocks v1.5.2 (beta) updatable (fixed x2) and cryptography release

18 Oct 21:46
Compare
Choose a tag to compare

wxStocks v1.5.2 (beta) updatable (fixed x2) and cryptography release

Firstly, these two release happened so close together, i've just made them one release. The 1.4 update was the Update update, as i've added an updater, so you don't have to start over when an new version is released. Simply download the new version, and run the updater in your home folder, and select the new folder and all your functional files will be updated to the new release! And totally without affecting your data! I think, probably.

Secondly, Fernet!!! (I sipped on some while writing the code). I've finally got rid of the mess that was pyCrypto + simplecrypt. I've had lots of problems with it sometimes loading, and sometimes corrupting files on save. It didn't work very well. It has been replaced by the cryptography library, namely, cryptography.fernet. The key generation is in the wxStocks.py library, and is generated via your password, and your bcrypt salt. This is all mostly secure, but using the bcrypt salt to generate the key, and having the key remain in the config file while running may be a security issue for some, but it should provide a lot of protection if your computer is lost or stolen.

On the downside, the ability to change the number of portfolios is temporarily gone, as i've been rebuilding the way portfolios work (a huge pain). Still, i think it all works better! Thanks for the support!

wxStocks v1.5.1 (beta) updatable and cryptography release (fixed)

17 Oct 23:48
Compare
Choose a tag to compare

wxStocks v1.5 (beta) updatable and cryptography release

Firstly, these two release happened so close together, i've just made them one release. The 1.4 update was the Update update, as i've added an updater, so you don't have to start over when an new version is released. Simply download the new version, and run the updater in your home folder, and select the new folder and all your functional files will be updated to the new release! And totally without affecting your data! I think, probably.

Secondly, Fernet!!! (I sipped on some while writing the code). I've finally got rid of the mess that was pyCrypto + simplecrypt. I've had lots of problems with it sometimes loading, and sometimes corrupting files on save. It didn't work very well. It has been replaced by the cryptography library, namely, cryptography.fernet. The key generation is in the wxStocks.py library, and is generated via your password, and your bcrypt salt. This is all mostly secure, but using the bcrypt salt to generate the key, and having the key remain in the config file while running may be a security issue for some, but it should provide a lot of protection if your computer is lost or stolen.

On the downside, the ability to change the number of portfolios is temporarily gone, as i've been rebuilding the way portfolios work (a huge pain). Still, i think it all works better! Thanks for the support!

wxStocks v1.5 (beta) updatable and cryptography release

14 Oct 22:02
Compare
Choose a tag to compare

wxStocks v1.5 (beta) updatable and cryptography release

Firstly, these two release happened so close together, i've just made them one release. The 1.4 update was the Update update, as i've added an updater, so you don't have to start over when an new version is released. Simply download the new version, and run the updater in your home folder, and select the new folder and all your functional files will be updated to the new release! And totally without affecting your data! I think, probably.

Secondly, Fernet!!! (I sipped on some while writing the code). I've finally got rid of the mess that was pyCrypto + simplecrypt. I've had lots of problems with it sometimes loading, and sometimes corrupting files on save. It didn't work very well. It has been replaced by the cryptography library, namely, cryptography.fernet. The key generation is in the wxStocks.py library, and is generated via your password, and your bcrypt salt. This is all mostly secure, but using the bcrypt salt to generate the key, and having the key remain in the config file while running may be a security issue for some, but it should provide a lot of protection if your computer is lost or stolen.

On the downside, the ability to change the number of portfolios is temporarily gone, as i've been rebuilding the way portfolios work (a huge pain). Still, i think it all works better! Thanks for the support!

wxStocks v1.3 (beta 4) true cross-platform release

13 Sep 22:02
Compare
Choose a tag to compare

I finally went in and changed all the gui items around so that it's truely a cross-platformer. Let me know if your gui looks shitty or weird and i'll try and help you. Now if you'll excuse me, i have to actually get back to the investing thing and stop all this working on my little investing framework.

wxStocks

This program is now in beta, but i'm still happy to accept any pull requests or suggestions if you want to help out.

Disclaimer: This program comes as is, and probably has some errors in it. This software should not be used as financial advice or financial analysis, it is for educational use only. Consult a financial advisor before, after, and even while using this software. Double check any calculations done by this software, and review all the code for errors before using. By using this software you release the author(s) from any liability regarding the use of this software. Please don't sue me. Sorry about the massive disclaimer, but finance programs are fairly litigious business.

wxStocks is a investment analysis program that could help teach you to scrape, screen, sort, and prepare a portfolio for learning about buying and selling equities.

Built using wx as its framework (specifically wxPython3.0-osx-cocoa-py2.7), and pyql as its scraping tool.

Requirements: Python 2.X, wxPython, NumPy

Nonessential but recommended: PyCrypto, simplecrypt, xlrd

License: AGPL

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Installation:

Python:

If you are running a mac or linux Python 2.X. To check, open your terminal and just type "python", which should lead to a prompt that looks like ">>>". You can then quit by typing "quit()". If that doesn't work, go here: https://www.python.org/downloads/

If you are running windows, go here and install python 2.X: https://www.python.org/downloads/

wxPython:

http://www.wxpython.org/download.php

Note: I built this using the cocoa build for OSX. I should work on all other builds though, but i've heard some of my friends are having problems while using ipython. Not sure what to do if you're having issue, this is a tough one.

Numpy:

http://docs.scipy.org/doc/numpy/user/install.html

PyCrypto (not required):

https://pypi.python.org/pypi/pycrypto

Good stack overflow article for windows: http://stackoverflow.com/questions/11405549/how-do-i-install-pycrypto-on-windows

Good article for OSX: http://osxdaily.com/2012/07/10/how-to-install-paramiko-and-pycrypto-in-mac-os-x-the-easy-way/

simplecrypt:

https://pypi.python.org/pypi/simple-crypt

xlrd:

https://pypi.python.org/pypi/xlrd

Screenshots:

OS X (Yosemite)
Portfolios
Sale Prep
Custom Analysis

Linux (Mint)
Linux
Windows (10)
Windows

wxStocks v1.2 (beta 3)

18 Nov 00:15
Compare
Choose a tag to compare

wxStocks

This program is now in beta, but i'm still happy to accept any pull requests or suggestions if you want to help out.

Disclaimer: This program comes as is, and probably has some errors in it. This software should not be used as financial advice or financial analysis, it is for educational use only. Consult a financial advisor before, after, and even while using this software. Double check any calculations done by this software, and review all the code for errors before using. By using this software you release the author(s) from any liability regarding the use of this software. Please don't sue me. Sorry about the massive disclaimer, but finance programs are fairly litigious business.

wxStocks is a investment analysis program that could help teach you to scrape, screen, sort, and prepare a portfolio for learning about buying and selling equities.

Built using wx as its framework (specifically wxPython3.0-osx-cocoa-py2.7), and pyql as its scraping tool.

Requirements: Python 2.X, wxPython, NumPy

Nonessential but recommended: PyCrypto, simplecrypt, xlrd

License: AGPL

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Installation:

Python:

If you are running a mac or linux Python 2.X. To check, open your terminal and just type "python", which should lead to a prompt that looks like ">>>". You can then quit by typing "quit()". If that doesn't work, go here: https://www.python.org/downloads/

If you are running windows, go here and install python 2.X: https://www.python.org/downloads/

wxPython:

http://www.wxpython.org/download.php

Note: I built this using the cocoa build for OSX. I should work on all other builds though, but i've heard some of my friends are having problems while using ipython. Not sure what to do if you're having issue, this is a tough one.

Numpy:

http://docs.scipy.org/doc/numpy/user/install.html

PyCrypto (not required):

https://pypi.python.org/pypi/pycrypto

Good stack overflow article for windows: http://stackoverflow.com/questions/11405549/how-do-i-install-pycrypto-on-windows

Good article for OSX: http://osxdaily.com/2012/07/10/how-to-install-paramiko-and-pycrypto-in-mac-os-x-the-easy-way/

simplecrypt:

https://pypi.python.org/pypi/simple-crypt

xlrd:

https://pypi.python.org/pypi/xlrd

Screenshots:

Portfolios
Custom Analysis
Sale Prep

wxStocks v1.1.0 (beta 2)

28 Oct 23:19
Compare
Choose a tag to compare

wxstocks_logo

This release has improved much of the sale prep process. Editing most forms now update other sections of the program. This is the first release i'll be using to do stock analysis (probably).

wxStocks v1.0.0 (beta)

19 Jul 09:13
Compare
Choose a tag to compare

I've just completed wxStocks, it appears to be fully functional, but i'm sure there are some bugs in there i missed. There is also a few things i still want to add down the road. Integration with pandas, better scrapers, etc. are all going to happen eventually.

wxstocks_logo