Esempio n. 1
0
        public CUserLevels(string instrument)
        {
            _instrument = instrument;
            _levelsIO   = new CIOBinary <List <CLevelEl> >(instrument, "Levels");
            CUtil.TaskStart(TaskLoadData);
            CUtil.TaskStart(TaskSaver);

            //_levelsIO = new CIOBinary<List<CLevelEl>>(
        }
        public CClusterProcessor(string instrument, string initialTF)
        {
            _instrument = instrument;

            TimeFrame = initialTF;

            CUtil.ThreadStart(ProcessOnlineDeals);
            BuildTimeIntervals();



            //_clusterIO = new CCLusterIO(instrument);
            _clusterIO = new CIOBinary <List <CDeal> >(instrument, "ClusterHistory");


            StartTmrChckTimer();


            CUtil.TaskStart(TaskLoadData);
        }