Market Data standardized CSV flat file from MarketTick (https://markettick.net/en/)
©2023 MarketTick

====================================================================================================

Data structure of Candlesticks:

1. Timestamp UTC: Formatted as YYYYMMDDhhmmss
2. Type: Specifies the data type (see details below).
3. Open Price: Uses a period (.) as the decimal separator.
4. High Price: Uses a period (.) as the decimal separator.
5. Low Price: Uses a period (.) as the decimal separator.
6. Close Price: Uses a period (.) as the decimal separator.
7. Volume: Represents the trade volume.

-> Type Details:
     Bid = 0
     Ask = 1
     Last (Trade) = 2

====================================================================================================

Data structure of L1 Ticks:

1. Timestamp UTC: Formatted as YYYYMMDDhhmmss with six additional digits for microseconds.
2. Level: Indicates data level (1 for Level 1, 2 for Level 2).
3. Type: Specifies the data type (see details below).
4. Price: Uses a period (.) as the decimal separator.
5. Volume: Represents the trade volume.

-> Type Details:
     Bid = 0
     Ask = 1
     Last (Trade) = 2
     DailyVolume = 3
     DailyHigh = 4
     DailyLow = 5
     Settlement = 6
     LastClose = 7
     Opening = 8
     OpenInterest = 9

====================================================================================================

Data structure of L2 Ticks:

1. Timestamp UTC: Formatted as YYYYMMDDhhmmss with six additional digits for microseconds.
2. Level: Indicates data level (1 for Level 1, 2 for Level 2).
3. Type: Specifies the data type (see details below).
4. Price: Uses a period (.) as the decimal separator.
5. Volume: Represents the trade volume.
6. Depth: Order book depth ranging from 1 to 10.
7. Action: Indicates the order book action (see details below).

-> Type Details:
     Bid = 0
     Ask = 1
     Last (Trade) = 2
     DailyVolume = 3
     DailyHigh = 4
     DailyLow = 5
     Settlement = 6
     LastClose = 7
     Opening = 8
     OpenInterest = 9
	 
-> Action Details:
     Add = 0
     Update = 1
     Remove = 2
	 
====================================================================================================
