Skip to content

Commit

Permalink
Now using quandl as dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
Novacer committed Aug 14, 2019
1 parent a7db201 commit 787f9e5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion backend/backend/algorithms/buy_apple.py
Expand Up @@ -32,7 +32,7 @@ def handle(context, data):
result = run_algorithm(start, end, capital_base=capital_base,
initialize=init,
handle_data=handle,
bundle="quantopian-quandl")
bundle="quandl")

ws.send(msg_placeholder % "Simulation End")
ws.send(msg_placeholder % "Fetching backtest results from Redis Queue...")
Expand Down
2 changes: 1 addition & 1 deletion backend/backend/algorithms/mean_reversion.py
Expand Up @@ -98,7 +98,7 @@ def get_linear(context, data):
result = run_algorithm(start, end,
initialize=initialize, before_trading_start=before_trading_start,
capital_base=capital_base,
bundle="quantopian-quandl")
bundle="quandl")

ws.send(msg_placeholder % "Simulation End")
ws.send(msg_placeholder % "Fetching backtest results from Redis Queue...")
Expand Down
2 changes: 1 addition & 1 deletion backend/backend/algorithms/random_forest_regression.py
Expand Up @@ -90,7 +90,7 @@ def handle_data(context, data):

result = run_algorithm(start, end, initialize=initialize,
handle_data=handle_data,
capital_base=capital_base, bundle='quantopian-quandl')
capital_base=capital_base, bundle='quandl')

ws.send(msg_placeholder % "Simulation End")
ws.send(msg_placeholder % "Fetching backtest results from Redis Queue...")
Expand Down
2 changes: 1 addition & 1 deletion backend/backend/algorithms/regimes_clustering.py
Expand Up @@ -373,7 +373,7 @@ def extract(ret_window_param):
result = run_algorithm(start, end,
initialize=initialize, before_trading_start=before_trading_start,
capital_base=capital_base,
bundle="quantopian-quandl")
bundle="quandl")

ws.send(msg_placeholder % "Simulation End")
ws.send(msg_placeholder % "Fetching backtest results from Redis Queue...")
Expand Down
2 changes: 1 addition & 1 deletion backend/backend/algorithms/rsi_divergence.py
Expand Up @@ -167,7 +167,7 @@ def handle_data(context, data):

result = run_algorithm(start=start, end=end, initialize=initialize,
handle_data=handle_data, capital_base=capital_base,
bundle='quantopian-quandl')
bundle='quandl')

ws.send(msg_placeholder % "Simulation End")
ws.send(msg_placeholder % "Fetching backtest results from Redis Queue...")
Expand Down
2 changes: 1 addition & 1 deletion backend/backend/algorithms/trend_follow.py
Expand Up @@ -270,7 +270,7 @@ def get_gain(context, s):
result = run_algorithm(start, end,
initialize=initialize, before_trading_start=before_trading_start,
capital_base=capital_base,
bundle="quantopian-quandl")
bundle="quandl")

ws.send(msg_placeholder % "Simulation End")
ws.send(msg_placeholder % "Fetching backtest results from Redis Queue...")
Expand Down
2 changes: 1 addition & 1 deletion backend/backend/algorithms/validation.py
Expand Up @@ -18,7 +18,7 @@ def handle_data(context, data):
run_algorithm(start, end, capital_base=1000000,
initialize=init,
handle_data=handle_data,
bundle="quantopian-quandl")
bundle="quandl")

return True
except:
Expand Down

0 comments on commit 787f9e5

Please sign in to comment.