We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 466049f commit a37ed6cCopy full SHA for a37ed6c
docs/04_visualizations/3-1-klinecharts/index.md
@@ -26,9 +26,7 @@ K 线图适用于展示金融市场的价格变动情况,特别适用于分析
26
### 数据示例
27
28
```py
29
-data = query("select * from derive.f_daily_quotes WHERE product_name = '螺纹钢' and contract = 'RB2501' ")
30
-
31
-return data.sort_values('day')
+select toDateTime(Time/1000) as Time, * from klines.spot_1d where Symbol = 'btc_usdt' and Exchange = 'Binance' order by Time limit 100
32
```
33
34
0 commit comments