2025-08-05 09:03:59 +00:00
|
|
|
select * from crypto_market_monitor;
|
|
|
|
|
delete from crypto_market_monitor where timestamp=1754382900000;
|
2025-08-04 13:07:44 +00:00
|
|
|
select date_time, open, high, low, close, k_shape from crypto_market_data
|
|
|
|
|
WHERE symbol='XCH-USDT' and bar='5m' and date_time > '2025-08-04 15:00:00'
|
|
|
|
|
order by timestamp ;
|
2025-07-30 09:28:01 +00:00
|
|
|
|
2025-08-04 14:36:25 +00:00
|
|
|
select * from crypto_market_data
|
|
|
|
|
WHERE symbol='XCH-USDT' and bar='5m' and date_time > '2025-08-04 15:00:00'
|
2025-08-05 07:30:50 +00:00
|
|
|
order by timestamp asc;
|
2025-08-04 14:36:25 +00:00
|
|
|
|
2025-08-05 09:03:59 +00:00
|
|
|
select * from crypto_huge_volume
|
|
|
|
|
WHERE symbol='XCH-USDT' and bar='5m' #and date_time > '2025-08-04 15:00:00'
|
|
|
|
|
order by timestamp asc;
|
|
|
|
|
|
2025-08-04 14:36:25 +00:00
|
|
|
|
2025-07-30 09:28:01 +00:00
|
|
|
delete FROM crypto_market_data where symbol != 'XCH-USDT';
|
2025-07-30 08:11:34 +00:00
|
|
|
|
|
|
|
|
select * from crypto_trade_data
|
2025-08-01 08:18:36 +00:00
|
|
|
where symbol='XCH-USDT'
|
2025-07-30 09:28:01 +00:00
|
|
|
order by ts desc;
|
|
|
|
|
|
|
|
|
|
select count(1) from crypto_trade_data;
|
2025-07-30 08:11:34 +00:00
|
|
|
|
|
|
|
|
select * from crypto_huge_volume
|
2025-08-01 08:18:36 +00:00
|
|
|
WHERE symbol='XCH-USDT' and bar='5m' and window_size = 80 and date_time > '2025-07-26'
|
|
|
|
|
order by timestamp;
|
2025-07-28 08:14:40 +00:00
|
|
|
|
2025-07-30 08:11:34 +00:00
|
|
|
select * from crypto_huge_volume
|
|
|
|
|
WHERE symbol='XCH-USDT-SWAP' and bar='5m' and date_time > '2025-07-26'
|
|
|
|
|
order by timestamp desc;
|
|
|
|
|
|
|
|
|
|
select * from crypto_huge_volume
|
|
|
|
|
WHERE symbol='BTC-USDT' and bar='5m'
|
|
|
|
|
order by timestamp desc
|
2025-07-30 09:28:01 +00:00
|
|
|
limit 10;
|
|
|
|
|
|
|
|
|
|
SHOW VARIABLES LIKE 'max_connections';
|