Exemplo n.º 1
0
 public override DatedDataCollectionGen<double> GenerateWeightSeries(ProductBase product_, DateTime? minDate_)
 {
   return GenerateWeightSeries(product_.Prices, minDate_);
 }
Exemplo n.º 2
0
 protected override void chartSignal(ProductBase product_, Controls.LineChartDataDisplay chart_)
 {
   chart_.AddSeries(product_.Prices, "Pxs", 40, "###0.0##");
   chart_.AddSeries(HelperMethods.GetMA(product_.Prices, FastMA), string.Format("MA({0})", FastMA), 40, "###0.0##");
   chart_.AddSeries(HelperMethods.GetMA(product_.Prices, SlowMA), string.Format("MA({0})", SlowMA), 40, "###0.0##");
 }
Exemplo n.º 3
0
 public SignalStrengthSortUtilClass(ProductBase product_, double wt_)
 {
   Product = product_;
   Weighting = wt_;
 }