Octane

View as MarkdownOpen in Claude

Algo Strategy Value: Octane

StartTime: String. Start Time.
Valid Value/Format: hh:mm:ss tmz

EndTime: String.Must be on the same date as Start Time. Takes precedence over Duration.
Valid Value/Format: hh:mm:ss tmz

Duration: double. Alternative order end time specifier. This value is a number of minutes that the order should be worked.
Valid Value/Format: 10. A value of -99 will specify that the end time should be the exchange close time.

Urgency: String. Fill urgency
Valid Value/Format: High, Ultra_High

1order.algoStrategy = "Octane"
2order.algoParams = []
3order.algoParams.append(TagValue("StartTime", StartTime))
4order.algoParams.append(TagValue("EndTime", EndTime))
5order.algoParams.append(TagValue("Duration", Duration))
6order.algoParams.append(TagValue("Urgency", Urgency))