Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
fredfortier committed Jan 4, 2018
2 parents 0396dee + 194b96f commit 606e2d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catalyst/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
For example, if you want to see the DEBUG messages, run:
$ export CATALYST_LOG_LEVEL=10
'''
LOG_LEVEL = int(os.environ.get('CATALYST_LOG_LEVEL', logbook.DEBUG))
LOG_LEVEL = int(os.environ.get('CATALYST_LOG_LEVEL', logbook.INFO))

SYMBOLS_URL = 'https://s3.amazonaws.com/enigmaco/catalyst-exchanges/' \
'{exchange}/symbols.json'
Expand Down
2 changes: 1 addition & 1 deletion catalyst/examples/mean_reversion_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def analyze(context=None, perf=None):

if __name__ == '__main__':
# The execution mode: backtest or live
live = True
live = False

if live:
run_algorithm(
Expand Down

0 comments on commit 606e2d5

Please sign in to comment.