├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── RcppExports.R ├── cache.R ├── catch-routine-registration.R ├── obanalytics.R └── visualisation.R ├── README.Rmd ├── README.md ├── README_files ├── bitfinex.png ├── bitstamp.png ├── figure-gfm │ ├── plotCurrentDepth-1.png │ ├── plotEventMap-1.png │ ├── plotPriceLevels-1.png │ ├── plotVolumeMap-1.png │ └── plotVolumePercentiles-1.png └── obadiah-browser-demo.gif ├── bash └── disrupt.sh ├── db ├── bitfinex_schema.sql ├── bitstamp_pairs.sql ├── bitstamp_schema.sql ├── c │ └── obadiah_db │ │ ├── depth.cpp │ │ ├── depth.h │ │ ├── episode.cpp │ │ ├── episode.h │ │ ├── level1.cpp │ │ ├── level1.h │ │ ├── level2.cpp │ │ ├── level2.h │ │ ├── level3.cpp │ │ ├── level3.h │ │ ├── makefile │ │ ├── obadiah_db.cpp │ │ ├── obadiah_db.h │ │ ├── order_book.cpp │ │ ├── order_book.h │ │ ├── spi_allocator.cpp │ │ └── spi_allocator.h ├── devel_imbalance_schema.sql ├── dump.sh ├── get_schema.sql ├── header.sql ├── obanalytics_exchanges.sql ├── obanalytics_pairs.sql ├── obanalytics_schema.sql ├── obanalytics_seed.sql ├── parameters_schema.sql └── python2 │ ├── obadiah_db │ ├── __init__.py │ └── orderbook.py │ ├── setup.py │ └── tests │ ├── level3_episode.csv │ ├── level3_initial.csv │ └── test_orderbook.py ├── doc └── srnysearca201901-5164833-183434.pdf ├── docs ├── .gitignore ├── _config.yml ├── _site.yml ├── about.Rmd ├── about.html ├── coupling │ ├── discussion.html │ ├── introduction.html │ ├── libs │ │ ├── gitbook-2.6.7 │ │ │ ├── css │ │ │ │ ├── fontawesome │ │ │ │ │ └── fontawesome-webfont.ttf │ │ │ │ ├── plugin-bookdown.css │ │ │ │ ├── plugin-clipboard.css │ │ │ │ ├── plugin-fontsettings.css │ │ │ │ ├── plugin-highlight.css │ │ │ │ ├── plugin-search.css │ │ │ │ ├── plugin-table.css │ │ │ │ └── style.css │ │ │ └── js │ │ │ │ ├── app.min.js │ │ │ │ ├── clipboard.min.js │ │ │ │ ├── jquery.highlight.js │ │ │ │ ├── lunr.js │ │ │ │ ├── plugin-bookdown.js │ │ │ │ ├── plugin-clipboard.js │ │ │ │ ├── plugin-fontsettings.js │ │ │ │ ├── plugin-search.js │ │ │ │ └── plugin-sharing.js │ │ └── jquery-2.2.3 │ │ │ └── jquery.min.js │ ├── reconstruction-algorithm.html │ ├── references.html │ └── results.html ├── docs.Rproj ├── explore.Rmd ├── explore.html ├── index.Rmd ├── index.html ├── institute-of-mathematical-statistics.csl ├── ltc-correlation-bitstamp-bitfinex.html ├── ltc-correlation-bitstamp-bitfinex_files │ └── figure-html │ │ ├── unnamed-chunk-1-1.png │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-3-1.png │ │ ├── unnamed-chunk-4-1.png │ │ ├── unnamed-chunk-6-1.png │ │ ├── unnamed-chunk-7-1.png │ │ ├── unnamed-chunk-8-1.png │ │ └── unnamed-chunk-9-1.png ├── power-law-distributions.html ├── power-law-distributions_files │ └── figure-html │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-6-1.png │ │ ├── unnamed-chunk-7-1.png │ │ └── unnamed-chunk-8-1.png ├── research.Rmd ├── research.html ├── site_libs │ ├── bootstrap-3.3.5 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── cerulean.min.css │ │ │ ├── cosmo.min.css │ │ │ ├── darkly.min.css │ │ │ ├── flatly.min.css │ │ │ ├── fonts │ │ │ │ ├── Lato.ttf │ │ │ │ ├── LatoBold.ttf │ │ │ │ ├── LatoItalic.ttf │ │ │ │ ├── NewsCycle.ttf │ │ │ │ ├── NewsCycleBold.ttf │ │ │ │ ├── OpenSans.ttf │ │ │ │ ├── OpenSansBold.ttf │ │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ │ ├── OpenSansItalic.ttf │ │ │ │ ├── OpenSansLight.ttf │ │ │ │ ├── OpenSansLightItalic.ttf │ │ │ │ ├── Raleway.ttf │ │ │ │ ├── RalewayBold.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── RobotoBold.ttf │ │ │ │ ├── RobotoLight.ttf │ │ │ │ ├── RobotoMedium.ttf │ │ │ │ ├── SourceSansPro.ttf │ │ │ │ ├── SourceSansProBold.ttf │ │ │ │ ├── SourceSansProItalic.ttf │ │ │ │ ├── SourceSansProLight.ttf │ │ │ │ └── Ubuntu.ttf │ │ │ ├── journal.min.css │ │ │ ├── lumen.min.css │ │ │ ├── paper.min.css │ │ │ ├── readable.min.css │ │ │ ├── sandstone.min.css │ │ │ ├── simplex.min.css │ │ │ ├── spacelab.min.css │ │ │ ├── united.min.css │ │ │ └── yeti.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── shim │ │ │ ├── html5shiv.min.js │ │ │ └── respond.min.js │ ├── highlightjs-9.12.0 │ │ ├── default.css │ │ ├── highlight.js │ │ └── textmate.css │ ├── jquery-1.11.3 │ │ └── jquery.min.js │ └── navigation-1.1 │ │ ├── codefolding.js │ │ ├── sourceembed.js │ │ └── tabsets.js ├── spike-detection.html ├── spike-detection_files │ └── figure-html │ │ ├── Upward spike 1-1.png │ │ ├── Upward spike 10-1.png │ │ ├── Upward spike 2-1.png │ │ ├── Upward spike 3-1.png │ │ ├── Upward spike 4-1.png │ │ ├── Upward spike 5-1.png │ │ ├── Upward spike 6-1.png │ │ ├── Upward spike 7-1.png │ │ ├── Upward spike 8-1.png │ │ ├── Upward spike 9-1.png │ │ ├── boring-1.png │ │ ├── epsilon-drawdowns-1.png │ │ ├── five-mins-spread-changes-1.png │ │ ├── hourly-spread-changes-1.png │ │ ├── interesting-1.png │ │ ├── large-drawup-decomposed-1.png │ │ ├── missing-jump-1.png │ │ ├── thrilling-down-1.png │ │ ├── thrilling-up-1.png │ │ ├── unnamed-chunk-18-1.png │ │ ├── unnamed-chunk-20-1.png │ │ ├── unnamed-chunk-22-1.png │ │ ├── unnamed-chunk-24-1.png │ │ ├── unnamed-chunk-26-1.png │ │ ├── unnamed-chunk-28-1.png │ │ ├── unnamed-chunk-30-1.png │ │ ├── unnamed-chunk-32-1.png │ │ ├── unnamed-chunk-34-1.png │ │ ├── unnamed-chunk-36-1.png │ │ └── unnamed-chunk-6-1.png ├── stochastic-order-book-model.html ├── tatn-spikes.html ├── trade.Rmd ├── trade.html ├── verify.Rmd └── verify.html ├── inst └── tests │ └── integration │ ├── helper.R │ ├── run_integration_tests.R │ ├── test_depth.R │ ├── test_events.R │ ├── test_spread.R │ └── test_trades.R ├── man └── connect.Rd ├── notebooks ├── .gitignore ├── coupling │ ├── coupling.Rdata │ ├── coupling.Rmd │ └── coupling.bib ├── ltc-correlation-bitstamp-bitfinex │ └── ltc-correlation-bitstamp-bitfinex.Rmd ├── moex │ ├── TATN_1min.csv │ └── tatn-spikes.Rmd ├── power-law-distributions │ └── power-law-distributions.Rmd ├── spike-detection │ └── spike-detection.Rmd └── stochastic-order-book-model │ ├── stochastic-order-book-model.Rmd │ └── table_1_snapshot.png ├── obadiah.Rproj ├── python ├── obadiah │ ├── __init__.py │ ├── __main__.py │ ├── bitfinex.py │ ├── bitstamp.py │ ├── capture.py │ ├── reorder.py │ └── utils.py └── test │ ├── __init__.py │ ├── __main__.py │ └── test_bitfinex.py ├── sample_config.yml ├── setup.py ├── shiny └── obadiah-browser │ ├── global.R │ ├── server.R │ ├── ui.R │ └── www │ ├── bootstrap-slate.css │ ├── img │ └── glyphicons-halflings-white.png │ └── my.css ├── src ├── Makevars ├── RcppExports.cpp ├── base.cpp ├── base.h ├── epsilon_drawupdowns.cpp ├── epsilon_drawupdowns.h ├── obanalytics.cpp ├── obanalytics_standalone.cpp ├── order_book_investigation.cpp ├── order_book_investigation.h ├── position_discovery.cpp ├── position_discovery.h ├── severity_level.cpp ├── severity_level.h └── test-runner.cpp ├── systemd └── obadiah@.service ├── tests ├── testthat.R └── testthat │ └── test-cpp.R └── vignettes ├── .gitignore └── dynamic-epsilon-draws.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/cache.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/R/cache.R -------------------------------------------------------------------------------- /R/catch-routine-registration.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/R/catch-routine-registration.R -------------------------------------------------------------------------------- /R/obanalytics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/R/obanalytics.R -------------------------------------------------------------------------------- /R/visualisation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/R/visualisation.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README.md -------------------------------------------------------------------------------- /README_files/bitfinex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README_files/bitfinex.png -------------------------------------------------------------------------------- /README_files/bitstamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README_files/bitstamp.png -------------------------------------------------------------------------------- /README_files/figure-gfm/plotCurrentDepth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README_files/figure-gfm/plotCurrentDepth-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/plotEventMap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README_files/figure-gfm/plotEventMap-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/plotPriceLevels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README_files/figure-gfm/plotPriceLevels-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/plotVolumeMap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README_files/figure-gfm/plotVolumeMap-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/plotVolumePercentiles-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README_files/figure-gfm/plotVolumePercentiles-1.png -------------------------------------------------------------------------------- /README_files/obadiah-browser-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/README_files/obadiah-browser-demo.gif -------------------------------------------------------------------------------- /bash/disrupt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/bash/disrupt.sh -------------------------------------------------------------------------------- /db/bitfinex_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/bitfinex_schema.sql -------------------------------------------------------------------------------- /db/bitstamp_pairs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/bitstamp_pairs.sql -------------------------------------------------------------------------------- /db/bitstamp_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/bitstamp_schema.sql -------------------------------------------------------------------------------- /db/c/obadiah_db/depth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/depth.cpp -------------------------------------------------------------------------------- /db/c/obadiah_db/depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/depth.h -------------------------------------------------------------------------------- /db/c/obadiah_db/episode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/episode.cpp -------------------------------------------------------------------------------- /db/c/obadiah_db/episode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/episode.h -------------------------------------------------------------------------------- /db/c/obadiah_db/level1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/level1.cpp -------------------------------------------------------------------------------- /db/c/obadiah_db/level1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/level1.h -------------------------------------------------------------------------------- /db/c/obadiah_db/level2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/level2.cpp -------------------------------------------------------------------------------- /db/c/obadiah_db/level2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/level2.h -------------------------------------------------------------------------------- /db/c/obadiah_db/level3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/level3.cpp -------------------------------------------------------------------------------- /db/c/obadiah_db/level3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/level3.h -------------------------------------------------------------------------------- /db/c/obadiah_db/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/makefile -------------------------------------------------------------------------------- /db/c/obadiah_db/obadiah_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/obadiah_db.cpp -------------------------------------------------------------------------------- /db/c/obadiah_db/obadiah_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/obadiah_db.h -------------------------------------------------------------------------------- /db/c/obadiah_db/order_book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/order_book.cpp -------------------------------------------------------------------------------- /db/c/obadiah_db/order_book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/order_book.h -------------------------------------------------------------------------------- /db/c/obadiah_db/spi_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/spi_allocator.cpp -------------------------------------------------------------------------------- /db/c/obadiah_db/spi_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/c/obadiah_db/spi_allocator.h -------------------------------------------------------------------------------- /db/devel_imbalance_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/devel_imbalance_schema.sql -------------------------------------------------------------------------------- /db/dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/dump.sh -------------------------------------------------------------------------------- /db/get_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/get_schema.sql -------------------------------------------------------------------------------- /db/header.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/header.sql -------------------------------------------------------------------------------- /db/obanalytics_exchanges.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/obanalytics_exchanges.sql -------------------------------------------------------------------------------- /db/obanalytics_pairs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/obanalytics_pairs.sql -------------------------------------------------------------------------------- /db/obanalytics_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/obanalytics_schema.sql -------------------------------------------------------------------------------- /db/obanalytics_seed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/obanalytics_seed.sql -------------------------------------------------------------------------------- /db/parameters_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/parameters_schema.sql -------------------------------------------------------------------------------- /db/python2/obadiah_db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/python2/obadiah_db/orderbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/python2/obadiah_db/orderbook.py -------------------------------------------------------------------------------- /db/python2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/python2/setup.py -------------------------------------------------------------------------------- /db/python2/tests/level3_episode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/python2/tests/level3_episode.csv -------------------------------------------------------------------------------- /db/python2/tests/level3_initial.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/python2/tests/level3_initial.csv -------------------------------------------------------------------------------- /db/python2/tests/test_orderbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/db/python2/tests/test_orderbook.py -------------------------------------------------------------------------------- /doc/srnysearca201901-5164833-183434.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/doc/srnysearca201901-5164833-183434.pdf -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.bz2 2 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/_site.yml -------------------------------------------------------------------------------- /docs/about.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/about.Rmd -------------------------------------------------------------------------------- /docs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/about.html -------------------------------------------------------------------------------- /docs/coupling/discussion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/discussion.html -------------------------------------------------------------------------------- /docs/coupling/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/introduction.html -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/css/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/css/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/css/plugin-bookdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/css/plugin-bookdown.css -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/css/plugin-clipboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/css/plugin-clipboard.css -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/css/plugin-fontsettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/css/plugin-fontsettings.css -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/css/plugin-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/css/plugin-highlight.css -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/css/plugin-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/css/plugin-search.css -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/css/plugin-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/css/plugin-table.css -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/css/style.css -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/app.min.js -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/clipboard.min.js -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/jquery.highlight.js -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/lunr.js -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/plugin-bookdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/plugin-bookdown.js -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/plugin-clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/plugin-clipboard.js -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/plugin-fontsettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/plugin-fontsettings.js -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/plugin-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/plugin-search.js -------------------------------------------------------------------------------- /docs/coupling/libs/gitbook-2.6.7/js/plugin-sharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/gitbook-2.6.7/js/plugin-sharing.js -------------------------------------------------------------------------------- /docs/coupling/libs/jquery-2.2.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/libs/jquery-2.2.3/jquery.min.js -------------------------------------------------------------------------------- /docs/coupling/reconstruction-algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/reconstruction-algorithm.html -------------------------------------------------------------------------------- /docs/coupling/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/references.html -------------------------------------------------------------------------------- /docs/coupling/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/coupling/results.html -------------------------------------------------------------------------------- /docs/docs.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/docs.Rproj -------------------------------------------------------------------------------- /docs/explore.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/explore.Rmd -------------------------------------------------------------------------------- /docs/explore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/explore.html -------------------------------------------------------------------------------- /docs/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/index.Rmd -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/institute-of-mathematical-statistics.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/institute-of-mathematical-statistics.csl -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex.html -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/ltc-correlation-bitstamp-bitfinex_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/power-law-distributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/power-law-distributions.html -------------------------------------------------------------------------------- /docs/power-law-distributions_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/power-law-distributions_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/power-law-distributions_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/power-law-distributions_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/power-law-distributions_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/power-law-distributions_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/power-law-distributions_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/power-law-distributions_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/power-law-distributions_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/power-law-distributions_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/power-law-distributions_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/power-law-distributions_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/research.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/research.Rmd -------------------------------------------------------------------------------- /docs/research.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/research.html -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/bootstrap-theme.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/bootstrap.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/cerulean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/cerulean.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/cosmo.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/darkly.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/flatly.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/Lato.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/Raleway.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/Raleway.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/RalewayBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/RalewayBold.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/Roboto.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/RobotoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/RobotoBold.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/RobotoLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/RobotoLight.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/fonts/Ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/fonts/Ubuntu.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/journal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/journal.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/lumen.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/paper.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/readable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/readable.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/sandstone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/sandstone.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/simplex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/simplex.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/spacelab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/spacelab.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/united.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/united.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/css/yeti.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/css/yeti.min.css -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/js/bootstrap.js -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/js/npm.js -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/shim/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/shim/html5shiv.min.js -------------------------------------------------------------------------------- /docs/site_libs/bootstrap-3.3.5/shim/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/bootstrap-3.3.5/shim/respond.min.js -------------------------------------------------------------------------------- /docs/site_libs/highlightjs-9.12.0/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/highlightjs-9.12.0/default.css -------------------------------------------------------------------------------- /docs/site_libs/highlightjs-9.12.0/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/highlightjs-9.12.0/highlight.js -------------------------------------------------------------------------------- /docs/site_libs/highlightjs-9.12.0/textmate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/highlightjs-9.12.0/textmate.css -------------------------------------------------------------------------------- /docs/site_libs/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/site_libs/navigation-1.1/codefolding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/navigation-1.1/codefolding.js -------------------------------------------------------------------------------- /docs/site_libs/navigation-1.1/sourceembed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/navigation-1.1/sourceembed.js -------------------------------------------------------------------------------- /docs/site_libs/navigation-1.1/tabsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/site_libs/navigation-1.1/tabsets.js -------------------------------------------------------------------------------- /docs/spike-detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection.html -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 1-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 10-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 2-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 3-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 4-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 5-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 6-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 7-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 8-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/Upward spike 9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/Upward spike 9-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/boring-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/boring-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/epsilon-drawdowns-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/epsilon-drawdowns-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/five-mins-spread-changes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/five-mins-spread-changes-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/hourly-spread-changes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/hourly-spread-changes-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/interesting-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/interesting-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/large-drawup-decomposed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/large-drawup-decomposed-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/missing-jump-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/missing-jump-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/thrilling-down-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/thrilling-down-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/thrilling-up-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/thrilling-up-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-28-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-28-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-30-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-30-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-32-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-34-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-34-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-36-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-36-1.png -------------------------------------------------------------------------------- /docs/spike-detection_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/spike-detection_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/stochastic-order-book-model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/stochastic-order-book-model.html -------------------------------------------------------------------------------- /docs/tatn-spikes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/tatn-spikes.html -------------------------------------------------------------------------------- /docs/trade.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/trade.Rmd -------------------------------------------------------------------------------- /docs/trade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/trade.html -------------------------------------------------------------------------------- /docs/verify.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/verify.Rmd -------------------------------------------------------------------------------- /docs/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/docs/verify.html -------------------------------------------------------------------------------- /inst/tests/integration/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/inst/tests/integration/helper.R -------------------------------------------------------------------------------- /inst/tests/integration/run_integration_tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/inst/tests/integration/run_integration_tests.R -------------------------------------------------------------------------------- /inst/tests/integration/test_depth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/inst/tests/integration/test_depth.R -------------------------------------------------------------------------------- /inst/tests/integration/test_events.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/inst/tests/integration/test_events.R -------------------------------------------------------------------------------- /inst/tests/integration/test_spread.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/inst/tests/integration/test_spread.R -------------------------------------------------------------------------------- /inst/tests/integration/test_trades.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/inst/tests/integration/test_trades.R -------------------------------------------------------------------------------- /man/connect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/man/connect.Rd -------------------------------------------------------------------------------- /notebooks/.gitignore: -------------------------------------------------------------------------------- 1 | *_cache 2 | *_files 3 | **/*.html 4 | -------------------------------------------------------------------------------- /notebooks/coupling/coupling.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/coupling/coupling.Rdata -------------------------------------------------------------------------------- /notebooks/coupling/coupling.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/coupling/coupling.Rmd -------------------------------------------------------------------------------- /notebooks/coupling/coupling.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/coupling/coupling.bib -------------------------------------------------------------------------------- /notebooks/ltc-correlation-bitstamp-bitfinex/ltc-correlation-bitstamp-bitfinex.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/ltc-correlation-bitstamp-bitfinex/ltc-correlation-bitstamp-bitfinex.Rmd -------------------------------------------------------------------------------- /notebooks/moex/TATN_1min.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/moex/TATN_1min.csv -------------------------------------------------------------------------------- /notebooks/moex/tatn-spikes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/moex/tatn-spikes.Rmd -------------------------------------------------------------------------------- /notebooks/power-law-distributions/power-law-distributions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/power-law-distributions/power-law-distributions.Rmd -------------------------------------------------------------------------------- /notebooks/spike-detection/spike-detection.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/spike-detection/spike-detection.Rmd -------------------------------------------------------------------------------- /notebooks/stochastic-order-book-model/stochastic-order-book-model.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/stochastic-order-book-model/stochastic-order-book-model.Rmd -------------------------------------------------------------------------------- /notebooks/stochastic-order-book-model/table_1_snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/notebooks/stochastic-order-book-model/table_1_snapshot.png -------------------------------------------------------------------------------- /obadiah.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/obadiah.Rproj -------------------------------------------------------------------------------- /python/obadiah/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/obadiah/__init__.py -------------------------------------------------------------------------------- /python/obadiah/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/obadiah/__main__.py -------------------------------------------------------------------------------- /python/obadiah/bitfinex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/obadiah/bitfinex.py -------------------------------------------------------------------------------- /python/obadiah/bitstamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/obadiah/bitstamp.py -------------------------------------------------------------------------------- /python/obadiah/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/obadiah/capture.py -------------------------------------------------------------------------------- /python/obadiah/reorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/obadiah/reorder.py -------------------------------------------------------------------------------- /python/obadiah/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/obadiah/utils.py -------------------------------------------------------------------------------- /python/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/test/__init__.py -------------------------------------------------------------------------------- /python/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/test/__main__.py -------------------------------------------------------------------------------- /python/test/test_bitfinex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/python/test/test_bitfinex.py -------------------------------------------------------------------------------- /sample_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/sample_config.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/setup.py -------------------------------------------------------------------------------- /shiny/obadiah-browser/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/shiny/obadiah-browser/global.R -------------------------------------------------------------------------------- /shiny/obadiah-browser/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/shiny/obadiah-browser/server.R -------------------------------------------------------------------------------- /shiny/obadiah-browser/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/shiny/obadiah-browser/ui.R -------------------------------------------------------------------------------- /shiny/obadiah-browser/www/bootstrap-slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/shiny/obadiah-browser/www/bootstrap-slate.css -------------------------------------------------------------------------------- /shiny/obadiah-browser/www/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/shiny/obadiah-browser/www/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /shiny/obadiah-browser/www/my.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/shiny/obadiah-browser/www/my.css -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/base.cpp -------------------------------------------------------------------------------- /src/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/base.h -------------------------------------------------------------------------------- /src/epsilon_drawupdowns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/epsilon_drawupdowns.cpp -------------------------------------------------------------------------------- /src/epsilon_drawupdowns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/epsilon_drawupdowns.h -------------------------------------------------------------------------------- /src/obanalytics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/obanalytics.cpp -------------------------------------------------------------------------------- /src/obanalytics_standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/obanalytics_standalone.cpp -------------------------------------------------------------------------------- /src/order_book_investigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/order_book_investigation.cpp -------------------------------------------------------------------------------- /src/order_book_investigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/order_book_investigation.h -------------------------------------------------------------------------------- /src/position_discovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/position_discovery.cpp -------------------------------------------------------------------------------- /src/position_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/position_discovery.h -------------------------------------------------------------------------------- /src/severity_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/severity_level.cpp -------------------------------------------------------------------------------- /src/severity_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/severity_level.h -------------------------------------------------------------------------------- /src/test-runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/src/test-runner.cpp -------------------------------------------------------------------------------- /systemd/obadiah@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/systemd/obadiah@.service -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-cpp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/tests/testthat/test-cpp.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/dynamic-epsilon-draws.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petr-fedorov/obadiah/HEAD/vignettes/dynamic-epsilon-draws.Rmd --------------------------------------------------------------------------------