question

Upvotes
Accepted
6 0 2 2

REDI C# Stage VWAP Order Not Honoring StartTime/EndTime Variable

hOrder.Ticket = "Bypass" works as intended for VWAP parameters.

However, everything else equal, if I set .Ticket = "Stage", it doesn't set the StartTime and EndTime although stage order still honors the Urgency variable. The Stage order on REDI GUI seems fine otherwise.

ORDER hOrder = new ORDER();
Object err = null;
Object result;

hOrder.Symbol = "ZVZZT";
hOrder.Exchange = "*****";
hOrder.PriceType = "VWAP";
hOrder.Side = "Buy";
hOrder.Quantity = "1";
hOrder.Price = 5;
hOrder.TIF = "Day";
hOrder.Ticket = "Stage";
hOrder.Account = "TESTACCT";

hOrder.SetNewVariable("(MB) StartTime", 155500);
hOrder.SetNewVariable("(MB) EndTime", 160000);
hOrder.SetNewVariable("(MB) Urgency", "HIGH");

result = hOrder.Submit(ref err);
c#redi-apivwap
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
410 1 1 3

Hi,

Unfortunately, we have discovered an issue with Staged orders and setting the Start/End Time parameters. For the time being, we recommend not setting Start and End Time from Staged orders until we resolve the issue. Kindly reach out to your account manager for the latest update.

Thanks,

Brian

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi Brian, thanks for the reply. Is there an issue tracker I could follow to get a sense of when this will be resolved? Otherwise, I'll reach out to our account manager.

Please reach out to your account manager. (we don't have a client-facing issue tracking tool) Thanks!

Thanks. One last question: is there a way to set a default value for start and endtime for VWAP so the API doesn't need to update the value?

Upvotes
410 1 1 3

Your broker may have a way of defaulting it on their side. I suggest reaching out to them to confirm.

(from REDI, you can set a default, but if you pass no value from the API, nothing will be sent to the broker)

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.