C# Class XTAPI_Samples.frmFillUpdate

FillUpdate This example demonstrates using the XTAPI to retrieve fills for the authenticated X_TRADER user.
Inheritance: System.Windows.Forms.Form
Show file Open project: tradingtechnologies/CodeSamples_XTAPI_CSharp

Public Methods

Method Description
frmFillUpdate ( ) : System

Initialize the TTOrderSet object and subscribe to the three fill events.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

Private Methods

Method Description
AboutMenuItem_Click ( object sender, System e ) : void

Display the About dialog box.

InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

Main ( ) : void
m_TTOrderSet_OnOrderFillBlockEnd ( ) : void

This function is called when a set of fills has been delivered.

m_TTOrderSet_OnOrderFillBlockStart ( ) : void

This function is called when a set of fills is about to be sent.

m_TTOrderSet_OnOrderFillData ( XTAPI pFillObj ) : void

This function is called for every fill update. Obtain the fill information by calling the Get() properties from the TTFillObj passed as an argument.

Method Details

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool
return void

frmFillUpdate() public method

Initialize the TTOrderSet object and subscribe to the three fill events.
public frmFillUpdate ( ) : System
return System