TradingView
thomastthai
2022년 12월 24일 오전 1시 51분

ISODateTime 

Tesla, Inc.NASDAQ

설명

Library "ISODateTime"

getDateParts(dateStr)
  Get year, month, day from date string.
  Parameters:
    dateStr: <string> : ISO 8601 format, i.e. "2022-05-04T14:00:00.001000-04:00" or "2022-05-04T14:00:00Z"
  Returns: array of int [YYYY, MM, DD]

getTimeParts(dateStr)
  Get hour, minute, seconds from date string.
  Parameters:
    dateStr: <string> : ISO 8601 format, i.e. "2022-05-04T14:00:00.001000-04:00" or "2022-05-04T14:00:00Z"
  Returns: array of int [HH, MM, SS, MS]

getUTCTimezone(dateStr)
  Get UTC timezone.
  Parameters:
    dateStr: <string> : ISO 8601 format, i.e. "2022-05-04T14:00:00.001000-04:00" or "2022-05-04T14:00:00Z"
  Returns: string UTC timezone

릴리즈 노트

v2

릴리즈 노트

v3
Instead of return an array holding multiple results, return multiple results.

Updated:
getDateParts(dateStr)
  Get year, month, day from date string.
  Parameters:
    dateStr: <string> : ISO 8601 format, i.e. "2022-05-04T14:00:00.001000-04:00" or "2022-05-04T14:00:00Z"
  Returns: int [YYYY, MM, DD]

getTimeParts(dateStr)
  Get hour, minute, seconds from date string.
  Parameters:
    dateStr: <string> : ISO 8601 format, i.e. "2022-05-04T14:00:00.001000-04:00" or "2022-05-04T14:00:00Z"
  Returns: int [HH, MM, SS, MS]
더보기