Skip to content

Commit

Permalink
Params template updated
Browse files Browse the repository at this point in the history
  • Loading branch information
DogsTailFarmer committed Mar 9, 2024
1 parent 5a0f6ca commit ad3f852
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions martin_binance/cli_0_BTCUSDT.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ ex.SYMBOL = 'BTCUSDT'
# Exchange setup, see list of exchange in ms_cfg.toml
ex.ID_EXCHANGE = 0 # See ms_cfg.toml Use for collection of statistics *and get client connection*
ex.FEE_IN_PAIR = True # Fee pays in pair
ex.FEE_MAKER = Decimal('0.0751') # standard exchange Fee for maker
ex.FEE_TAKER = Decimal('0.0751') # standard exchange Fee for taker
ex.FEE_MAKER = Decimal('0.1') # standard exchange Fee for maker
ex.FEE_TAKER = Decimal('0.1') # standard exchange Fee for taker
ex.FEE_SECOND = False # On KRAKEN fee always in second coin
ex.FEE_BNB_IN_PAIR = False # Binance fee in BNB and BNB is base asset
ex.GRID_MAX_COUNT = 5 # Maximum counts for placed grid orders
Expand All @@ -61,9 +61,9 @@ ex.ORDER_Q = 12 # Target grid orders quantity in moment
ex.MARTIN = Decimal('10') # 5-20, % increments volume of orders in the grid
ex.SHIFT_GRID_DELAY = 15 # sec delay for shift grid action
# Other
ex.STATUS_DELAY = 5 # Minute between sending Tlg message about current status, 0 - disable
ex.STATUS_DELAY = 180 # Minute between sending Tlg message about current status, 0 - disable
ex.GRID_ONLY = False # Only place grid orders for buy/sell asset
ex.LOG_LEVEL_NO_PRINT = [] # LogLevel.DEBUG Print for level over this list member
ex.LOG_LEVEL = logging.DEBUG # Default level for console output
ex.COLLECT_ASSETS = False # Transfer free asset to main account, valid for subaccount only
# Parameter for calculate grid over price and grid orders quantity in set_trade_condition()
# If ADAPTIVE_TRADE_CONDITION = True, ORDER_Q / OVER_PRICE determines the density of grid orders
Expand Down
4 changes: 2 additions & 2 deletions martin_binance/cli_1_BTCUSDT.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ ex.ORDER_Q = 12 # Target grid orders quantity in moment
ex.MARTIN = Decimal('10') # 5-20, % increments volume of orders in the grid
ex.SHIFT_GRID_DELAY = 15 # sec delay for shift grid action
# Other
ex.STATUS_DELAY = 5 # Minute between sending Tlg message about current status, 0 - disable
ex.STATUS_DELAY = 180 # Minute between sending Tlg message about current status, 0 - disable
ex.GRID_ONLY = False # Only place grid orders for buy/sell asset
ex.LOG_LEVEL_NO_PRINT = [] # LogLevel.DEBUG Print for level over this list member
ex.LOG_LEVEL = logging.DEBUG # Default level for console output
ex.COLLECT_ASSETS = False # Transfer free asset to main account, valid for subaccount only
# Parameter for calculate grid over price and grid orders quantity in set_trade_condition()
# If ADAPTIVE_TRADE_CONDITION = True, ORDER_Q / OVER_PRICE determines the density of grid orders
Expand Down
2 changes: 1 addition & 1 deletion martin_binance/cli_2_TESTBTCTESTUSDT.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ex.SHIFT_GRID_DELAY = 15 # sec delay for shift grid action
# Other
ex.STATUS_DELAY = 5 # Minute between sending Tlg message about current status, 0 - disable
ex.GRID_ONLY = False # Only place grid orders for buy/sell asset
ex.LOG_LEVEL_NO_PRINT = [] # LogLevel.DEBUG Print for level over this list member
ex.LOG_LEVEL = logging.DEBUG # Default level for console output
ex.COLLECT_ASSETS = False # Transfer free asset to main account, valid for subaccount only
# Parameter for calculate grid over price and grid orders quantity in set_trade_condition()
# If ADAPTIVE_TRADE_CONDITION = True, ORDER_Q / OVER_PRICE determines the density of grid orders
Expand Down
2 changes: 1 addition & 1 deletion martin_binance/cli_3_BTCUSDT.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ex.SHIFT_GRID_DELAY = 1 # sec delay for shift grid action
# Other
ex.STATUS_DELAY = 60 # Minute between sending Tlg message about current status, 0 - disable
ex.GRID_ONLY = False # Only place grid orders for buy/sell asset
ex.LOG_LEVEL_NO_PRINT = [] # LogLevel.DEBUG Print for level over this list member
ex.LOG_LEVEL = logging.DEBUG # Default level for console output
ex.COLLECT_ASSETS = False # Transfer free asset to main account, valid for subaccount only
# Parameter for calculate grid over price and grid orders quantity in set_trade_condition()
# If ADAPTIVE_TRADE_CONDITION = True, ORDER_Q / OVER_PRICE determines the density of grid orders
Expand Down

0 comments on commit ad3f852

Please sign in to comment.