(feat) improve data collection

This commit is contained in:
cardosofede
2024-05-22 19:43:01 -05:00
parent 358b69fe41
commit 811b84a884
5 changed files with 8 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ class LaunchV2WithControllers:
self._controller_configs_available = self._backend_api_client.get_all_controllers_config()
self._controller_config_selected = []
self._bot_name = None
self._image_name = "hummingbot/hummingbot:latest"
self._image_name = "dardonacci/hummingbot:latest"
self._credentials = "master_account"
def _set_bot_name(self, bot_name):
@@ -49,7 +49,7 @@ class LaunchV2WithControllers:
self._backend_api_client.add_script_config(script_config)
deploy_config = {
"instance_name": bot_name,
"script": "v2_generic_with_cash_out.py",
"script": "v2_with_controllers.py",
"script_config": bot_name + ".yml",
"image": self._image_name,
"credentials_profile": self._credentials,