Developing Data Product

Adam Behrendorff

A program for share price analysis

The shiny app takes raw share price data and performs some basic data analysis on it.

It looks at timeseries of the daily returns, the distribution of returns and compares them to standard log normal and normal distributions.

Getting and loading the data

library(shiny)
library(Quandl)
library(ggplot2)
library(qualityTools)
sp_data <- Quandl("YAHOO/ASX_RIO_AX")

loading share price data from Quandl

The data displayed (1)

plot of chunk unnamed-chunk-3 Daily returns

The data displayed (2)

plot of chunk unnamed-chunk-4