Skip to content

Commit

Permalink
added buypercent and sellpercent into header documenation
Browse files Browse the repository at this point in the history
  • Loading branch information
whittlem committed Feb 17, 2023
1 parent e681feb commit 10ad002
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Python Crypto Bot v7.0.35 (pycryptobot)
# Python Crypto Bot v7.0.36 (pycryptobot)

[![Docker](https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg)](https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg) [![Tests](https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg)

Expand Down
3 changes: 3 additions & 0 deletions controllers/PyCryptoBot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2462,6 +2462,9 @@ def config_option_row_enum(
arg_name="tslmaxpcnt",
)

config_option_row_float("Buy Percent", "buypercent", "Buy order size in quote currency as a percentage", default_value=100.0, arg_name="buypercent")
config_option_row_float("Sell Percent", "sellpercent", "Sell order size in quote currency as a percentage", default_value=100.0, arg_name="sellpercent")

config_option_row_float("Buy Min Size", "buyminsize", "Minimum buy order size in quote currency", default_value=0.0, arg_name="buyminsize")
config_option_row_float("Buy Max Size", "buymaxsize", "Maximum buy order size in quote currency", default_value=0.0, arg_name="buymaxsize")
config_option_row_bool(
Expand Down

0 comments on commit 10ad002

Please sign in to comment.