Gets a single open order by unique Id.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
BrokerOrder GetOpenOrder(
	string id
)
Visual Basic (Declaration)
Function GetOpenOrder ( _
	id As String _
) As BrokerOrder
Visual C++
BrokerOrder^ GetOpenOrder(
	String^ id
)

Parameters

id
Type: System..::.String
Unique Id of this order as given in the SubmitOrder function.

Return Value

Returns the order assigned to this Id. Return null or Nothing if no order is found with this Id.

See Also