Пример #1
0
 public TradingRecommendation(Instrument instrument, IMoney buyPrice, IMoney sellPrice, DateTime predictedBuyDate, DateTime predictedSellDate, TradingForecastMethod tradingForeCastMethod)
 {
     m_oTradingForecastMethod = tradingForeCastMethod;
     m_oInstrument            = instrument;
     m_oBuyPrice          = buyPrice;
     m_oSellPrice         = sellPrice;
     m_oPredictedBuyDate  = predictedBuyDate;
     m_oPredictedSellDate = predictedSellDate;
 }
Пример #2
0
 public TradingRecommendation()
 {
     m_oTradingForecastMethod = TradingForecastMethod.Undefined;
 }