mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
update profit table columns
This commit is contained in:
parent
9e0df77a36
commit
bb52fcb48f
|
@ -1,36 +1,62 @@
|
||||||
-- +up
|
-- +up
|
||||||
CREATE TABLE `profits`
|
CREATE TABLE `profits`
|
||||||
(
|
(
|
||||||
`gid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
`gid` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
|
|
||||||
`exchange` VARCHAR(24) NOT NULL DEFAULT '',
|
`symbol` VARCHAR(8) NOT NULL,
|
||||||
|
|
||||||
`symbol` VARCHAR(8) NOT NULL,
|
|
||||||
|
|
||||||
`trade_id` BIGINT UNSIGNED NOT NULL,
|
|
||||||
|
|
||||||
-- average_cost is the position average cost
|
-- average_cost is the position average cost
|
||||||
`average_cost` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
`average_cost` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
||||||
|
|
||||||
-- profit is the pnl (profit and loss)
|
-- profit is the pnl (profit and loss)
|
||||||
`profit` DECIMAL(16, 8) NOT NULL,
|
`profit` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
-- price is the price of the trade that makes profit
|
-- net_profit is the pnl (profit and loss)
|
||||||
`price` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
`net_profit` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
-- quantity is the quantity of the trade that makes profit
|
-- profit_margin is the pnl (profit and loss)
|
||||||
`quantity` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
`profit_margin` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
-- quote_quantity is the quote quantity of the trade that makes profit
|
-- net_profit_margin is the pnl (profit and loss)
|
||||||
`quote_quantity` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
`net_profit_margin` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
|
`quote_currency` VARCHAR(10) NOT NULL,
|
||||||
|
|
||||||
|
`base_currency` VARCHAR(10) NOT NULL,
|
||||||
|
|
||||||
|
-- -------------------------------------------------------
|
||||||
|
-- embedded trade data --
|
||||||
|
-- -------------------------------------------------------
|
||||||
|
`exchange` VARCHAR(24) NOT NULL DEFAULT '',
|
||||||
|
|
||||||
|
`is_futures` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
|
||||||
|
`is_margin` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
|
||||||
|
`is_isolated` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
|
||||||
|
`trade_id` BIGINT UNSIGNED NOT NULL,
|
||||||
|
|
||||||
-- side is the side of the trade that makes profit
|
-- side is the side of the trade that makes profit
|
||||||
`side` VARCHAR(4) NOT NULL DEFAULT '',
|
`side` VARCHAR(4) NOT NULL DEFAULT '',
|
||||||
|
|
||||||
`traded_at` DATETIME(3) NOT NULL,
|
-- price is the price of the trade that makes profit
|
||||||
|
`price` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
||||||
|
|
||||||
|
-- quantity is the quantity of the trade that makes profit
|
||||||
|
`quantity` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
||||||
|
|
||||||
|
-- trade_amount is the quote quantity of the trade that makes profit
|
||||||
|
`trade_amount` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
||||||
|
|
||||||
|
`traded_at` DATETIME(3) NOT NULL,
|
||||||
|
|
||||||
|
-- fee
|
||||||
|
`fee_in_usd` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
||||||
|
`fee` DECIMAL(16, 8) UNSIGNED NOT NULL,
|
||||||
|
`fee_currency` VARCHAR(10) NOT NULL,
|
||||||
|
|
||||||
PRIMARY KEY (`gid`),
|
PRIMARY KEY (`gid`),
|
||||||
|
|
||||||
UNIQUE KEY `trade_id` (`trade_id`)
|
UNIQUE KEY `trade_id` (`trade_id`)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -1,33 +1,60 @@
|
||||||
-- +up
|
-- +up
|
||||||
CREATE TABLE `profits`
|
CREATE TABLE `profits`
|
||||||
(
|
(
|
||||||
`gid` INTEGER PRIMARY KEY AUTOINCREMENT,
|
`gid` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
|
|
||||||
`exchange` VARCHAR(24) NOT NULL DEFAULT '',
|
`symbol` VARCHAR(8) NOT NULL,
|
||||||
|
|
||||||
`symbol` VARCHAR(8) NOT NULL,
|
|
||||||
|
|
||||||
`trade_id` INTEGER NOT NULL,
|
|
||||||
|
|
||||||
-- average_cost is the position average cost
|
-- average_cost is the position average cost
|
||||||
`average_cost` DECIMAL(16, 8) NOT NULL,
|
`average_cost` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
-- profit is the pnl (profit and loss)
|
-- profit is the pnl (profit and loss)
|
||||||
`profit` DECIMAL(16, 8) NOT NULL,
|
`profit` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
-- price is the price of the trade that makes profit
|
-- net_profit is the pnl (profit and loss)
|
||||||
`price` DECIMAL(16, 8) NOT NULL,
|
`net_profit` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
-- quantity is the quantity of the trade that makes profit
|
-- profit_margin is the pnl (profit and loss)
|
||||||
`quantity` DECIMAL(16, 8) NOT NULL,
|
`profit_margin` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
-- quote_quantity is the quote quantity of the trade that makes profit
|
-- net_profit_margin is the pnl (profit and loss)
|
||||||
`quote_quantity` DECIMAL(16, 8) NOT NULL,
|
`net_profit_margin` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
|
`quote_currency` VARCHAR(10) NOT NULL,
|
||||||
|
|
||||||
|
`base_currency` VARCHAR(10) NOT NULL,
|
||||||
|
|
||||||
|
-- -------------------------------------------------------
|
||||||
|
-- embedded trade data --
|
||||||
|
-- -------------------------------------------------------
|
||||||
|
`exchange` VARCHAR(24) NOT NULL DEFAULT '',
|
||||||
|
|
||||||
|
`is_futures` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
|
||||||
|
`is_margin` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
|
||||||
|
`is_isolated` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
|
|
||||||
|
`trade_id` BIGINT NOT NULL,
|
||||||
|
|
||||||
-- side is the side of the trade that makes profit
|
-- side is the side of the trade that makes profit
|
||||||
`side` VARCHAR(4) NOT NULL DEFAULT '',
|
`side` VARCHAR(4) NOT NULL DEFAULT '',
|
||||||
|
|
||||||
`traded_at` DATETIME(3) NOT NULL
|
-- price is the price of the trade that makes profit
|
||||||
|
`price` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
|
-- quantity is the quantity of the trade that makes profit
|
||||||
|
`quantity` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
|
-- trade_amount is the quote quantity of the trade that makes profit
|
||||||
|
`trade_amount` DECIMAL(16, 8) NOT NULL,
|
||||||
|
|
||||||
|
`traded_at` DATETIME(3) NOT NULL,
|
||||||
|
|
||||||
|
-- fee
|
||||||
|
`fee_in_usd` DECIMAL(16, 8) NOT NULL,
|
||||||
|
`fee` DECIMAL(16, 8) NOT NULL,
|
||||||
|
`fee_currency` VARCHAR(10) NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
-- +down
|
-- +down
|
||||||
|
|
Loading…
Reference in New Issue
Block a user