export type OrderType = 'market' | 'limit' | 'stopLoss' | 'takeProfit';
export type Side = 'long' | 'short';
