Learn and Trade Stocks with Interactive Tools

StokIt

StokIt is the tool to

  1. Study technical analysis techniques interactively
  2. Predict and Forcast the stock trend with different models(to be implemented)

See demo on Rstudio's Shiny Server

The codes can be accessed at Github

The technique used for implementation

  1. R with quantmod package
  2. Shiny

Code to read stock data from yahoo.com and draw the chart

library(quantmod)
stock <- getSymbols("AAPL", src = "yahoo", auto.assign = FALSE)
chartSeries(stock, TA = "addMACD()")

plot of chunk unnamed-chunk-1

To Be Implemented

  1. Models for forecasting and predicting
  2. Error control
  3. More interactions