requirements thinned out again

StrategyResolver.search_all_objects(enum_failed) set to False since we got no use in True
shortened update_code call
added modified_code8 test which currently still fails. (and thereby is commented out)
This commit is contained in:
hippocritical
2023-01-02 20:45:56 +01:00
parent 66f7c91357
commit 0817e1698f
4 changed files with 17 additions and 22 deletions

View File

@@ -59,6 +59,11 @@ def confirm_trade_exit(sell_reason):
if (sell_reason == 'stop_loss'):
pass
""")
# modified_code8 = StrategyUpdater.update_code(StrategyUpdater, """
# sell_reason == 'sell_signal'
# sell_reason == 'force_sell'
# sell_reason == 'emergency_sell'
# """)
assert "populate_entry_trend" in modified_code1
assert "populate_exit_trend" in modified_code1
@@ -93,3 +98,9 @@ def confirm_trade_exit(sell_reason):
assert "exit_reason" in modified_code7
assert "exit_reason == 'stop_loss'" in modified_code7
# those tests currently don't work, next in line.
# assert "exit_signal" in modified_code8
# assert "exit_reason" in modified_code8
# assert "force_exit" in modified_code8
# assert "emergency_exit" in modified_code8