A C D E F H I L M O P Q R S T U V W 

A

AckOptions - Class in limebrokerage.trading.api
Optional additional order information provided on new order and cancel-replace acks.
AlgoOrderOptions - Class in limebrokerage.trading.api
Order options for Algo orders for US-Equities securities.
AlgoOrderOptions() - Constructor for class limebrokerage.trading.api.AlgoOrderOptions
Constructs an instance without any options set.
AlgoReplaceOptions - Class in limebrokerage.trading.api
Optional information for a cancel-replace on an Algo order.
AlgoReplaceOptions() - Constructor for class limebrokerage.trading.api.AlgoReplaceOptions
Constructs an instance without any options set.

C

call(String, Calendar, int) - Static method in class limebrokerage.trading.api.USOptionsSymbol
Create an US-Options symbol for a call contract with the given parameters.
Callback - Interface in limebrokerage.trading.api
Interface via which the trading client reports asynchronous trading and connection events.
cancel(long) - Method in class limebrokerage.trading.api.Client
Attempt to cancel the specified order.
cancelAll() - Method in class limebrokerage.trading.api.Client
Attempt to cancel all open orders.
Client - Class in limebrokerage.trading.api
Interface to trade with a Lime-Brokerage trading-server.
Client(Callback, String, int, String, String, String, long, boolean) - Constructor for class limebrokerage.trading.api.Client
Connect to a trading-server.
Client.NotConnectedException - Exception in limebrokerage.trading.api
Thrown by the trading client to indicate an attempt was made to use it before it successfully connected or after it had disconnected.
Client.NotConnectedException() - Constructor for exception limebrokerage.trading.api.Client.NotConnectedException
 
clientData1() - Method in class limebrokerage.trading.api.FillOptions
Client data 1.
clientData2() - Method in class limebrokerage.trading.api.FillOptions
Client data 2.
clientData3() - Method in class limebrokerage.trading.api.FillOptions
Client data 3.
confirmPrice() - Method in class limebrokerage.trading.api.AckOptions
Confirm price option.
contraBroker() - Method in class limebrokerage.trading.api.FillOptions
Contra-broker.
CURRENT_EVENT - Static variable in class limebrokerage.trading.api.Client
When instantiating a trading client, provide this as the last event-id to indicate you want no replays at all and to start at the current event.
CustomerType - Enum in limebrokerage.trading.api
Customer types

D

DEFAULT_PORT - Static variable in class limebrokerage.trading.api.Client
Default port to use when connecting to the trading-server.
disconnect() - Method in class limebrokerage.trading.api.Client
Disconnect from the trading-server.
displayPrice() - Method in class limebrokerage.trading.api.AckOptions
Display price option.
displayPriceAdjusted() - Method in class limebrokerage.trading.api.AckOptions
Display price adjusted option.

E

execId() - Method in class limebrokerage.trading.api.FillOptions
Unique fill identifier.
expiration() - Method in class limebrokerage.trading.api.USOptionsSymbol
Get the contract's expiration date.

F

FillOptions - Class in limebrokerage.trading.api
Optional additional fill information provided on fills
fromString(String) - Static method in class limebrokerage.trading.api.USOptionsSymbol
Parse string using the OCC 21-character US-Options symbology and create the appropriate US-Options symbol.

H

hasConfirmPrice() - Method in class limebrokerage.trading.api.AckOptions
Check if the confirm price option is present.
hasDisplayPrice() - Method in class limebrokerage.trading.api.AckOptions
Check if the display price option is present.
hasPositionEffect() - Method in class limebrokerage.trading.api.AckOptions
Check if the position effect option is present.
hasSide() - Method in class limebrokerage.trading.api.AckOptions
Check if the side option is present.

I

isCall() - Method in class limebrokerage.trading.api.USOptionsSymbol
Get whether the contract is a call contract versus a put contract.

L

lastMarket() - Method in class limebrokerage.trading.api.FillOptions
Last market.
limebrokerage.trading.api - package limebrokerage.trading.api
 
LockedCrossedAction - Enum in limebrokerage.trading.api
Instructions on actions to take if an order locks or crosses the market.

M

MARKET_PRICE - Static variable in class limebrokerage.trading.api.Client
Represents a market price when placing a new order.
marketClientOrderId() - Method in class limebrokerage.trading.api.AckOptions
Market client order-id option.
marketLiquidity() - Method in class limebrokerage.trading.api.FillOptions
Market Liquidity.
marketOrderId() - Method in class limebrokerage.trading.api.AckOptions
Market order-id option.

O

onBust(long, long, Side, long, int, int, Date, String, FillOptions) - Method in interface limebrokerage.trading.api.Callback
Called when a previous fill on an US-Equities order is busted (reversed).
onCancelAck(long, long) - Method in interface limebrokerage.trading.api.Callback
Called upon acknowledgement by the market of a successful cancel.
onCancelReject(long, long, String) - Method in interface limebrokerage.trading.api.Callback
Called upon rejection of a cancel attempt by either the trading-server or the market.
onConnect() - Method in interface limebrokerage.trading.api.Callback
Called when the client successfully connects to the trading-server.
onCorrect(long, long, Side, long, int, int, Date, String, FillOptions) - Method in interface limebrokerage.trading.api.Callback
Called when a fill correction occurs on an US-Equities order.
onDisconnect(String) - Method in interface limebrokerage.trading.api.Callback
Called if an existing connection to the trading-server is broken (whether intentionally or unexpectedly), or if a connection attempt to the trading-server fails.
onFill(long, long, Side, int, long, int, int, Date, String, FillOptions) - Method in interface limebrokerage.trading.api.Callback
Called when a fill occurs on an US-Equities order.
onOrderAck(long, long, long, AckOptions) - Method in interface limebrokerage.trading.api.Callback
Called upon acknowledgment by the market of a successful new order (not a cancel-replace).
onOrderEcho(long, long, Side, long, int, String, String) - Method in interface limebrokerage.trading.api.Callback
Called when a new US-Equities order is placed via some alternative mechanism into the trading-server (for example, via Portal).
onOrderReject(long, long, String) - Method in interface limebrokerage.trading.api.Callback
Called upon rejection of a new order (not cancel-replace) by either the trading-server or the market.
onPartialCancelAck(long, long, int) - Method in interface limebrokerage.trading.api.Callback
Called upon acknowledgement by the market of a successful partial cancel.
onReplaceAck(long, long, long, long, AckOptions) - Method in interface limebrokerage.trading.api.Callback
Called upon acknowledgement by the market of a successful cancel-replace.
onReplaceEcho(long, long, long, long, int) - Method in interface limebrokerage.trading.api.Callback
Called when a cancel-replace is attempted via some alternative mechanism (for example, via Portal).
onReplaceReject(long, long, long, String) - Method in interface limebrokerage.trading.api.Callback
Called upon rejection of a cancel-replace by either the trading-server or the market.
onUSOptionsBust(long, long, Side, long, int, int, Date, USOptionsSymbol, FillOptions) - Method in interface limebrokerage.trading.api.Callback
Called when a previous fill on an US-Options order is busted (reversed).
onUSOptionsCorrect(long, long, Side, long, int, int, Date, USOptionsSymbol, FillOptions) - Method in interface limebrokerage.trading.api.Callback
Called when a fill correction occurs on an US-Options order.
onUSOptionsFill(long, long, Side, int, long, int, int, Date, USOptionsSymbol, FillOptions) - Method in interface limebrokerage.trading.api.Callback
Called when a fill occurs on an US-Options order.
onUSOptionsOrderEcho(long, long, Side, long, int, PositionEffect, String, USOptionsSymbol) - Method in interface limebrokerage.trading.api.Callback
Called when a new US-Options order is placed via some alternative mechanism into the trading-server (for example, via Portal).
OrderOptions - Class in limebrokerage.trading.api
Order options for US-Equities orders.
OrderOptions() - Constructor for class limebrokerage.trading.api.OrderOptions
Constructs an instance without any options set.

P

partialCancel(long, int) - Method in class limebrokerage.trading.api.Client
Attempt to partially cancel the specified order.
PegType - Enum in limebrokerage.trading.api
Peg-type values
PERCENT_SCALE - Static variable in class limebrokerage.trading.api.Client
Minimum Trigger Percentage is scaled.
place(long, int, long, Side, String, String) - Method in class limebrokerage.trading.api.Client
Places a new US-Equities order.
place(long, int, long, Side, String, String, OrderOptions) - Method in class limebrokerage.trading.api.Client
Places a new US-Equities order.
placeAlgo(long, int, long, Side, String, String, String) - Method in class limebrokerage.trading.api.Client
Places a new Algo order for a US-Equities security.
placeAlgo(long, int, long, Side, String, String, String, AlgoOrderOptions) - Method in class limebrokerage.trading.api.Client
Places a new Algo order for a US-Equities security.
placeUSOptions(long, int, long, Side, PositionEffect, USOptionsSymbol, String) - Method in class limebrokerage.trading.api.Client
Places a new US-Options order.
placeUSOptions(long, int, long, Side, PositionEffect, USOptionsSymbol, String, USOptionsOrderOptions) - Method in class limebrokerage.trading.api.Client
Places a new US-Options order.
placeUSOptionsAlgo(long, int, long, Side, PositionEffect, USOptionsSymbol, String, String) - Method in class limebrokerage.trading.api.Client
Places a new Algo order for a US-Options security.
placeUSOptionsAlgo(long, int, long, Side, PositionEffect, USOptionsSymbol, String, String, USOptionsAlgoOrderOptions) - Method in class limebrokerage.trading.api.Client
Places a new Algo order for a US-Options security.
positionEffect() - Method in class limebrokerage.trading.api.AckOptions
Position effect option.
PositionEffect - Enum in limebrokerage.trading.api
Order's effect on a client's position.
PRICE_SCALE - Static variable in class limebrokerage.trading.api.Client
All prices are scaled by this constant.
put(String, Calendar, int) - Static method in class limebrokerage.trading.api.USOptionsSymbol
Create an US-Options symbol for a put contract with the given parameters.

Q

QuickstartSetting - Enum in limebrokerage.trading.api
LSR Quickstart settings.

R

replace(long, long, int, long) - Method in class limebrokerage.trading.api.Client
Cancel-replaces an existing US-Equities order.
replace(long, long, int, long, ReplaceOptions) - Method in class limebrokerage.trading.api.Client
Cancel-replaces an existing US-Equities order.
replaceAlgo(long, long, int, long) - Method in class limebrokerage.trading.api.Client
Cancel-replaces an existing Algo-US-Equities order.
replaceAlgo(long, long, int, long, AlgoReplaceOptions) - Method in class limebrokerage.trading.api.Client
Cancel-replaces an existing Algo-US-Equities order.
ReplaceOptions - Class in limebrokerage.trading.api
Optional information for a cancel-replace.
ReplaceOptions() - Constructor for class limebrokerage.trading.api.ReplaceOptions
Constructs an instance without any options set.
replaceUSOptions(long, long, int, long) - Method in class limebrokerage.trading.api.Client
Cancel-replaces an existing US-Options order.
replaceUSOptionsAlgo(long, long, int, long) - Method in class limebrokerage.trading.api.Client
Cancel-replaces an existing Algo-US-Options order.
replaceUSOptionsAlgo(long, long, int, long, USOptionsAlgoReplaceOptions) - Method in class limebrokerage.trading.api.Client
Cancel-replaces an existing Algo-US-Options order.
RoutingInstructions - Class in limebrokerage.trading.api
Instructions to a specific market on how to handle routing out to different venues.
RoutingInstructions(RoutingInstructions.Market, String) - Constructor for class limebrokerage.trading.api.RoutingInstructions
Construct a routing instruction.
RoutingInstructions.Market - Enum in limebrokerage.trading.api
Market designator for a routing instruction

S

SAME_PRICE - Static variable in class limebrokerage.trading.api.Client
When cancel-replacing, means that the price of the replacement order should remain the same as the original order.
SAME_QUANTITY - Static variable in class limebrokerage.trading.api.Client
When cancel-replacing, means that the quantity of the replacement order should remain the same as the original order.
setAggression(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the aggression option.
setAggression(int) - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the aggression option.
setAllOrNone() - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the all-or-none option.
setAllOrNone() - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the all-or-none option.
setAllowRouting() - Method in class limebrokerage.trading.api.OrderOptions
Enables the allow-routing option.
setAllowRouting() - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the allow-routing option.
setArcaPassiveLiquidity() - Method in class limebrokerage.trading.api.OrderOptions
Enables the ARCA passive liquidity option.
setArcaPreOpenSession() - Method in class limebrokerage.trading.api.OrderOptions
Enables the ArcaPreOpenSession option.
setArcaTracking() - Method in class limebrokerage.trading.api.OrderOptions
Enables the ARCA tracking option.
setArcaTracking() - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the ARCA tracking option.
setBatsDarkScan() - Method in class limebrokerage.trading.api.OrderOptions
Enables the BATS dark-scan option.
setBatsNoRescrapeAtLimit() - Method in class limebrokerage.trading.api.OrderOptions
Enables the BATS no-rescrape at-limit option.
setCeilingFloorPrice(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the ceiling/floor price option.
setClientData1(String) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the client data 1 option.
setClientData1(String) - Method in class limebrokerage.trading.api.OrderOptions
Enables the client data 1 option.
setClientData1(String) - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the client data 1 option.
setClientData1(String) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the client data 1 option.
setClientData2(String) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the client data 2 option.
setClientData2(String) - Method in class limebrokerage.trading.api.OrderOptions
Enables the client data 2 option.
setClientData2(String) - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the client data 2 option.
setClientData2(String) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the client data 2 option.
setClientData3(String) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the client data 3 option.
setClientData3(String) - Method in class limebrokerage.trading.api.OrderOptions
Enables the client data 3 option.
setClientData3(String) - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the client data 3 option.
setClientData3(String) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the client data 3 option.
setCustomerType(CustomerType) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the customer-type option.
setDiscretionOffset(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the discretion offset option.
setDiscretionOffset(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the discretion offset option.
setDiscretionOffset(int) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the discretion offset option.
setEndTime(Date) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the end-time option.
setEndTime(Date) - Method in class limebrokerage.trading.api.AlgoReplaceOptions
Enables the end-time option.
setEndTime(Date) - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the end-time option.
setEndTime(Date) - Method in class limebrokerage.trading.api.USOptionsAlgoReplaceOptions
Enables the end-time option.
setExcludedVenues(String) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the excluded Venues option.
setExpireTime(Date) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the expire-time option.
setExpireTime(Date) - Method in class limebrokerage.trading.api.OrderOptions
Enables the expire-time option.
setExpireTime(Date) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the expire-time option.
setImbalanceOnly() - Method in class limebrokerage.trading.api.OrderOptions
Enables the imbalance only option.
setInvisible() - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the invisible option.
setInvisible() - Method in class limebrokerage.trading.api.OrderOptions
Enables the invisible option.
setIseDisplayRange(int) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the ISE display-range option.
setIseDisplayWhen(byte) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the ISE display-when option.
setIseExposureFlag(String) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the ISE exposure flag option.
setISO(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the ISO option.
setISO(int) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the ISO option.
setIWouldPx(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the iWouldPx option.
setLockedCrossedAction(LockedCrossedAction) - Method in class limebrokerage.trading.api.OrderOptions
Enables the locked/crossed action option.
setMarketDisplayPrice(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the market display price option.
setMaxFloor(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the max-floor option.
setMaxFloor(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the max-floor option.
setMaxFloor(int) - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the max-floor option.
setMaxFloor(int) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the max-floor option.
setMaxMarketOrderSlippageAmount(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the max market order slippage amount option.
setMaxMarketOrderSlippageAmount(int) - Method in class limebrokerage.trading.api.AlgoReplaceOptions
Enables the max market order slippage amount option.
setMinimumTriggerPercent(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the minimumTriggerPercent option.
setMinimumTriggerPercent(int) - Method in class limebrokerage.trading.api.AlgoReplaceOptions
Enables the minimumTriggerPercent option.
setMinimumTriggerVol(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the minimumTriggerVol option.
setMinimumTriggerVol(int) - Method in class limebrokerage.trading.api.AlgoReplaceOptions
Enables the minimumTriggerVol option.
setMinimumTriggerVol(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the minimumTriggerVol option.
setMinimumTriggerVol(int) - Method in class limebrokerage.trading.api.ReplaceOptions
Enables the minimumTriggerVol option.
setMinQuantity(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the min-quantity option.
setMinQuantity(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the min-quantity option.
setMinQuantity(int) - Method in class limebrokerage.trading.api.ReplaceOptions
Enables the min-quantity option.
setMinQuantity(int) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the min-quantity option.
setNasdaqPostOnly() - Method in class limebrokerage.trading.api.OrderOptions
Enables the Nasdaq post-only option.
setNYSEClosingOffset() - Method in class limebrokerage.trading.api.OrderOptions
Enables the NYSE closing-offset option.
setNyseParityStrategy(String) - Method in class limebrokerage.trading.api.OrderOptions
Enables the NYSE parity-strategy option.
setPegDifference(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the peg-difference option.
setPegDifference(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the peg-difference option.
setPegOffsets(int, int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the peg-offsets option.
setPegType(PegType) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the peg-type option.
setPegType(PegType) - Method in class limebrokerage.trading.api.OrderOptions
Enables the peg-type option.
setPostOnly() - Method in class limebrokerage.trading.api.OrderOptions
Enables the post-only option.
setPostOnly() - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the post-only option.
setQuickstart(QuickstartSetting) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the quickstart option.
setQuickstart(QuickstartSetting) - Method in class limebrokerage.trading.api.AlgoReplaceOptions
Enables the quickstart option.
setRegularSessionOnly() - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the regularSessionOnly option.
setRegularSessionOnly() - Method in class limebrokerage.trading.api.OrderOptions
Enables the regular session only option.
setRetailPriceOffset(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the retail price offset option.
setRouteToNYSE() - Method in class limebrokerage.trading.api.OrderOptions
Enables the route-to-NYSE option.
setRoutingInstructions(RoutingInstructions) - Method in class limebrokerage.trading.api.OrderOptions
Enables the routing-instructions option.
setRoutingInstructions(RoutingInstructions) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the routing-instructions option.
setRoutingStrategy(String) - Method in class limebrokerage.trading.api.OrderOptions
Enables the routing strategy option.
setSaleAffirm() - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the sale affirm option.
setSaleAffirm() - Method in class limebrokerage.trading.api.OrderOptions
Enables the sale affirm option.
setShortSaleAffirmLongQuantity(int) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the short-sale affirm long-quantity option.
setShortSaleAffirmLongQuantity(int) - Method in class limebrokerage.trading.api.AlgoReplaceOptions
Enables the short-sale affirm long-quantity option.
setShortSaleAffirmLongQuantity(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the short-sale affirm long-quantity option.
setShortSaleAffirmLongQuantity(int) - Method in class limebrokerage.trading.api.ReplaceOptions
Enables the short-sale affirm long-quantity option.
setStartTime(Date) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the start-time option.
setStartTime(Date) - Method in class limebrokerage.trading.api.AlgoReplaceOptions
Enables the start-time option.
setStartTime(Date) - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the start-time option.
setStartTime(Date) - Method in class limebrokerage.trading.api.USOptionsAlgoReplaceOptions
Enables the start-time option.
setSweepType(SweepType) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the sweepType option.
setTargetLocationId(String) - Method in class limebrokerage.trading.api.OrderOptions
Enables the target-location id option.
setTimeInForce(TimeInForce) - Method in class limebrokerage.trading.api.AlgoOrderOptions
Enables the time-in-force option.
setTimeInForce(TimeInForce) - Method in class limebrokerage.trading.api.OrderOptions
Enables the time-in-force option.
setTimeInForce(TimeInForce) - Method in class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Enables the time-in-force option.
setTimeInForce(TimeInForce) - Method in class limebrokerage.trading.api.USOptionsOrderOptions
Enables the time-in-force option.
setTimeInMarket(int) - Method in class limebrokerage.trading.api.OrderOptions
Enables the time-in-market option.
setWashTradePrevention(WashTradePrevention) - Method in class limebrokerage.trading.api.OrderOptions
Enables the wash-trade prevention option.
side() - Method in class limebrokerage.trading.api.AckOptions
Side option.
Side - Enum in limebrokerage.trading.api
Type of order
strike() - Method in class limebrokerage.trading.api.USOptionsSymbol
Get the contract's strike price.
STRIKE_PRICE_SCALE - Static variable in class limebrokerage.trading.api.USOptionsSymbol
All strike prices are scaled by this constant.
SweepType - Enum in limebrokerage.trading.api
LSR SweepType settings.

T

TimeInForce - Enum in limebrokerage.trading.api
Determines how long the order should remain live in the market (unless cancelled first).
toString() - Method in class limebrokerage.trading.api.USOptionsSymbol
Returns the contract in OCC 22-character symbology.

U

underlying() - Method in class limebrokerage.trading.api.USOptionsSymbol
Get the contract's underlying symbol.
USOptionsAlgoOrderOptions - Class in limebrokerage.trading.api
Order options for Algo orders for US-Options securities.
USOptionsAlgoOrderOptions() - Constructor for class limebrokerage.trading.api.USOptionsAlgoOrderOptions
Constructs an instance without any options set.
USOptionsAlgoReplaceOptions - Class in limebrokerage.trading.api
Optional information for a cancel-replace on an USOptionsAlgo order.
USOptionsAlgoReplaceOptions() - Constructor for class limebrokerage.trading.api.USOptionsAlgoReplaceOptions
Constructs an instance without any options set.
USOptionsOrderOptions - Class in limebrokerage.trading.api
Order options for US-Options orders.
USOptionsOrderOptions() - Constructor for class limebrokerage.trading.api.USOptionsOrderOptions
Constructs an instance without any options set.
USOptionsSymbol - Class in limebrokerage.trading.api
Represents a symbol for a US-Options contract.

V

valueOf(String) - Static method in enum limebrokerage.trading.api.CustomerType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.LockedCrossedAction
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.PegType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.PositionEffect
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.QuickstartSetting
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.RoutingInstructions.Market
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.Side
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.SweepType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.TimeInForce
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum limebrokerage.trading.api.WashTradePrevention
Returns the enum constant of this type with the specified name.
values() - Static method in enum limebrokerage.trading.api.CustomerType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.LockedCrossedAction
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.PegType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.PositionEffect
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.QuickstartSetting
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.RoutingInstructions.Market
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.Side
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.SweepType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.TimeInForce
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum limebrokerage.trading.api.WashTradePrevention
Returns an array containing the constants of this enum type, in the order they are declared.

W

WashTradePrevention - Enum in limebrokerage.trading.api
Action to take when the market determines the order has washed with the order of another Lime-Brokerage client.
A C D E F H I L M O P Q R S T U V W 

Securities are offered by Lime Trading Corp., member FINRA & SIPC,NFA. All investing incurs risk, including but not limited to loss of principal. Further information may be found on our Disclosures Page.

Please read the following documents Characteristics and Risks of Standardized Options before trading options. Options involve risk and are not suitable for all investors as the special risks inherent to options trading may expose investors to potentially rapid and substantial losses. Options trading privileges are subject to Lime Trading Corp. review and approval. Hedging and protective strategies generally involve additional costs and do not assure a profit or guarantee against loss. With long options, investors may lose 100% of funds invested. Covered calls provide income, downside protection only to the extent of the premium received, and limit upside potential to the strike price plus premium received. Multi-leg option orders are not a standard option trade. There is no national best bid or offer for multi-leg orders. Multi-leg trades are executed on the exchanges at the discretion of specialists or market makers, who cannot be held to a net price on a multi-leg order. Therefore, you may not receive the national best bid or offer on each individual leg of an order. Multi-leg orders are executed as a single trade on the same exchange. Legs cannot be executed separately on different exchanges to get the national best bid or offer for each leg. Each individual leg of a multi-leg order can be subject to early exercise risk, possibly taking away the protection that the multi-leg position may provide. Partial or full assignment on a leg may originate a margin call or losses greater than you anticipated when you entered into the position. When a multi-leg order is canceled or filled, additional reporting may be required by the specialist or market maker. Reporting fills and cancels may cause delays and create risks, especially in fast moving markets. Other risks might be associated with multi-leg options trading.