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