├── .gitignore ├── README.md ├── config.R ├── global.R ├── global ├── dependencies.R ├── futures-data │ ├── CoTData.R │ ├── Contract.R │ ├── Contracts.R │ ├── Db.R │ ├── FXData.R │ ├── FuturesData.R │ ├── MultiSeries.R │ ├── Performance.R │ ├── Portfolio.R │ ├── Portfolios.R │ ├── QuandlFetcher.R │ ├── RatesData.R │ └── Strategy.R ├── tests │ ├── Singleton.R │ ├── contractsData.R │ ├── differ pos.R │ ├── init_db.R │ ├── load.R │ ├── pca.R │ ├── sampledData.R │ ├── sampledData2.R │ ├── test carry.R │ ├── test portfolio.R │ ├── test portfolio2.R │ ├── testSingleton.R │ ├── testStrategy.R │ ├── tests.R │ └── uiTests.R ├── tickers.csv └── utils.R ├── modules ├── performanceStats │ ├── server.R │ └── ui.R ├── plotPortfolios │ ├── server.R │ └── ui.R ├── plotSeries │ ├── server.R │ └── ui.R ├── portfolio │ ├── server.R │ └── ui.R └── selContracts │ ├── server.R │ └── ui.R ├── portable.sqlite ├── screenshots ├── backtest-s.png ├── backtest.png ├── explore-s.png ├── explore.png ├── overview-s.png ├── overview.png ├── update-s.png └── update.png ├── server.R ├── set_default.R ├── tabs ├── backtest │ ├── backtest │ │ ├── backtest.R │ │ ├── strategies.R │ │ └── tests │ │ │ ├── global.R │ │ │ └── tests.R │ ├── server.R │ └── ui.R ├── explore │ ├── server.R │ └── ui.R ├── overview │ ├── server.R │ └── ui.R └── update │ ├── old │ └── global2.R │ ├── server.R │ └── ui.R ├── ui.R ├── weights.xlsx └── www ├── cerulean.css └── futures.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/README.md -------------------------------------------------------------------------------- /config.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/config.R -------------------------------------------------------------------------------- /global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global.R -------------------------------------------------------------------------------- /global/dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/dependencies.R -------------------------------------------------------------------------------- /global/futures-data/CoTData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/CoTData.R -------------------------------------------------------------------------------- /global/futures-data/Contract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/Contract.R -------------------------------------------------------------------------------- /global/futures-data/Contracts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/Contracts.R -------------------------------------------------------------------------------- /global/futures-data/Db.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/Db.R -------------------------------------------------------------------------------- /global/futures-data/FXData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/FXData.R -------------------------------------------------------------------------------- /global/futures-data/FuturesData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/FuturesData.R -------------------------------------------------------------------------------- /global/futures-data/MultiSeries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/MultiSeries.R -------------------------------------------------------------------------------- /global/futures-data/Performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/Performance.R -------------------------------------------------------------------------------- /global/futures-data/Portfolio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/Portfolio.R -------------------------------------------------------------------------------- /global/futures-data/Portfolios.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/Portfolios.R -------------------------------------------------------------------------------- /global/futures-data/QuandlFetcher.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/QuandlFetcher.R -------------------------------------------------------------------------------- /global/futures-data/RatesData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/RatesData.R -------------------------------------------------------------------------------- /global/futures-data/Strategy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/futures-data/Strategy.R -------------------------------------------------------------------------------- /global/tests/Singleton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/Singleton.R -------------------------------------------------------------------------------- /global/tests/contractsData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/contractsData.R -------------------------------------------------------------------------------- /global/tests/differ pos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/differ pos.R -------------------------------------------------------------------------------- /global/tests/init_db.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/init_db.R -------------------------------------------------------------------------------- /global/tests/load.R: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /global/tests/pca.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/pca.R -------------------------------------------------------------------------------- /global/tests/sampledData.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/sampledData.R -------------------------------------------------------------------------------- /global/tests/sampledData2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/sampledData2.R -------------------------------------------------------------------------------- /global/tests/test carry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/test carry.R -------------------------------------------------------------------------------- /global/tests/test portfolio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/test portfolio.R -------------------------------------------------------------------------------- /global/tests/test portfolio2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/test portfolio2.R -------------------------------------------------------------------------------- /global/tests/testSingleton.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/testSingleton.R -------------------------------------------------------------------------------- /global/tests/testStrategy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/testStrategy.R -------------------------------------------------------------------------------- /global/tests/tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/tests.R -------------------------------------------------------------------------------- /global/tests/uiTests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tests/uiTests.R -------------------------------------------------------------------------------- /global/tickers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/tickers.csv -------------------------------------------------------------------------------- /global/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/global/utils.R -------------------------------------------------------------------------------- /modules/performanceStats/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/performanceStats/server.R -------------------------------------------------------------------------------- /modules/performanceStats/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/performanceStats/ui.R -------------------------------------------------------------------------------- /modules/plotPortfolios/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/plotPortfolios/server.R -------------------------------------------------------------------------------- /modules/plotPortfolios/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/plotPortfolios/ui.R -------------------------------------------------------------------------------- /modules/plotSeries/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/plotSeries/server.R -------------------------------------------------------------------------------- /modules/plotSeries/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/plotSeries/ui.R -------------------------------------------------------------------------------- /modules/portfolio/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/portfolio/server.R -------------------------------------------------------------------------------- /modules/portfolio/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/portfolio/ui.R -------------------------------------------------------------------------------- /modules/selContracts/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/selContracts/server.R -------------------------------------------------------------------------------- /modules/selContracts/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/modules/selContracts/ui.R -------------------------------------------------------------------------------- /portable.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/portable.sqlite -------------------------------------------------------------------------------- /screenshots/backtest-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/screenshots/backtest-s.png -------------------------------------------------------------------------------- /screenshots/backtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/screenshots/backtest.png -------------------------------------------------------------------------------- /screenshots/explore-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/screenshots/explore-s.png -------------------------------------------------------------------------------- /screenshots/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/screenshots/explore.png -------------------------------------------------------------------------------- /screenshots/overview-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/screenshots/overview-s.png -------------------------------------------------------------------------------- /screenshots/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/screenshots/overview.png -------------------------------------------------------------------------------- /screenshots/update-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/screenshots/update-s.png -------------------------------------------------------------------------------- /screenshots/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/screenshots/update.png -------------------------------------------------------------------------------- /server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/server.R -------------------------------------------------------------------------------- /set_default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/set_default.R -------------------------------------------------------------------------------- /tabs/backtest/backtest/backtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/backtest/backtest/backtest.R -------------------------------------------------------------------------------- /tabs/backtest/backtest/strategies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/backtest/backtest/strategies.R -------------------------------------------------------------------------------- /tabs/backtest/backtest/tests/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/backtest/backtest/tests/global.R -------------------------------------------------------------------------------- /tabs/backtest/backtest/tests/tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/backtest/backtest/tests/tests.R -------------------------------------------------------------------------------- /tabs/backtest/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/backtest/server.R -------------------------------------------------------------------------------- /tabs/backtest/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/backtest/ui.R -------------------------------------------------------------------------------- /tabs/explore/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/explore/server.R -------------------------------------------------------------------------------- /tabs/explore/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/explore/ui.R -------------------------------------------------------------------------------- /tabs/overview/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/overview/server.R -------------------------------------------------------------------------------- /tabs/overview/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/overview/ui.R -------------------------------------------------------------------------------- /tabs/update/old/global2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/update/old/global2.R -------------------------------------------------------------------------------- /tabs/update/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/update/server.R -------------------------------------------------------------------------------- /tabs/update/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/tabs/update/ui.R -------------------------------------------------------------------------------- /ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/ui.R -------------------------------------------------------------------------------- /weights.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/weights.xlsx -------------------------------------------------------------------------------- /www/cerulean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinv13/shiny-futures/HEAD/www/cerulean.css -------------------------------------------------------------------------------- /www/futures.css: -------------------------------------------------------------------------------- 1 | 2 | .tab-pan p { 3 | color: red; 4 | } --------------------------------------------------------------------------------