Post
Topic
Board Service Discussion
Re: [SOLVED] Bittrex API 1.1 calls with Excel
by
JMan7777
on 24/11/2017, 14:39:23 UTC
Hey Coinyguys ,

After:
Code:
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.
Code:
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.