|
request = Request( |
|
'GET', |
|
'/v3/accounts/{accountID}/instruments/{instrument}/candles' |
|
) |
|
|
|
request.set_path_param( |
|
'instrument', |
|
instrument |
|
) |
The path parameter for 'accountID' is not set, something similar to the below code is needed!
|
request.set_path_param( |
|
'accountID', |
|
accountID |
|
) |
Please fix the same!
v20-python/src/v20/pricing.py
Lines 871 to 879 in f28192f
The path parameter for 'accountID' is not set, something similar to the below code is needed!
v20-python/src/v20/pricing.py
Lines 761 to 764 in f28192f
Please fix the same!