Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Gruppieren Sie OHLC-Aktienmarktdaten in mehrere Zeitrahmen - Mysql

Ich weiß, dass dies eine alte Frage ist, aber schauen Sie sich diese viel "einfachere" Lösung an. Es gibt einen Trick für den Eröffnungs- und Schlusskurs. Es könnte dir gefallen.

SELECT
  FLOOR(MIN(`timestamp`)/"+period+")*"+period+" AS timestamp,
  SUM(amount) AS volume,
  SUM(price*amount)/sum(amount) AS wavg_price,
  SUBSTRING_INDEX(MIN(CONCAT(`timestamp`, '_', price)), '_', -1) AS `open`,
  MAX(price) AS high,
  MIN(price) AS low,
  SUBSTRING_INDEX(MAX(CONCAT(`timestamp`, '_', price)), '_', -1) AS `close`
FROM transactions_history -- this table has 3 columns (timestamp, amount, price)
GROUP BY FLOOR(`timestamp`/"+period+")
ORDER BY timestamp  

Zeitraum ist in Sekunden