Click or drag to resize
OrderServiceGetListAsync Method (String, NullableUInt32, String, OrderParameters)

Note: This is preliminary documentation provided only as a preview, and is subject to change. Please contact the author for pricing and licensing information.

Returns a list of open orders or orders updated during the current day.

Namespace: ETradeNet.Order
Assembly: ETradeNet.Order (in ETradeNet.Order.dll) Version: 1.0.5793.41701
Syntax
public Task<IGetListResponse> GetListAsync(
	string accountId,
	Nullable<uint> count,
	string marker,
	OrderParameters parameters
)

Parameters

accountId
Type: SystemString
Numeric account ID. Required.
count
Type: SystemNullableUInt32
The number of orders to return in the response. The default is 25.
marker
Type: SystemString
The desired starting point of the set of items to return.
parameters
Type: ETradeNet.OrderOrderParameters
Common parameters.

Return Value

Type: TaskIGetListResponse
GetList method response (asynchronous task).

Implements

IOrderServiceGetListAsync(String, NullableUInt32, String, OrderParameters)
Exceptions
ExceptionCondition
ETradeExceptionE*TRADE API exception.
HttpRequestExceptionNetwork error.
ArgumentNullExceptionNull argument value (accountId).
ArgumentExceptionArgument value does not adhere to the specification (parameters).
See Also