Exemplo 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})";
Exemplo 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})";