Skip to content
This repository was archived by the owner on Feb 21, 2026. It is now read-only.

Commit 8745822

Browse files
authored
Merge pull request #1346 from Drakkar-Software/dev
[Grid] disable CONFIG_ALLOW_FUNDS_REDISPATCH dependency
2 parents faaa62b + d25e42a commit 8745822

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Trading/Mode/grid_trading_mode/grid_trading.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,12 @@ def init_user_inputs(self, inputs: dict) -> None:
181181
default_config[self.CONFIG_FUNDS_REDISPATCH_INTERVAL], inputs,
182182
parent_input_name=self.CONFIG_PAIR_SETTINGS,
183183
title="Auto-dispatch interval: hours between each funds redispatch check.",
184-
editor_options={
185-
commons_enums.UserInputOtherSchemaValuesTypes.DEPENDENCIES.value: {
186-
self.CONFIG_ALLOW_FUNDS_REDISPATCH: True
187-
}
188-
}
184+
# dependency disabled: conditional display is not working properly
185+
# editor_options={
186+
# commons_enums.UserInputOtherSchemaValuesTypes.DEPENDENCIES.value: {
187+
# self.CONFIG_ALLOW_FUNDS_REDISPATCH: True
188+
# }
189+
# }
189190
)
190191

191192
def get_default_pair_config(self, symbol, flat_spread, flat_increment) -> dict:

0 commit comments

Comments
 (0)