DATETIME
Datetime represents a combined date and time value in the ISO 8601 format (YYYY-MM-DD HH:MM:SS ±HH:MM), ensuring precise temporal tracking with timezone support.
Time

Definition: Date + Hour represents the specific date and hour extracted from a Datetime field, enabling analysis at a combined granular level. Formatted as YYYY-MM-DD HH:00.
Importance: Breaking down timestamps into date and hour helps traders analyze intraday trends, identify peak trading hours, and optimize execution strategies. This granularity supports time-based trade performance evaluations and market activity tracking.
Tips: Use Date + Hour to detect hourly patterns in trading volume. Align hourly trading activity with market sessions for better decision-making. Monitor hourly performance trends to refine trade timing. Ensure consistency in formatting to maintain data integrity across platforms.
Definition: Transaction-Level Date + Hour extracts the date and hour of a transaction, providing detailed temporal context. Formatted as YYYY-MM-DD HH:00.
Formula: =DATE_FORMAT(TRANSACTION_DATETIME, "%Y-%m-%d %H:00")
Example: A transaction recorded at 2025-02-10 15:45:30 UTC will have a Date + Hour value of 2025-02-10 15:00.
Application: Useful for aggregating transactions by hourly intervals to observe execution patterns and price fluctuations.
Definition: Trade-Level Date + Hour aggregates transaction-level data to indicate key date and hour milestones within the trade. Formatted as YYYY-MM-DD HH:00.
Formula: =DATE_FORMAT(TRADE_DATETIME, "%Y-%m-%d %H:00")
Example: A trade consisting of multiple transactions with timestamps from 14:15 to 15:30 might have a Trade-Level Date + Hour of 2025-02-10 15:00.
Application: Helps traders assess the predominant trading hour for a given trade, refining execution strategies.
Definition: Portfolio-Level Date + Hour consolidates trade-level data, offering portfolio-wide insights into date and hour trends. Formatted as YYYY-MM-DD HH:00.
Formula: =DATE_FORMAT(PORTFOLIO_DATETIME, "%Y-%m-%d %H:00")
Example: If the most active trading hour for a portfolio falls between 10:00 and 11:00, the Portfolio-Level Date + Hour may be set to 2025-02-10 10:00.
Application: Useful for tracking portfolio-wide intraday trends, optimizing trade execution timing, and monitoring hourly exposure.
Q: Why is Date + Hour useful in trading analysis?
A: It allows traders to pinpoint hourly trends, optimize execution timing, and detect high-activity trading periods.
Q: How should Date + Hour be formatted?
A: It follows the format YYYY-MM-DD HH:00, ensuring consistency and compatibility with data processing tools.
Q: Can Date + Hour be used for backtesting?
A: Yes, it helps traders analyze historical hourly trends and refine strategy parameters for future trades.