Functions by Category Functions by Alphabetical list
Today ([column]) |  | This function returns the value for the current bar for the column. Examples: Output(Today(Close)); #output today's close, is equivalent to Output(ClosePrice);
if (Today(HammerHanging)) {
#buyopen if today is a hammerhanging candle formation.
BuyOpen;
}
Related functions: Above , Below , Crossover , Crossunder , Cross , Now , Yesterday , Previous , Ago
|