Beispiel #1
0
        public Trade(TradeAttributes tradeAttributes, Authentication.Session session)
        {
            TradeStatus = eTradeStatus.New; //Set it to the default position

            this.TradeAttributes = tradeAttributes;
            this.Session         = session;
        }
Beispiel #2
0
        public AutoTrader(Authentication.Session Session)
        {
            Trades       = new List <Trade>();
            this.Session = Session;
            abc();

            L1LsPriceDataTableListenerCollection = new List <CustomIndexListener>();
        }