CQG API 4.0 - Revised
CustomSessionsResolved Event
See Also  Send Feedback
cqg_sessions_collection

Collection of resolved custom sessions.

If an error has occurred, the collection will be empty.

cqg_error

CQGError object representing the error occurred during the custom sessions request.

If no error has occurred, the parameter value is either Nothing or invalid error object depending on the UsedFromATLClient setting of the configuration.

The parameter can be checked for validity via the CQGCEL.IsValid method. 

CQGCEL Interface : CustomSessionsResolved Event

Glossary Item Box

Description

This event is fired as a response to a custom sessions request either when the collection is resolved or when an error has occurred during the request processing.

Syntax

Visual Basic
Public Event CustomSessionsResolved( _
   ByVal cqg_sessions_collection As CQGSessionsCollection, _
   ByVal cqg_error As CQGError _
)

Parameters

cqg_sessions_collection

Collection of resolved custom sessions.

If an error has occurred, the collection will be empty.

cqg_error

CQGError object representing the error occurred during the custom sessions request.

If no error has occurred, the parameter value is either Nothing or invalid error object depending on the UsedFromATLClient setting of the configuration.

The parameter can be checked for validity via the CQGCEL.IsValid method. 

Remarks

For more information about custom sessions see this article in CQG Charting User Guide.

Example

The examples below show how to request custom sessions via CQG API.

VB
C#
 
 

See Also