NETIndicator

GetValue (int line) METHOD (Return: double)
Gets the value calculated by indicator SYNTAX public double GetValue (int line) PARAMETERS line — int RETURN double
Wed, Apr 25, 2018 at 9:26 AM
IndicatorDigits (int digits) METHOD (Return: void)
Sets precision format (the count of digits after decimal point) to visualize indicator values;  SYNTAX public void IndicatorDigits (int digits) PAR...
Wed, Apr 25, 2018 at 9:28 AM
IndicatorShortName (string name) METHOD (Return: void)
Sets the short name of a custom indicator to be shown in the DataWindow and in the chart subwindow;  SYNTAX public void IndicatorShortName (string name...
Wed, Apr 25, 2018 at 10:34 AM
Init () METHOD (Return: void)
This function will be called after creating. SYNTAX public void Init () RETURN void
Wed, Apr 25, 2018 at 10:37 AM
IsTesting () METHOD (Return: bool)
Gets true if script was runned by tester; SYNTAX public bool IsTesting () RETURN bool
Wed, Apr 25, 2018 at 10:41 AM
NextBar () METHOD (Return: void)
This function will be called after new bar will build. SYNTAX public void NextBar () RETURN void
Wed, Apr 25, 2018 at 10:43 AM
OnPaintChart (object sender, PaintChartEventArgs args) METHOD (Return: void)
Drawing char SYNTAX public void OnPaintChart (object sender,PaintChartEventArgs args) PARAMETERS sender — objectargs — PaintChartEventArgs RETUR...
Wed, Apr 25, 2018 at 11:10 AM
OnQuote () METHOD (Return: void)
Entry point. This function is called when new quote comes. SYNTAX public void OnQuote () RETURN void
Wed, Apr 25, 2018 at 11:43 AM
PlaySound (string fileName) METHOD (Return: void)
Plays one of the standard sounds; SYNTAX public void PlaySound (string fileName) PARAMETERS fileName — string RETURN void
Wed, Apr 25, 2018 at 11:50 AM
Print (object[] args) METHOD (Return: void)
Stores the string in logs; SYNTAX public void Print (object[] args) PARAMETERS args — object[] RETURN void
Wed, Apr 25, 2018 at 11:52 AM