NETScript CLASS

Positions PROPERTY (PositionsCollection)
Represents access to collection of all available positions. SYNTAX public PositionsCollection Positions { get; }
Wed, May 2, 2018 at 1:48 PM
ProjectName PROPERTY (string)
The name of the script. SYNTAX public string ProjectName { get; set; }
Wed, May 2, 2018 at 1:49 PM
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...
Wed, May 2, 2018 at 1:50 PM
Version PROPERTY (string)
The version of the script. SYNTAX public string Version { get; set; }
Wed, May 2, 2018 at 1:51 PM
NETScript () CONSTRUCTOR
Constructor SYNTAX public NETScript ()
Wed, May 2, 2018 at 2:24 PM
Alert (object[] args) METHOD (Return: void)
Shows all given params in message screen. SYNTAX public void Alert (object[] args) PARAMETERS args — object[] RETURN void
Wed, May 2, 2018 at 2:25 PM
Comment (object[] args) METHOD (Return: void)
Shows data in the chart window. SYNTAX public void Comment (object[] args) PARAMETERS args — object[] RETURN void
Wed, May 2, 2018 at 2:27 PM
ConvertUTCTimeToSelectedTimeZone (DateTime timeUTC) METHOD (Return: DateTime)
Convert UTC time to selected time zone. SYNTAX public DateTime ConvertUTCTimeToSelectedTimeZone (DateTime timeUTC) PARAMETERS timeUTC — DateT...
Wed, May 2, 2018 at 2:28 PM
CreateTimer METHOD (TimerCallback callback)
Timer that will be stopped at the end of the script SYNTAX public Timer CreateTimer (TimerCallback callback) PARAMETERS callback — TimerCall...
Wed, May 2, 2018 at 2:43 PM
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) ...
Wed, May 2, 2018 at 2:45 PM