Skip to content

Commit

Permalink
Fix datatype for --order-count.
Browse files Browse the repository at this point in the history
  • Loading branch information
brndnmtthws committed Jan 2, 2018
1 parent 2fdc9e8 commit bc53c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimal-buy-gdax.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
parser.add_argument('--discount-step', type=float,
help='discount step between orders (default: 0.01)',
default=0.01)
parser.add_argument('--order-count', type=float,
parser.add_argument('--order-count', type=int,
help='number of orders (default: 5)', default=5)
parser.add_argument('--fiat-currency', help='Fiat currency (default: USD)',
default='USD')
Expand Down

0 comments on commit bc53c45

Please sign in to comment.