I trying to place a bid and ask orders with the API DLL and NT8 using VS.
I don't really understand what this suppose to do:
Sets the ask price and size for the specified instrument. A return value of 0 indicates success and -1 indicates an error.
Sets the bid price and size for the specified instrument. A return value of 0 indicates success and -1 indicates an error.
What price I'm suppose to write?
int Ask = myClient.Ask(contract, 0, qty);
Console.WriteLine($"Ask: {Ask}");
Help me understand.
Thank you

Comment