Class QuoinexOrderCondition
- Namespace
- StockSharp.Quoinex
- Assembly
- StockSharp.Quoinex.dll
StockSharp.Quoinex order condition.
[DataContract]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Quoinex")]
public class QuoinexOrderCondition : BaseWithdrawOrderCondition, IWithdrawOrderCondition, ITakeProfitOrderCondition, IStopLossOrderCondition
- Inheritance
-
QuoinexOrderCondition
- Implements
- Inherited Members
- Extension Methods
Constructors
QuoinexOrderCondition()
Initializes a new instance of the QuoinexOrderCondition.
public QuoinexOrderCondition()
Properties
FundingCurrency
Currency used to fund the trade with.
[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Funding", Description = "FundingCurrency", GroupName = "Margin", Order = 2)]
public string FundingCurrency { get; set; }
Property Value
LeverageLevel
Leverage.
[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Leverage", Description = "MarginLeverageDot", GroupName = "Margin", Order = 1)]
public int? LeverageLevel { get; set; }
Property Value
- int?
MarginType
Margin type.
public QuoinexMarginTypes? MarginType { get; set; }
Property Value
StopLoss
Stop-loss.
[Display(ResourceType = typeof(LocalizedStrings), Name = "StopLoss", Description = "StopPriceValue", GroupName = "Parameters", Order = 0)]
public decimal? StopLoss { get; set; }
Property Value
TakeProfit
Take-profit.
[Display(ResourceType = typeof(LocalizedStrings), Name = "TakeProfit", Description = "TakeProfitDesc", GroupName = "Parameters", Order = 2)]
public decimal? TakeProfit { get; set; }
Property Value
TrailingStopType
Trailing stop type.
public QuoinexTrailingStopTypes? TrailingStopType { get; set; }
Property Value
TrailingStopValue
Trailing stop value.
public decimal? TrailingStopValue { get; set; }