NETColumn CLASS

Positions PROPERTY (PositionsCollection)
Represents access to collection of all available positions. SYNTAX public PositionsCollection Positions { get; }
Mon, Apr 23, 2018 at 8:22 AM
ProjectName PROPERTY (string)
The name of the script SYNTAX public string ProjectName { get; set; }
Mon, Apr 23, 2018 at 8:24 AM
SingleThreadEvents PROPERTY (bool)
Returns true when events should be called in the main processing thread, otherwise returns false (default). Directly event processing is faster, but may aff...
Mon, Apr 23, 2018 at 8:25 AM
Version PROPERTY (string)
The version of the script SYNTAX public string Version { get; set; }
Mon, Apr 23, 2018 at 8:27 AM
Alert (object[] args) METHOD (Return: void)
Shows all given params in message screen; SYNTAX public void Alert (object[] args) PARAMETERS args — object[] RETURN void
Mon, Apr 23, 2018 at 11:05 AM
Comment (object[] args) METHOD (Return: void)
Shows data in the chart window; SYNTAX public void Comment (object[] args) PARAMETERS args — object[] RETURN void
Mon, Apr 23, 2018 at 11:59 AM
Complete () METHOD (Return: void)
This function will be called before removing. SYNTAX public void Complete () RETURN void
Mon, Apr 23, 2018 at 12:02 PM
ConvertUTCTimeToSelectedTimeZone (DateTime timeUTC) METHOD (Return: DateTime)
Convert UTC time to selected time zone;  SYNTAX public DateTime ConvertUTCTimeToSelectedTimeZone (DateTime timeUTC) PARAMETERS timeUTC — DateTime ...
Tue, Apr 24, 2018 at 6:16 AM
CreateTimer (TimerCallback callback) METHOD (Return: Timer)
Timer that will be stopped at the end of the script  SYNTAX public Timer CreateTimer (TimerCallback callback) PARAMETERS callback — TimerCallback ...
Tue, Apr 24, 2018 at 6:25 AM
CreateTimer (TimerCallback callback, object state, int dueTime, int period) METHOD (Return: Timer)
Timer that will be stopped at the end of the script SYNTAX public Timer CreateTimer (TimerCallback callback,object state,int dueTime,int period) PA...
Tue, Apr 24, 2018 at 6:23 AM