Esempio n. 1
0
 public static string StopLossStepError(SellType sellType, decimal priceCurrent, decimal average, string change, string needed)
 => $"{MarketOrderType.STOPLOSS.GetDescription()} " +
 $"=> CURRENT PRICE => ({priceCurrent}) " +
 $"=> DECREASED => {sellType.GetDescription()} " +
 $"=> ({average}) => BY ({change}) " +
 $"=> NEEDED DECREASED CHANGE => ({needed})";
Esempio n. 2
0
 public static string StopLossStepSuccess(SellType sellType, decimal priceCurrent, decimal average, string change)
 => $"{MarketOrderType.STOPLOSS.GetDescription()} " +
 $"=> CURRENT PRICE => ({priceCurrent}) " +
 $"=> DECREASED => {sellType.GetDescription()} " +
 $"=> ({average}) => BY ({change})";