truefix-twsapi-client 0.1.4

Thin Interactive Brokers TWS/Gateway protocol client for TrueFix.
Documentation
/* 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;

import "Contract.proto";

option java_outer_classname = "ScannerDataElementProto";
option java_package = "com.ib.client.protobuf";
option csharp_namespace = "IBApi.protobuf";

message ScannerDataElement {
    optional int32 rank = 1;
	optional Contract contract = 2;
    optional string marketName = 3;
    optional string distance = 4;
    optional string benchmark = 5;
    optional string projection = 6;
    optional string comboKey = 7;
}