Trading Analytics

The trading analytics were originally a part of the general-Haskell library of modules, but it, [seer], has grown into its own now. We now have our own page. YAY! Happy dance!

Analytics are all about the fun, don't you know.

So, here is the Analytics.Trading library of modules:
Most of the above modules are NOT being used at present, as they presuppose a trading system with a portfolio, and no such integration exists.

There are, however tools that do use some of the above modules. We have the
  • scraper, which extracts the top 5s from google's finance page:
    • getArgs >>= scrape . head >>=
      mapM_ (putStrLn . uncurry (++) . (second smoosh)) . Map.toList
      smoosh = uncurry (++) . (comma ':' *** comma '|')
  • jsonify, which packages the results in cypher-JSON and saves to a grapheneDB
    • which is just main = getArgs >>= printJSON from Web.Upload.Cypher
  • analyze, analyzes the specified stock against SMA, EMA and Stochastic Oscillators
Data collected:

No comments: