File size: 1,080 Bytes
ebcde1f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""Market-data ingestion, normalization, storage, and validation primitives.

The package deliberately contains no authenticated or order-entry API.  Binance
support is restricted to public market-data endpoints.
"""

from microstructure.data.book import (
    BookSnapshot,
    DepthDelta,
    ReconstructionResult,
    reconstruct_snapshot_and_deltas,
)
from microstructure.data.quality import QualityFinding, ValidationReport, validate_table
from microstructure.data.schemas import SCHEMA_VERSION, get_schema, table_from_records
from microstructure.data.storage import DatasetWriteResult, write_partitioned_parquet
from microstructure.data.synthetic import SyntheticMarketData, generate_synthetic_market

__all__ = [
    "SCHEMA_VERSION",
    "BookSnapshot",
    "DatasetWriteResult",
    "DepthDelta",
    "QualityFinding",
    "ReconstructionResult",
    "SyntheticMarketData",
    "ValidationReport",
    "generate_synthetic_market",
    "get_schema",
    "reconstruct_snapshot_and_deltas",
    "table_from_records",
    "validate_table",
    "write_partitioned_parquet",
]