1

我在 Metatrader 中有一个将一些报价写入 CSV 的代码,但在 C# 中执行相同操作时,EA 以不同的方式读取值.... MetaEditor 中的此代码写入 CSV 文件:

li_40 = FileOpen(ls_32, FILE_CSV|FILE_WRITE|FILE_SHARE_READ, ";");
      if (li_40 > 0) {
         FileWrite(li_40, ls_16);
         FileClose(li_40);

这用 C# 编写:

            List<string> listB = new List<string>();
            using (StreamReader reader = new StreamReader(File.OpenRead(oFile)))
            {
                while (!reader.EndOfStream)
                {
                    var line = reader.ReadLine();
                    listB.Add(reader.ReadLine());
                }
                reader.Close();
            }
            using (StreamWriter swOut = new StreamWriter(oFile))
            {

                foreach (var item in listB)
                {
                    swOut.Write(item);
                    swOut.Write(Environment.NewLine);
                }
                for (int i = 0; i <= gridIn.Columns.Count - 1; i++)
                {
                    if (i > 0)
                    {
                        swOut.Write(", ");
                    }

                    value = dr.Cells[i].Value.ToString();
                    string vals = dr.Cells[2].Value.ToString();
                                           int priceDecimalPlaces = vals.Split('.').Count() > 1
                                  ? vals.Split('.').ToList().ElementAt(1).Length
                                  : 0;
                                            string nell = "0";
                                            if (priceDecimalPlaces == 3)
                                            {
                                                nell = "0.001";
                                            }
                                            if (priceDecimalPlaces == 5)
                                            {
                                                nell = "0.00001";
                                            }
                                            if (priceDecimalPlaces == 4)
                                            {
                                                nell = "0.0001";
                                            }

                    //replace comma's with spaces
                    value = value.Replace(',', ' ');
                    //replace embedded newlines with spaces
                    value = value.Replace(Environment.NewLine, "");

double如果 C#和 Metatrader 的当前double值之间的差异是0.12098-0.12096=2,则 Metatrader 不会将值视为 2,而是会看到更高的值,例如 18,17 等等,但是从 MetaTrader 的代码中写入相同的值会给出正确的值。 .

我使用 _lread 读取 CSV:

     uchar chBuff[1024];
     int res = _lread(hFile, chBuff, 1);
     //
     //CreateFileA(
     res = _lread(hFile, chBuff, 350);
     ls_308 = CharArrayToString(chBuff, 0, res, CP_UTF8);
  //Alert(Ls_84);
     ls_308=StringSubstr(ls_308,0,StringFind(ls_308,"\r\n",0));   

     if (_lclose(hFile)<0) Print("Error closing");

我认为 Metatrader 上的 C# doubles 和普通 Metatrader doubles 之间存在一些差异

4

1 回答 1

0

该错误是由系统的编码语言引起的,该语言与 Metatrader 代码中指定的 UTF-8 不同

ls_308 = CharArrayToString(chBuff, 0, res, CP_UTF8);

所以,我通过这样做将UTF更改为系统分配的所有代码页

ls_308 = CharArrayToString(chBuff, 0, res, CP_ACP);

希望有人觉得这很有用..

于 2015-10-16T06:16:50.860 回答