TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Wrote a scraper for stock prices, what do I do with the data?

5 点作者 era86超过 12 年前
So, as a side project, I wrote a scraper in nodejs to scrape for stock price information for all companies on the stock market. Now, I have a wealth of stock price information.<p>My original plan was to write a simple moving average analyzer that tells me when averages cross above or below each other.<p>What else could I do with this data? Any interesting analytics I could do? Just curious to see what other hackers might do with this information.

2 条评论

ameister14超过 12 年前
Well, the truth is that predictive behavior stuff has been done before. So, maybe you could go another way; you could use it to track influence.<p>Say a NY Times article comes out about the american banking industry. You could track the price ripple from that back to the source article release time and check out how quickly it snowballs. You could probably actually use that over a series to find who is most influential and in what sector. That might be interesting.
评论 #4756746 未加载
Brewer超过 12 年前
I'm not sure what you'd do with the data itself, but if you want to build some interactive charts to show off your project, Highcharts[1] is a good way to go.<p>1: <a href="http://www.highcharts.com/" rel="nofollow">http://www.highcharts.com/</a>