Created
May 29, 2018 18:10
-
-
Save mempirate/f1e00e6de0e19d671e99514efda759fc to your computer and use it in GitHub Desktop.
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
if __name__ == "__main__": | |
run_algorithm( | |
capital_base = 1000, | |
data_frequency = "minute", | |
initialize = initialize, | |
handle_data = handle_data, | |
analyze = analyze, | |
exchange_name = "bitfinex", | |
algo_namespace = NAMESPACE, | |
base_currency= "usd", | |
start = pd.to_datetime("2018-5-10", utc = True), | |
end = pd.to_datetime("2018-5-14", utc = True) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment