Ejemplo n.º 1
0
 internal Consecutive(TrendToCashflow strategics, Holding ho)
 {
     Short           = new Stack <double>();
     Long            = new Stack <double>();
     Trend           = new Stack <double>();
     tc              = strategics;
     this.strategics = strategics;
     this.ho         = ho;
     ho.Send        += OnReceiveDrawChart;
 }
Ejemplo n.º 2
0
 public Holding(TrendToCashflow strategics)
 {
     TC          = strategics;
     consecutive = new Consecutive(strategics, this);
 }