Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/quantconnect/lean.datasource.nasdaqdatalink
Nasdaq Data Link dataset
https://github.com/quantconnect/lean.datasource.nasdaqdatalink
Last synced: about 1 month ago
JSON representation
Nasdaq Data Link dataset
- Host: GitHub
- URL: https://github.com/quantconnect/lean.datasource.nasdaqdatalink
- Owner: QuantConnect
- Created: 2021-11-22T16:06:56.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-12T21:04:55.000Z (over 1 year ago)
- Last Synced: 2024-05-01T09:52:14.076Z (8 months ago)
- Language: C#
- Size: 65.4 KB
- Stars: 3
- Watchers: 5
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![LEAN Data Source SDK](http://cdn.quantconnect.com.s3.us-east-1.amazonaws.com/datasources/Github_LeanDataSourceSDK.png)
# Lean DataSource SDK
[![Build Status](https://github.com/QuantConnect/LeanDataSdk/workflows/Build%20%26%20Test/badge.svg)](https://github.com/QuantConnect/LeanDataSdk/actions?query=workflow%3A%22Build%20%26%20Test%22)
### Introduction
The Lean Data SDK is a cross-platform template repository for developing custom data types for Lean.
These data types will be consumed by [QuantConnect](https://www.quantconnect.com/) trading algorithms and research environment, locally or in the cloud.It is composed by example .Net solution for the data type and converter scripts.
### Prerequisites
The solution targets dotnet 5, for installation instructions please follow [dotnet download](https://dotnet.microsoft.com/download).
The data downloader and converter script can be developed in different ways: Python script, Python jupyter notebook or even a bash script.
- The python script should be compatible with python 3.6.8
- Bash script will run on Ubuntu BionicSpecifically, the enviroment where these scripts will be run is [quantconnect/research](https://hub.docker.com/repository/docker/quantconnect/research) based on [quantconnect/lean:foundation](https://hub.docker.com/repository/docker/quantconnect/lean).
### Installation
This repository should be forked for each unique data source which requires its own data processing. Once it is cloned locally, you should be able to successfully build the solution, run all tests and execute the conveter scripts.
Once ready, please contact [email protected] and we will create a listing in the QuantConnect Data Market for your company and link to your public repository and commit hash.
### Datasets Vendor Requirements
Key requirements for new vendors include:
- A well-defined dataset with a clear and static vision for the data to minimize churn or changes as people will be building systems from it. This is easiest with "raw" data (e.g. sunshine hours vs a sentiment algorithm)
- Robust ticker and security links to ensure the tickers are tracked well through time, or accurately point in time. ISIN, FIGI, or point in time ticker supported
- Robust funding to ensure viable for at least 1 year
- Robust API to ensure reliable up-time. No dead links on site or and 502 servers while using API
- Consistent delivery schedule, on time and in time for market trading
- Consistent data format with notifications and lead time on data format updates
- At least 1 year of historical point in time data
- Survivorship bias free data
- Good documentation for the dataset### Tutorials
- See [Tutorials](https://github.com/QuantConnect/Lean/blob/master/tutorials.md) for a step by step guide for creating a new LEAN Data Source.