ENH Add command line option for printing algo on stdout, default is false.

This commit is contained in:
Andrea D'Amore
2015-03-29 13:24:36 +02:00
committed by Thomas Wiecki
parent 85d53dcce8
commit 65448cc8d1
3 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -22,5 +22,5 @@ from zipline.utils import parse_args, run_pipeline
if __name__ == "__main__":
logbook.StderrHandler().push_application()
parsed = parse_args(sys.argv[1:])
run_pipeline(print_algo=True, **parsed)
run_pipeline(**parsed)
sys.exit(0)