Skip to contents

A dataset containing daily closing prices for 10 global market indices from 2015-05-22 onwards.

Format

A dataframe with the following columns:

Date

Date in YYYY-MM-DD format

GSPC

S&P 500 Index (USA)

N225

Nikkei 225 (Japan)

FTSE

FTSE 100 (UK)

FCHI

CAC 40 (France)

GDAXI

DAX (Germany)

SSE

Shanghai Composite (China)

BSE

BSE SENSEX (India)

HSI

Hang Seng Index (Hong Kong)

TWII

Taiwan Weighted Index (Taiwan)

MOEX

MOEX Russia Index (Russia)

Source

Global market data

Examples

if (FALSE) { # \dontrun{
# Load the data directly from GitHub
data_url <- "https://raw.githubusercontent.com/avishekb9/WaveQTE/main/market_indices.csv"
market_data <- read.csv(data_url)
head(market_data)
} # }