예제 #1
0
 public static Trade Spread(this CommodityForward trade, decimal?spread)
 {
     trade.Spread = spread;
     return(trade);
 }
예제 #2
0
 public static Trade CurrencyAmount(this CommodityForward trade, decimal?currencyAmount)
 {
     trade.CurrencyAmount = currencyAmount;
     return(trade);
 }
예제 #3
0
 public static Trade BasePrice(this CommodityForward trade, decimal?basePrice)
 {
     trade.BasePrice = basePrice;
     return(trade);
 }
예제 #4
0
 public static Trade Price(this CommodityForward trade, decimal?price)
 {
     trade.Price = price;
     return(trade);
 }