Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mdserver-web/plugins/cryptocurrency_trade/conf/order.sql

11 lines
316 B

CREATE TABLE IF NOT EXISTS `ct_order_list` (
`id` BIGINT(20) not NULL,
'strategy_name' varchar(50) NULL,
`symbol` varchar(50) NOT NULL,
`fee` float NOT NULL,
`price` float NOT NULL,
`closing_price` float NOT NULL comment '',
`profit` float NOT NULL,
`source` TEXT,
`addtime` BIGINT(20) not NULL
);