kelpdb

package
v1.12.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 5, 2021 License: Apache-2.0 Imports: 0 Imported by: 8

Documentation

Index

Constants

View Source
const SqlMarketsInsertTemplate = "INSERT INTO markets (market_id, exchange_name, base, quote) VALUES ('%s', '%s', '%s', '%s')"
insert statements

SqlMarketsInsertTemplate inserts into the markets table

View Source
const SqlMarketsTableCreate = "" /* 133-byte string literal not displayed */

tables

View Source
const SqlQueryMarketsById = "SELECT market_id, exchange_name, base, quote FROM markets WHERE market_id = $1 LIMIT 1"
queries

SqlQueryMarketsById queries the markets table

View Source
const SqlStrategyMirrorTradeTriggersInsertTemplate = "" /* 129-byte string literal not displayed */

SqlStrategyMirrorTradeTriggersInsertTemplate inserts into the strategy_mirror_trade_triggers table

View Source
const SqlStrategyMirrorTradeTriggersTableCreate = "" /* 199-byte string literal not displayed */
View Source
const SqlTradesIndexCreate = "CREATE INDEX IF NOT EXISTS date ON trades (market_id, date_utc)"

indexes

View Source
const SqlTradesIndexCreate2 = "CREATE INDEX IF NOT EXISTS trades_mdd ON trades (market_id, DATE(date_utc), date_utc)"
View Source
const SqlTradesIndexCreate3 = "CREATE UNIQUE INDEX IF NOT EXISTS trades_amt ON trades (account_id, market_id, txid)"

We don't include account_id in the primary key of the trades table because the account_id will initially be null until we clean that up (later) For now we add it as a unique index on which we will later base the primary key. This does not provide us with any immediate benefit because the PK is a subset of this unique index and we don't use this index for queries yet (we will later)

View Source
const SqlTradesIndexDrop = "DROP INDEX IF EXISTS date"
View Source
const SqlTradesInsertTemplate = "" /* 207-byte string literal not displayed */

SqlTradesInsertTemplate inserts into the trades table

View Source
const SqlTradesTableAlter1 = "ALTER TABLE trades ADD COLUMN account_id TEXT"
View Source
const SqlTradesTableAlter2 = "ALTER TABLE trades ADD COLUMN order_id TEXT"
View Source
const SqlTradesTableCreate = "" /* 350-byte string literal not displayed */

Variables

This section is empty.

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL