Monodroid Android app for monitoring your stock portfolio
Find a file
2011-03-20 15:55:58 -04:00
libs removed some unused files 2011-03-20 15:55:58 -04:00
MonoDroid.LumenWorks.Framework.IO.Csv hammered out race conditions in Portfolio Presenter tests finally, also renamed the CSV folder to reflect the new CSV library I'm using 2011-03-15 22:58:47 -04:00
MonoStockPortfolio refactored edit-position to MVP, wrote tests, completely removed old validation stuff 2011-03-19 23:21:12 -04:00
MonoStockPortfolio.Core mvp refactor of the edit-portfolio activity, also half-way refactoring the Validation framework stuff 2011-03-16 23:05:49 -04:00
MonoStockPortfolio.Entities I have screwed up something in git 2011-02-05 20:48:55 -05:00
MonoStockPortfolio.Tests refactored edit-position to MVP, wrote tests, completely removed old validation stuff 2011-03-19 23:21:12 -04:00
packages removed some unused files 2011-03-20 15:55:58 -04:00
.gitignore added readme 2010-11-02 14:02:52 -04:00
MonoStockPortfolio.sln hammered out race conditions in Portfolio Presenter tests finally, also renamed the CSV folder to reflect the new CSV library I'm using 2011-03-15 22:58:47 -04:00
README updated readme to reflect CSV library changes 2011-03-15 23:02:09 -04:00

Monodroid Stock Portfolio
=========================

Updates
-------

3/15/2011 - I'm no longer using FileHelpers, since I can't get it to work with MonoDroid anymore (even with compiling it myself)
			so I switched to LumenWorks.Framework.IO.Csv because writing CSV parsing is a hard problem that I don't need to solve again

What...? Why...?
----------------

This is a rewriting of a Windows Mobile project I wrote for my own personal use, since I have
recently switched from Windows Mobile to Android.

I am using Monodroid since I'm not good at Java, and I couldn't get PhoneGap to work right.
Also, I can (partly) reuse the libraries I created for the Windows Mobile app.

By hosting this project on github, I will be providing this app as an open-source app for other
Monodroid devs to learn from, as well as help myself learn how to use git.

Notes
-----

I originally used db4o for the persistence of this app, but since the Mono version of db4o seems to
be a bit behind, and it also seems a little silly to run a conversion of a conversion on top of
another conversion, so I just switched it over to using Sqlite, since it's not that complex of a
domain anyway.

To get stock quotes, I'm using a Yahoo API coupled with the FileHelpers library
(since the Yahoo API outputs a CSV)