Difference between revisions of "Time"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns a numerical value indicating the closing time of the current bar. The time is indicated in the 24-hour HHmm format, where 1300 = 1:00 PM. ==== Usage ==== Time ...")
 
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Returns a numerical value indicating the closing time of the current bar. The time is indicated in the 24-hour HHmm format, where 1300 = 1:00 PM.  
+
Returns a numerical value indicating the closing time of the current bar. The time is indicated in the 24-hour ''HHmm'' format, where 1300 = 1:00 PM.  
 
   
 
   
==== Usage ====
+
== Usage ==
[[Time]]
+
<syntaxhighlight>Time</syntaxhighlight>
 
==== Example ====
 
[[Time]]  will return a value of 1015 for 10:15 AM
 
  
[[Time]] will return a value of 1545 for 3:45 PM
+
== Notes ==
 +
* See the category [[:Category:Date_and_Time_Routines|Date and Time Routines]] for working with time in PowerLanguage.
 +
* Use [[Time_s]] to get the time of the bar with seconds precision.
 +
* Use [[CurrentTime]] and [[CurrentTime_s]] to get the ''computer time'' with respectively minutes and seconds precision.
 +
* The range of returned values is limited by the [[MaxBarsBack]] setting.
  
 +
== Example ==
 +
<syntaxhighlight>Time</syntaxhighlight>
 +
* Will return a value of 1015 for 10:15 AM,
 +
* Will return a value of 1545 for 3:45 PM.
  
 
[[Category:Data Information/General]]
 
[[Category:Data Information/General]]

Latest revision as of 15:59, 28 February 2012

Returns a numerical value indicating the closing time of the current bar. The time is indicated in the 24-hour HHmm format, where 1300 = 1:00 PM.

Usage

Time

Notes

  • See the category Date and Time Routines for working with time in PowerLanguage.
  • Use Time_s to get the time of the bar with seconds precision.
  • Use CurrentTime and CurrentTime_s to get the computer time with respectively minutes and seconds precision.
  • The range of returned values is limited by the MaxBarsBack setting.

Example

Time
  • Will return a value of 1015 for 10:15 AM,
  • Will return a value of 1545 for 3:45 PM.