Historical Data

Historical Data Feed

We provide complimentary access to extensive historical datasets covering major global markets. Our data catalog includes a broad range of financial instruments — futures, foreign exchange, equities, and fixed-income securities — available for download at M1, M5, M15, M30, and H1 intervals.

Tick-level data and live quote streams are available exclusively to institutional clients via authenticated API access. Subscriptions can be provisioned through the individual user's account portal.

Python Code Example

app.py
import csv
import requests
 
url = 'https://hist.grosch.com/commodity/xauusd/m5'
 
def download_and_print_csv(url):
    response = requests.get(url)
    if response.status_code == 200:
        content = response.content.decode('utf-8')
        with open('~Downloads/gold_hist_data.csv', 'w') as local_file:
            local_file.write(content)
        cr = csv.reader(content.splitlines(), delimiter=',')
        my_list = list(cr)
        for row in my_list:
            print(row)
    else:
        print(f"Failed to download the CSV. Status code: {response.status_code}")
 
download_and_print_csv(url)