mirror of
https://github.com/quachtinh113/main-fx.git
synced 2026-08-21 06:38:18 +00:00
update data main fx
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,14 @@
|
||||
import pandas as pd
|
||||
|
||||
# Đường dẫn đến file vừa tải
|
||||
file_path = r"data\raw\EURUSDm\M15\EURUSDm_M15.parquet"
|
||||
|
||||
# Đọc dữ liệu
|
||||
df = pd.read_parquet(file_path)
|
||||
|
||||
# Xem 5 dòng đầu và 5 dòng cuối
|
||||
print(df.head())
|
||||
print(df.tail())
|
||||
|
||||
# Kiểm tra xem có ngày nào bị thiếu không
|
||||
print(f"Tổng số nến: {len(df)}")
|
||||
Reference in New Issue
Block a user