Functions by Category Functions by Alphabetical list
Above([Column/Value],[Column/Value]) |  | This function returns true when the first column/value is above the second column/value. Examples: if (Above(Close,Open)) {
Output('up day');
}
else {
Output('down day');
}
Above(Close,7.5); #Returns true if the close now is above 7.5
Related functions: Below , Crossover , Crossunder , Cross , Today , Now , Yesterday , Previous , Ago
|