NETIndicator

Positions PROPERTY (PositionsCollection)
Represents access to collection of all available positions. SYNTAX public PositionsCollection Positions { get; }
Wed, Apr 25, 2018 at 6:25 AM
ProjectName PROPERTY (string)
The name of the script SYNTAX public string ProjectName { get; set; }
Wed, Apr 25, 2018 at 6:27 AM
Refreshing PROPERTY (bool)
Gets true when indicator is refreshed now; SYNTAX public bool Refreshing { get; }
Wed, Apr 25, 2018 at 6:28 AM
SeparateWindow PROPERTY (bool)
When sets to true the indicator will be displayed in the separate chart window SYNTAX public bool SeparateWindow { get; set; }
Wed, Apr 25, 2018 at 6:30 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...
Wed, Apr 25, 2018 at 6:33 AM
SymbolCode PROPERTY (int[])
Gets the symbols's code for symbol-styled indicator SYNTAX public int[] SymbolCode { get; }
Wed, Apr 25, 2018 at 6:35 AM
Version PROPERTY (string)
The version of the script SYNTAX public string Version { get; set; }
Wed, Apr 25, 2018 at 6:48 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
Wed, Apr 25, 2018 at 6:56 AM
ClearMarkers (int line) METHOD (Return: void)
Fully clears markers from line SYNTAX public void ClearMarkers (int line) PARAMETERS line — int RETURN void
Wed, Apr 25, 2018 at 6:58 AM
Comment (object[] args) METHOD (Return: void)
Shows data in the chart window; SYNTAX public void Comment (object[] args) PARAMETERS args — object[] RETURN void
Wed, Apr 25, 2018 at 7:07 AM