Skip to content

Commit

Permalink
update help comment to kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
enarjord authored Sep 5, 2023
1 parent 6b25ff3 commit abfa7ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions passivbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1747,7 +1747,7 @@ async def main() -> None:
required=False,
dest="price_precision_multiplier",
default=None,
help="Override price step with round_dynamic(market_price * price_precision, 1). Suggested val 0.0001",
help="Override price step with market_price * price_precision_multiplier rounded to one significant digit. Suggested val 0.0001. Set to 0.0 to disable.",
)
parser.add_argument(
"-ps",
Expand All @@ -1757,7 +1757,7 @@ async def main() -> None:
required=False,
dest="price_step_custom",
default=None,
help="Override price step with custom price step. Takes precedence over -pp",
help="Override price step with custom price step. Takes precedence over -pp. Set to 0.0 to disable.",
)
parser.add_argument(
"-co",
Expand Down

0 comments on commit abfa7ab

Please sign in to comment.