This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import operator | |
| if (len(sys.argv) == 3): | |
| inputFileName = sys.argv[1] | |
| outputFolder = sys.argv[2] | |
| # open symbols file | |
| tradelogFile = open(inputFileName,"rU") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on Fri Sep 2 13:23:34 2016 | |
| @author: Brian Christopher, CFA [Blackarbs LLC] | |
| """ | |
| import pandas as pd | |
| from more_itertools import unique_everseen | |
| import requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on Fri Sep 2 13:26:48 2016 | |
| @author: Brian Christopher, CFA [Blackarbs LLC] | |
| """ | |
| import time | |
| import pandas as pd | |
| import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| login="user" | |
| pass="pass" | |
| host="foo.bar.com" | |
| remote_dir="/path/on/foo/bar/" | |
| local_dir="/home/you/foobar-mirror/" | |
| log_file="/tmp/lftp-mirror.log" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // requires | |
| var utils = require('utils'); | |
| var casper = require('casper').create() | |
| var casper = require('casper').create({ | |
| verbose: true, | |
| logLevel: "debug" | |
| }); | |
| // setup globals | |
| var email = casper.cli.options['email'] || 'REPLACE THIS EMAIL'; |