The files below can be imported into a Tradingview watchlist.
List is sorted by volume
| // work in progress | |
| // you need a bittrex API key and secret with read account option enabled | |
| // I assume that all the keys are in the "keys" spreadsheet. The key is in cell B5 and the secret in cell C5 | |
| var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("keys"); | |
| var key = sheet.getRange("B5").getValue() | |
| var secret = sheet.getRange("C5").getValue(); | |
| var baseUrl = 'https://bittrex.com/api/v1.1/'; | |
| var nonce = Math.floor(new Date().getTime()/1000); |
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
| # | |
| WP_OWNER=www-data # <-- wordpress owner | |
| WP_GROUP=www-data # <-- wordpress group | |
| WP_ROOT=$1 # <-- wordpress root directory |