├── .gitattributes ├── .gitignore ├── HISTORY.md ├── LICENSE ├── README.md ├── ajax └── aj.php ├── crons ├── HourlyCron.php └── TenMinuteCron.php ├── css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css └── styles.css ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── img ├── MarginBotLogo.png ├── ajax-loader.gif ├── bitcoin_donate.png └── litecoin_donate.png ├── inc ├── Accounts.php ├── ExchangeAPIs │ └── bitfinex.php ├── General.php ├── Pages.php ├── PasswordHash.php ├── config.php ├── database.php ├── footer.php ├── header.php └── version_info.php ├── index.php ├── install.php ├── js ├── bootstrap.js ├── bootstrap.min.js ├── global_chart.js ├── jquery.formatCurrency-1.4.0.min.js ├── npm.js ├── sitescripts.0.2.js └── user_chart.js ├── json └── stats.php ├── robots.txt └── update.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | crons/DailyCron.php -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/README.md -------------------------------------------------------------------------------- /ajax/aj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/ajax/aj.php -------------------------------------------------------------------------------- /crons/HourlyCron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/crons/HourlyCron.php -------------------------------------------------------------------------------- /crons/TenMinuteCron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/crons/TenMinuteCron.php -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/css/styles.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /img/MarginBotLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/img/MarginBotLogo.png -------------------------------------------------------------------------------- /img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/img/ajax-loader.gif -------------------------------------------------------------------------------- /img/bitcoin_donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/img/bitcoin_donate.png -------------------------------------------------------------------------------- /img/litecoin_donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/img/litecoin_donate.png -------------------------------------------------------------------------------- /inc/Accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/Accounts.php -------------------------------------------------------------------------------- /inc/ExchangeAPIs/bitfinex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/ExchangeAPIs/bitfinex.php -------------------------------------------------------------------------------- /inc/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/General.php -------------------------------------------------------------------------------- /inc/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/Pages.php -------------------------------------------------------------------------------- /inc/PasswordHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/PasswordHash.php -------------------------------------------------------------------------------- /inc/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/config.php -------------------------------------------------------------------------------- /inc/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/database.php -------------------------------------------------------------------------------- /inc/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/footer.php -------------------------------------------------------------------------------- /inc/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/header.php -------------------------------------------------------------------------------- /inc/version_info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/inc/version_info.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/install.php -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/global_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/js/global_chart.js -------------------------------------------------------------------------------- /js/jquery.formatCurrency-1.4.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/js/jquery.formatCurrency-1.4.0.min.js -------------------------------------------------------------------------------- /js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/js/npm.js -------------------------------------------------------------------------------- /js/sitescripts.0.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/js/sitescripts.0.2.js -------------------------------------------------------------------------------- /js/user_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/js/user_chart.js -------------------------------------------------------------------------------- /json/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/json/stats.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFenter/MarginBot/HEAD/update.php --------------------------------------------------------------------------------