Uses of Class
com.caplin.motif.fx.trading.BuySell
-
Packages that use BuySell Package Description com.caplin.motif.fx.config com.caplin.motif.fx.trading Parent package with classes that relate to FX trading in general but no specific trading protocol.com.caplin.motif.fx.trading.allocation Classes and interfaces that relate to post-trade allocations.com.caplin.motif.fx.trading.block Classes and interfaces that relate to block trading.com.caplin.motif.fx.trading.block.event Classes representing the events that can happen during the block trade process.com.caplin.motif.fx.trading.orders.details Classes and interfaces that relate to supplying the details of a previously submitted order strategy.com.caplin.motif.fx.trading.orders.submission Classes and interfaces that relate to submitting an order or order strategy. -
-
Uses of BuySell in com.caplin.motif.fx.config
Methods in com.caplin.motif.fx.config with parameters of type BuySell Modifier and Type Method Description static DisplayFields
DefaultDisplayFields. addGenericFwdLegFields(DisplayFields displayFields, BuySell buySell, FormattedAmount amount, FormattedAmount contraAmount, FormattedPoints forwardPoints, FormattedPoints forwardMidPoints)
Adds generic fwd leg fields (look at other adders to see what it can be combined with):static DisplayFields
DefaultDisplayFields. addSpotTradeDetailsFields(DisplayFields displayFields, BuySell buySell, FormattedAmount amount, FormattedAmount contraAmount, FormattedRate spotRate, FormattedRate spotMidRate, java.time.LocalDate settlementDate, java.lang.String settlementTenor)
Adds spot trade leg fields -
Uses of BuySell in com.caplin.motif.fx.trading
Methods in com.caplin.motif.fx.trading that return BuySell Modifier and Type Method Description BuySell
BuySell. opposite()
Returns the opposite side.static BuySell
BuySell. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BuySell[]
BuySell. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of BuySell in com.caplin.motif.fx.trading.allocation
Methods in com.caplin.motif.fx.trading.allocation that return BuySell Modifier and Type Method Description BuySell
PostTradeAllocation. getBuySell()
Returns whether or not this is a buy or a sell.BuySell
PostTradeAllocationList. getBuySell()
Returns whether or not the original trade was a BUY or SELL.Constructors in com.caplin.motif.fx.trading.allocation with parameters of type BuySell Constructor Description PostTradeAllocation(Account account, BuySell buySell, java.lang.String amount, LegType swapLeg, java.lang.String legId)
PostTradeAllocationList(com.caplin.trading.Trade trade, java.util.concurrent.ScheduledExecutorService executorService, java.lang.String tradeId, BuySell buySell, java.util.List<PostTradeAllocation> allocations)
-
Uses of BuySell in com.caplin.motif.fx.trading.block
Methods in com.caplin.motif.fx.trading.block that return BuySell Modifier and Type Method Description BuySell
BlockTradeLeg. getBuySell()
Returns theBuySell
direction of this leg. -
Uses of BuySell in com.caplin.motif.fx.trading.block.event
Methods in com.caplin.motif.fx.trading.block.event that return BuySell Modifier and Type Method Description BuySell
NettedLegExecution. getBuySell()
Constructors in com.caplin.motif.fx.trading.block.event with parameters of type BuySell Constructor Description NettedLegExecution(java.lang.String legNumber, java.lang.String nettedPrice, BuySell buySell)
-
Uses of BuySell in com.caplin.motif.fx.trading.orders.details
Methods in com.caplin.motif.fx.trading.orders.details that return BuySell Modifier and Type Method Description BuySell
Order. getBuySell()
Deprecated.Methods in com.caplin.motif.fx.trading.orders.details with parameters of type BuySell Modifier and Type Method Description OrderFieldSet
OrderFieldSet. setBuySell(BuySell buySell)
Deprecated.Sets the side of the order, from the perspective of the person who placed it. -
Uses of BuySell in com.caplin.motif.fx.trading.orders.submission
Methods in com.caplin.motif.fx.trading.orders.submission that return BuySell Modifier and Type Method Description BuySell
Order. getBuySell()
Deprecated.Returns theBuySell
direction of this order.
-