diff --git a/config_examples/Strategy002.py b/config_examples/Strategy002.py index 59ff8b9c7..2fc5cfce4 100644 --- a/config_examples/Strategy002.py +++ b/config_examples/Strategy002.py @@ -162,6 +162,6 @@ class Strategy002(IStrategy): """ mode = "test" coin = pair.split("/")[0] - subprocess.call("python3 /root/workspace2/execution/launcher.py " + mode + " " + coin, shell=True) + subprocess.call("python3 /root/workspace/execution/launcher.py " + mode + " " + coin, shell=True) return True diff --git a/config_examples/Strategy003.py b/config_examples/Strategy003.py index faaa7512b..3856e9a50 100644 --- a/config_examples/Strategy003.py +++ b/config_examples/Strategy003.py @@ -175,5 +175,5 @@ class Strategy003(IStrategy): """ mode = "test" coin = pair.split("/")[0] - subprocess.call("python3 /root/workspace3/execution/launcher.py " + mode + " " + coin, shell=True) + subprocess.call("python3 /root/workspace/execution/launcher.py " + mode + " " + coin, shell=True) return True \ No newline at end of file