How do I go about querying the executed price of an order?
The documentation on GitHub specifies the following way to query:
cellVar.value = "DisplaySymbol"
ret = q.GetCell(i, cellVar, cellVal, retVar)
print(str(retVar.value) + ", "+ str(cellVal.value) + "=" + str(cellVar.value) + " success="+str(ret))
But changing the key to "ExecPrice" or "Price" returns a null output.
Is there an endpoint to query these parameters?