Functions by Category Functions by Alphabetical list
Crossunder ([Column/Value],[Column/Value]) |  | This function returns true when the first column/value crosses under the second column/value. Examples: SellOpen if Crossunder(EMA(Close,13),EMA(Close,26));
#Sell when the 13 bar ema of the close crosses under the 26 bar ema of the close
SellOpen if Crossunder(EMA(Close,13),7.5);
#Sell when the 13 bar ema of the close crosses under 7.5
Related functions: Above , Below , Crossover , Cross , Today , Now , Yesterday , Previous , Ago
|