Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion deriv_api/deriv_api_calls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7006,7 +7006,9 @@ def parse_args(all_args):
ptype = config[param].get('type')
if ptype and ptype == 'string':
parsed_args[param] = f'{value}'
elif ptype and (ptype == 'numeric' or ptype == 'boolean'):
elif ptype and ptype == 'numeric':
parsed_args[param] = float(value)
elif ptype and ptype == 'boolean':
parsed_args[param] = int(float(value))

return parsed_args
Expand Down