Ejemplo n.º 1
0
 public HoldingStocks(ScenarioAccordingToTrend strategics, Tuple <List <ConvertConsensus>, List <ConvertConsensus> > consensus, GoblinBatClient client) : base(strategics)
 {
     OrderNumber     = new Dictionary <string, dynamic>();
     Consensus       = consensus;
     this.strategics = strategics;
     this.client     = client;
 }
Ejemplo n.º 2
0
 internal Consecutive(ScenarioAccordingToTrend strategics, Holding ho)
 {
     Short           = new Stack <double>();
     Long            = new Stack <double>();
     Trend           = new Stack <double>();
     st              = strategics;
     Compare         = double.NaN;
     this.strategics = strategics;
     this.ho         = ho;
     ho.Send        += OnReceiveDrawChart;
 }
Ejemplo n.º 3
0
 public Holding(ScenarioAccordingToTrend strategics)
 {
     ST          = strategics;
     consecutive = new Consecutive(strategics, this);
 }