Ejemplo n.º 1
0
 public ReverseCommon(Strategy strategy) : base(strategy)
 {
     orders = new InternalOrders(strategy, TradeDirection.Reverse);
 }
Ejemplo n.º 2
0
 public ExitCommon(Strategy strategy) : base(strategy)
 {
     orders = new InternalOrders(strategy, TradeDirection.Exit);
 }
Ejemplo n.º 3
0
 public ChangeCommon(Strategy strategy) : base(strategy)
 {
     orders = new InternalOrders(strategy, TradeDirection.Change);
 }