NETScript CLASS
Represents access to collection of all available positions. SYNTAX public PositionsCollection Positions { get; }
Wed, May 2, 2018 at 1:48 PM
The name of the script. SYNTAX public string ProjectName { get; set; }
Wed, May 2, 2018 at 1:49 PM
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
The version of the script. SYNTAX public string Version { get; set; }
Wed, May 2, 2018 at 1:51 PM
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
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
Convert UTC time to selected time zone. SYNTAX public DateTime ConvertUTCTimeToSelectedTimeZone (DateTime timeUTC) PARAMETERS timeUTC — DateT...
Wed, May 2, 2018 at 2:28 PM
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
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