+1 888 340 6572

Array contains: Difference between revisions

From MultiCharts
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:Portfolio Money Management]]
Will return True/False value depending on whether specific element is contained in the one-dimensional array, or not. 
 
==Usage==
<syntaxhighlight>Array_Contains(ArrayName,Value)</syntaxhighlight>
 
Where:
:'''ArrayName''' - an expression specifying the name of a numerical/string/boolean array.
:'''Value''' - a numerical/string/boolean expression specifying the value to search.
==Example==
Assign a true/false value, indicating that value 4 is contained in the numeric array Array1, to Condition1 variable:
 
<syntaxhighlight>Condition1 = Array_Contains(Array1,4);</syntaxhighlight>
[[Category:Dynamic Arrays]]

Latest revision as of 13:35, 10 April 2017

Will return True/False value depending on whether specific element is contained in the one-dimensional array, or not.

Usage

Array_Contains(ArrayName,Value)

Where:

ArrayName - an expression specifying the name of a numerical/string/boolean array.
Value - a numerical/string/boolean expression specifying the value to search.

Example

Assign a true/false value, indicating that value 4 is contained in the numeric array Array1, to Condition1 variable:

Condition1 = Array_Contains(Array1,4);