TradingView
thomastthai
24 de Dez de 2022 01:51

ISODateTime 

Tesla, Inc.NASDAQ

Descrição

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

Notas de Lançamento

v2

Notas de Lançamento

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]
Mais