|
Functions by Category Functions by Alphabetical list
Returns the DateTime column. Each value from the date time column is in YYYYMMDDHHMMSS format. For example, 3.45pm on 15th of July 2004 would be 20040715154500. Typically you would convert this value to be more useful, by using any of the following functions Date , Time , Second , Minute , Hour , Month , Year , DayOfWeek , DayOfMonth , DayOfYear and WeekOfYear. Examples: Now(DateTime); #returns the datetime for the current bar
Ago(DateTime,15); #returns the datetime for 15 bars ago
Hour(Ago(DateTime,15)); #returns the hour of the bar 15 bars ago
Related functions: Open , Close , High , Low , Volume , OpenPrice , ClosePrice , HighPrice , LowPrice , TomorrowVolume , TomorrowLow , TomorrowHigh , TomorrowClose , TomorrowOpen
|