Exemplo n.º 1
0
 internal MartinGaleFunction(InputData inSampleData, DateTime startTime, EstimationFunctionType estFunctionType)
     : base(Range)
 {
     this.SampleData             = inSampleData;
     this.StartTime              = startTime;
     this.EstimationFunctionType = estFunctionType;
 }
 protected CommonStrategyFunction(InputData inSampleData, DateTime startTime, EstimationFunctionType estFunctionType, Account acc, StratergyParameterRange range)
     : base(range)
 {
     this.SampleData             = inSampleData;
     this.StartTime              = startTime;
     this.EstimationFunctionType = estFunctionType;
     this.DefaultAccount         = acc;
 }
 internal BuyLimitAndWaitFunction(InputData inSampleData, DateTime startTime, EstimationFunctionType estFunctionType, Account acc, StratergyParameterRange range)
     : base(inSampleData, startTime, estFunctionType, acc, range)
 {
 }
 public override OptimizationFunctionIntND CreateOptimizationFunctionIntND(InputData inSampleData, DateTime startTime, EstimationFunctionType estFunctionType, Account acc)
 {
     return(new BuyAndWaitFunction(inSampleData, startTime, estFunctionType, acc, base.StratergyParameterRange));
 }
Exemplo n.º 5
0
 internal PipsovikWeekendFunction(InputData inSampleData, DateTime startTime, EstimationFunctionType estFunctionType, Account acc, StratergyParameterRange range)
     : base(inSampleData, startTime, estFunctionType, acc, range)
 {
 }
 public abstract OptimizationFunctionIntND CreateOptimizationFunctionIntND(InputData inSampleData, DateTime startTime, EstimationFunctionType estFunctionType, Account acc);
Exemplo n.º 7
0
 internal InverseMartinGaleFunction(InputData inSampleData, DateTime startTime, EstimationFunctionType estFunctionType, Account acc, StratergyParameterRange range)
     : base(inSampleData, startTime, estFunctionType, acc, range)
 {
 }
Exemplo n.º 8
0
 public override OptimizationFunctionIntND CreateOptimizationFunctionIntND(InputData inSampleData, DateTime startTime, EstimationFunctionType estFunctionType)
 {
     return(new MartinGaleFunction(inSampleData, startTime, estFunctionType));
 }