Skip to content

Commit

Permalink
Merge pull request #101 from hummingbot/feat/cleanup_controllers
Browse files Browse the repository at this point in the history
Feat/cleanup controllers
  • Loading branch information
cardosofede authored Nov 24, 2023
2 parents 30e000c + 7cefc45 commit b747cb8
Show file tree
Hide file tree
Showing 14 changed files with 312 additions and 830 deletions.
194 changes: 0 additions & 194 deletions hummingbot_files/templates/master_bot_conf/conf_client.yml

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,22 @@ class MarketMakingDmanComposed(ScriptStrategyBase):
exchange="binance_perpetual",
trading_pair=trading_pair,
order_levels=[
OrderLevel(level=0, side=TradeType.BUY, order_amount_usd=Decimal(15),
OrderLevel(level=0, side=TradeType.BUY, order_amount_usd=Decimal("15"),
spread_factor=Decimal(1.0), order_refresh_time=60 * 30,
cooldown_time=15, triple_barrier_conf=triple_barrier_conf_top),
OrderLevel(level=1, side=TradeType.BUY, order_amount_usd=Decimal(50),
OrderLevel(level=1, side=TradeType.BUY, order_amount_usd=Decimal("50"),
spread_factor=Decimal(5.0), order_refresh_time=60 * 30,
cooldown_time=15, triple_barrier_conf=triple_barrier_conf_bottom),
OrderLevel(level=2, side=TradeType.BUY, order_amount_usd=Decimal(50),
OrderLevel(level=2, side=TradeType.BUY, order_amount_usd=Decimal("50"),
spread_factor=Decimal(8.0), order_refresh_time=60 * 15,
cooldown_time=15, triple_barrier_conf=triple_barrier_conf_bottom),
OrderLevel(level=0, side=TradeType.SELL, order_amount_usd=Decimal(15),
OrderLevel(level=0, side=TradeType.SELL, order_amount_usd=Decimal("15"),
spread_factor=Decimal(1.0), order_refresh_time=60 * 30,
cooldown_time=15, triple_barrier_conf=triple_barrier_conf_top),
OrderLevel(level=1, side=TradeType.SELL, order_amount_usd=Decimal(50),
OrderLevel(level=1, side=TradeType.SELL, order_amount_usd=Decimal("50"),
spread_factor=Decimal(5.0), order_refresh_time=60 * 30,
cooldown_time=15, triple_barrier_conf=triple_barrier_conf_bottom),
OrderLevel(level=2, side=TradeType.SELL, order_amount_usd=Decimal(50),
OrderLevel(level=2, side=TradeType.SELL, order_amount_usd=Decimal("50"),
spread_factor=Decimal(8.0), order_refresh_time=60 * 15,
cooldown_time=15, triple_barrier_conf=triple_barrier_conf_bottom),
],
Expand Down
Loading

0 comments on commit b747cb8

Please sign in to comment.