/* Copyright (C) 2025 Interactive Brokers LLC. All rights reserved. This code is subject to the terms
* and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable. */
syntax = "proto3";
package protobuf;
option java_outer_classname = "MarketDepthDataProto";
option java_package = "com.ib.client.protobuf";
option csharp_namespace = "IBApi.protobuf";
message MarketDepthData {
optional int32 position = 1;
optional int32 operation = 2;
optional int32 side = 3;
optional double price = 4;
optional string size = 5;
optional string marketMaker = 6;
optional bool isSmartDepth = 7;
}