Last active
August 1, 2019 01:47
-
-
Save cmsax/74ce42e19efc10686bb78c1d0ee20773 to your computer and use it in GitHub Desktop.
#influxdb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select time, close_price from "transaction"."autogen"."transaction_history" where stock_id = '000001' and time >= '2014-01-01' and time <= '2016-01-01' and type='day' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select time, amount from "transaction"."autogen"."transaction_history" where stock_id = '000001' and time >= '2014-01-01' and time <= '2016-01-01' and type='tick' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment