Class BitfinexOrderCondition
- Namespace
- StockSharp.Bitfinex
- Assembly
- StockSharp.Bitfinex.dll
StockSharp.Bitfinex order condition.
[DataContract]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Bitfinex")]
public class BitfinexOrderCondition : BaseWithdrawOrderCondition, IWithdrawOrderCondition, IStopLossOrderCondition
- Inheritance
-
BitfinexOrderCondition
- Implements
- Inherited Members
- Extension Methods
Constructors
BitfinexOrderCondition()
Initializes a new instance of the BitfinexOrderCondition.
public BitfinexOrderCondition()
Properties
Close
Close position.
[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Close", Description = "ClosePosition", GroupName = "Additional", Order = 12)]
public bool? Close { get; set; }
Property Value
- bool?
IsTrailing
Trailing stop-loss.
[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Trailing", Description = "TrailingStopLossDot", GroupName = "StopLoss", Order = 1)]
public bool IsTrailing { get; set; }
Property Value
OcoPrice
OCO stop price.
[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), GroupName = "Additional", Order = 20)]
public decimal? OcoPrice { get; set; }
Property Value
OneCancelOther
One Cancels Other.
[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Oco", Description = "OcoDesc", GroupName = "Additional", Order = 14)]
public bool? OneCancelOther { get; set; }
Property Value
- bool?
StopPrice
Activation price, when reached an order will be placed.
[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "StopPrice", Description = "StopPriceDesc", GroupName = "StopLoss", Order = 0)]
public decimal? StopPrice { get; set; }
Property Value
TrailingPrice
Trailing price.
[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), GroupName = "StopLoss", Order = 2)]
public decimal? TrailingPrice { get; set; }