My my own personal market scanner I developed using Arc, jQuery & jqGrid.
Using every stock symbol on the TSX & TSXV the app goes out and web scrapes the last 200 days of history
from well known sites on the internet. It parses the files, loads into memory, creates a few data factors, and stores only the data of interest.
The interface code is jqGrid ( http://www.trirand.com/blog/ ) Have a look, I've been pretty impressed as the plugin has so many options, configurations
and integration points. One nice thing about it is that it already handles JSON for data feeds and callbacks. Arc, as you may know, has a few handy json parser/combinators for use: (see http://awwx.ws/). One thing about jqGrid is that it can be brutally slow on IE6.
Anyone find any grids that work well on IE6? Any insight here?
I've limited the data set to OG (Oil & Gas) just so I limit the page load and I will only leave up until Monday (by then I have to use to find my stocks again).
Check out the buttons on the bottom, there are some hidden fields to filter on. I chose the factors based upon Stan Weinstein's book:
( http://books.google.ca/books?id=k7dJZbOOkLEC&printsec=fr... )
I am posting the example for discussion sake. I don't plan to release the code since it's too heavily
integrated into a larger body of code. There's client side code for jqGrid that's exposed in the app if you're interested and I am more than willing to answer questions.
Ah, here's a technical question: are you using arc for html parsing? I couldn't see how to, so I just built my crawler with python and beautifulsoup writing json.
I just find the subset lines by finding start & end indicator points then write a custom parser for the subset section. I might be wrong, but for my needs a full-blown html parser would be much slower and I'm hitting the same file structure every time (for each stock).
All data is limited to the last 200 days so yes, but I don't store lowest, just highest and last and price prior to last. I plan to add more stuff, but I just got the basic stuff I need.
The Volume & Price Factors are the % of the last relative to the highest. I.E. Volume Factor 300 means the last volume is 300% greater than the highest (in 200 days), 100% means they are equal.
Price Pop is the percent the last is relative to the prior.
You can drill down by creating a query using the magnifying glass at the bottom.
You can move column order by using drag/drop within the column dialog.
Good questions- I was expecting technology questions. lol. :)
They are the highest 'close' attributes in the last 200 days. The volume would be the total volume for a day. The price would be the close price for a day.
The highest excludes the last close.
Header descriptions could be much better as you point out... I wasn't too worried as I had no plans for a product.