-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
35 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
LoCaSt: Local Candle Store - A module to download and store price candles from exchanges in a database. | ||
[alt text]([email protected])! | ||
LoCaSt: Local Candle Store - A module to download and store price candles from exchanges in a database. | ||
|
||
# Intro | ||
LoCaSt handles candle data in a very straight forward manner: | ||
- there is one underlying `Candle` type to hold the relevant data of a price candle | ||
- a group of such `Candle` objects is collected into a **cluster**, which is simply a `List[Candle]` | ||
- these clusters are written into an sqlite database an can be updated as needed | ||
|
||
### Cluster | ||
A cluster is a list of candle objects, representing a time series of price data. Per exchange, market and resolution, there can be exactly one cluster in the database. It can be interacted with in the following ways. | ||
|
||
### Currently implemented | ||
|
||
#### Features | ||
- create cluster | ||
- retrieve cluster | ||
- update cluster | ||
- delete cluster | ||
- get info about cluster | ||
- head | ||
- tail | ||
- amount of candles | ||
- wether it is up to date | ||
- ... more to come | ||
|
||
#### Exchanges | ||
- dydx (v3) | ||
- dydx v4 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters