├── .gitignore ├── LICENSE.md ├── README.md ├── data ├── 2015-08-18.xz ├── 2015-08-19.xz ├── 2015-08-20.xz ├── 2015-08-21.xz ├── 2015-08-22.xz ├── 2015-08-23.xz ├── 2015-08-24.xz └── 2015-08-25.xz ├── screens ├── cancellations.png ├── depth-percentiles.png ├── events.png ├── order-book.png ├── order-events.png └── price-level-volume.png ├── server.R ├── ui.R └── www ├── bootstrap-slate.css ├── img └── glyphicons-halflings-white.png └── my.css /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | .Rhistory 4 | rsconnect/ 5 | 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/README.md -------------------------------------------------------------------------------- /data/2015-08-18.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/data/2015-08-18.xz -------------------------------------------------------------------------------- /data/2015-08-19.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/data/2015-08-19.xz -------------------------------------------------------------------------------- /data/2015-08-20.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/data/2015-08-20.xz -------------------------------------------------------------------------------- /data/2015-08-21.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/data/2015-08-21.xz -------------------------------------------------------------------------------- /data/2015-08-22.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/data/2015-08-22.xz -------------------------------------------------------------------------------- /data/2015-08-23.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/data/2015-08-23.xz -------------------------------------------------------------------------------- /data/2015-08-24.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/data/2015-08-24.xz -------------------------------------------------------------------------------- /data/2015-08-25.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/data/2015-08-25.xz -------------------------------------------------------------------------------- /screens/cancellations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/screens/cancellations.png -------------------------------------------------------------------------------- /screens/depth-percentiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/screens/depth-percentiles.png -------------------------------------------------------------------------------- /screens/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/screens/events.png -------------------------------------------------------------------------------- /screens/order-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/screens/order-book.png -------------------------------------------------------------------------------- /screens/order-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/screens/order-events.png -------------------------------------------------------------------------------- /screens/price-level-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/screens/price-level-volume.png -------------------------------------------------------------------------------- /server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/server.R -------------------------------------------------------------------------------- /ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/ui.R -------------------------------------------------------------------------------- /www/bootstrap-slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/www/bootstrap-slate.css -------------------------------------------------------------------------------- /www/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/www/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /www/my.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phil8192/shiny-ob-analytics/HEAD/www/my.css --------------------------------------------------------------------------------