VT

Vanguard Total World Stock ETF

Synthetic Asset Description

A synthetic asset that tracks the spot trading price of the Vanguard Total World Stock ETF in USD.

Display Name: Vanguard Total World Stock ETF Symbol: VT EMP Price Identifier: NUMERICAL Market: NYSE Arca Market Timings: Monday to Friday 9:30 am to 4:00 pm ET (closed on NYSE holidays) Price Feed Source: https://twelvedata.com/ Data Providers:

Manual Price Calculation

To determine the correct price for VT for the given request timestamp, voters must do the following:

  1. Get the request timestamp.

  2. Convert timestamp to UTC time.

  3. Convert the date and time to the following format: YYYY-MM-DD HH:mm:ss

  4. Determine your Timezone name according to the IANA Time Zone Database. E.g. America/New_York, Asia/Singapore. A full list of time zones can be found here ↗.

  5. Enter the start_date as (end_date - 4 days).

  6. Enter the end_date from step 1.

  7. Get the VT price from the response JSON.

    • Get the closing price from the "values" object.

Example response object

{
    "meta": {
        "symbol": "VT",
        "interval": "1h",
        "currency": "USD",
        "exchange_timezone": "America/New_York",
        "exchange": "NYSE",
        "mic_code": "ARCX",
        "type": "ETF"
    },
    "values": [
        {
            "datetime": "2023-04-06 09:30:00",
            "open": "91.68000",
            "high": "91.68000",
            "low": "91.30000",
            "close": "91.32000",
            "volume": "179718"
        },
        ....
        {
            "datetime": "2023-04-05 15:30:00",
            "open": "91.59500",
            "high": "91.71000",
            "low": "91.58500",
            "close": "91.64000",
            "volume": "1173185"
        }
    ]
}

Last updated