Esempio n. 1
0
        public void TestGetEndDay()
        {
            int endDay = CodeInfoUtils.GetEndDay(2016, 6);

            Assert.AreEqual(20160617, endDay);

            endDay = CodeInfoUtils.GetEndDay(2015, 6);
            Assert.AreEqual(20150619, endDay);

            endDay = CodeInfoUtils.GetEndDay(2016, 9);
            Assert.AreEqual(20160916, endDay);
        }
Esempio n. 2
0
        public void TestGetSimpleCodeId()
        {
            string simpleCodeId = CodeInfoUtils.GetSimpleCodeId("m0000");

            Assert.AreEqual("M13", simpleCodeId);

            simpleCodeId = CodeInfoUtils.GetSimpleCodeId("mmi");
            Assert.AreEqual("MMI", simpleCodeId);

            simpleCodeId = CodeInfoUtils.GetSimpleCodeId("a1403");
            Assert.AreEqual("AX03", simpleCodeId);

            simpleCodeId = CodeInfoUtils.GetSimpleCodeId("a1503");
            Assert.AreEqual("AY03", simpleCodeId);
        }
Esempio n. 3
0
        public void TestGetVariety()
        {
            string variety = CodeInfoUtils.GetVariety("ax01");

            Assert.AreEqual("A", variety);
            variety = CodeInfoUtils.GetVariety("a0910");
            Assert.AreEqual("A", variety);

            variety = CodeInfoUtils.GetVariety("AMI");
            Assert.AreEqual("A", variety);
            variety = CodeInfoUtils.GetVariety("PIMI");
            Assert.AreEqual("PI", variety);

            variety = CodeInfoUtils.GetVariety("y01");
            Assert.AreEqual("Y", variety);
            variety = CodeInfoUtils.GetVariety("y1001");
            Assert.AreEqual("Y", variety);
        }
Esempio n. 4
0
        public void TestGetCodeInfo()
        {
            string             path = @"D:\SCWORK\DEV\SC2\bin\Debug\plugin\cnfutures";
            DataLoader_Variety dataLoader_Variety = new DataLoader_Variety(path);
            CodeInfo           codeInfo           = CodeInfoUtils.GetCodeInfo("m1501", dataLoader_Variety);

            Assert.AreEqual("M1501,豆粕1501,M,豆粕,20140119,20150116,DL,M1501,M01", codeInfo.ToString());

            codeInfo = CodeInfoUtils.GetCodeInfo("mmi", dataLoader_Variety);
            //Console.WriteLine(codeInfo);
            Assert.AreEqual("MMI,豆粕MI,M,豆粕,0,0,DL,MMI,MMI", codeInfo.ToString());

            codeInfo = CodeInfoUtils.GetCodeInfo("m0000", dataLoader_Variety);
            Assert.AreEqual("M0000,豆粕0000,M,豆粕,0,0,DL,M0000,M13", codeInfo.ToString());

            codeInfo = CodeInfoUtils.GetCodeInfo("FG701", dataLoader_Variety);
            Assert.AreEqual("FG1701,玻璃1701,FG,玻璃,20160117,20170120,ZZ,FG701,FG01", codeInfo.ToString());
        }
Esempio n. 5
0
        public void TestGetComplexCodeId()
        {
            string complexCodeId = CodeInfoUtils.GetComplexCodeId("m13", 20100101);

            Assert.AreEqual("M0000", complexCodeId);

            complexCodeId = CodeInfoUtils.GetComplexCodeId("mmi", 20100101);
            Assert.AreEqual("MMI", complexCodeId);

            complexCodeId = CodeInfoUtils.GetComplexCodeId("m03", 20040103);
            Assert.AreEqual("M0403", complexCodeId);
            complexCodeId = CodeInfoUtils.GetComplexCodeId("m03", 20040303);
            Assert.AreEqual("M0403", complexCodeId);
            complexCodeId = CodeInfoUtils.GetComplexCodeId("m03", 20040325);
            Assert.AreEqual("M0503", complexCodeId);

            complexCodeId = CodeInfoUtils.GetComplexCodeId("m03", 20140103);
            Assert.AreEqual("M1403", complexCodeId);
            complexCodeId = CodeInfoUtils.GetComplexCodeId("m03", 20140303);
            Assert.AreEqual("M1403", complexCodeId);
            complexCodeId = CodeInfoUtils.GetComplexCodeId("m03", 20140325);
            Assert.AreEqual("M1503", complexCodeId);

            complexCodeId = CodeInfoUtils.GetComplexCodeId("ax03", 20140103);
            Assert.AreEqual("A1403", complexCodeId);
            complexCodeId = CodeInfoUtils.GetComplexCodeId("ax03", 20140325);
            Assert.AreEqual("A1603", complexCodeId);
            complexCodeId = CodeInfoUtils.GetComplexCodeId("ax03", 20040103);
            Assert.AreEqual("A0403", complexCodeId);
            complexCodeId = CodeInfoUtils.GetComplexCodeId("ax03", 20040325);
            Assert.AreEqual("A0603", complexCodeId);

            complexCodeId = CodeInfoUtils.GetComplexCodeId("ay03", 20140125);
            Assert.AreEqual("A1503", complexCodeId);
            complexCodeId = CodeInfoUtils.GetComplexCodeId("ay03", 20140325);
            Assert.AreEqual("A1503", complexCodeId);
        }
Esempio n. 6
0
        public CodeIdParser(string codeId)
        {
            if (codeId == null)
            {
                return;
            }

            string ucodeId = codeId.ToUpper();

            this.codeId       = ucodeId;
            this.serverCodeId = codeId;
            if (ucodeId.EndsWith("MI"))
            {
                this.varietyId  = ucodeId.Substring(0, ucodeId.Length - 2);
                this.twoYearTag = "";
                this.suffix     = "MI";
                return;
            }

            int  index = ucodeId.Length - 1;
            int  result;
            bool isNumber = int.TryParse(ucodeId[index].ToString(), out result);

            while (isNumber && index > 0)
            {
                index--;
                isNumber = int.TryParse(ucodeId[index].ToString(), out result);
            }
            string variety = ucodeId.Substring(0, index + 1);
            string suffix  = ucodeId.Substring(index + 1, ucodeId.Length - index - 1);

            if (variety != "CY" && (variety.EndsWith("X") || variety.EndsWith("Y")))
            {
                if (variety.Length > 1)
                {
                    this.varietyId  = variety.Substring(0, variety.Length - 1);
                    this.twoYearTag = variety.Substring(variety.Length - 1, 1);
                    this.suffix     = suffix;
                    return;
                }
            }

            this.varietyId = variety;
            //处理郑州交易所代码,证交所传入的代码为FG701,这里统一转换为FG1701
            if (suffix.Length == 3)
            {
                this.suffix = "1" + suffix;
                this.codeId = varietyId + this.suffix;
            }
            else
            {
                this.suffix = suffix;
            }
            //if(this.suffix.Length)
            if (CodeInfoUtils.IsTwoYearsVariety(this.varietyId))
            {
                this.twoYearTag = this.Year % 2 == 1 ? TWOYEARTAG_ODD : TWOYEARTAG_EVEN;
            }
            else
            {
                this.twoYearTag = "";
            }
        }