NETMacros CLASS
Represents access to collection of all available positions. SYNTAX public PositionsCollection Positions { get; }
Wed, May 2, 2018 at 11:04 AM
The name of the script. SYNTAX public string ProjectName { get; set; }
Wed, May 2, 2018 at 11:05 AM
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 11:06 AM
The version of the script. SYNTAX public string Version { get; set; }
Wed, May 2, 2018 at 11:07 AM
Shows all given params in message screen. SYNTAX public void Alert (object[] args) PARAMETERS args — object[] RETURN void
Wed, May 2, 2018 at 11:08 AM
Shows data in the chart window. SYNTAX public void Comment (object[] args) PARAMETERS args — object[] RETURN void
Wed, May 2, 2018 at 11:09 AM
Convert UTC time to selected time zone. SYNTAX public DateTime ConvertUTCTimeToSelectedTimeZone (DateTime timeUTC) PARAMETERS timeUTC — DateT...
Wed, May 2, 2018 at 11:10 AM
Timer that will be stopped at the end of the script. SYNTAX public Timer CreateTimer (TimerCallback callback) PARAMETERS callback — TimerCal...
Wed, May 2, 2018 at 11:11 AM
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 11:13 AM
CreateTimer (TimerCallback callback, object state, long dueTime, long period) METHOD (Return: Timer)
Timer that will be stopped at the end of the script. SYNTAX public Timer CreateTimer (TimerCallback callback,object state,long dueTime,long period) ...
Wed, May 2, 2018 at 11:15 AM