Hey Coinyguys ,
After:
response = getResponse(uri, "apisign", sign, params)
check first what's in the response variable.
The following 2 lines are only added to correct/modify the reponse to be able to be parsed with the JsonConverter.
tempString = Mid(response, InStr(response, "["), Len(response) - InStr(response, "["))
tempString = Replace(tempString, ":null", ":""null""")
I never tried to place Buy / Sell / Cancel orders.
As such I don't know how the response of such requests looks like.
Best is you just temporary write the context of the variables "response" and "tempString" in 2 seperate Excel cells
and then you see what I do to modify the Bittrex response for the JsonConverter.
Then you can compare the Bittrex response format for normal get* with your Buy / Sell / Cancel orders.
Hope this helps.
Good Luck.