使用MQL5在Strategy Tester中读取文件

时间:2018-07-03 10:21:14

标签: python python-3.x mql5 metatrader5

我已经使用Python Pandas库创建了一个文件,如下所示:

map.insert(key, "value");

let hashed_key = {
    let mut hasher = map.hasher().build_hasher();
    key.hash(&mut hasher);
    hasher.finish()
};

assert_eq!(map.get(key).unwrap(), map.get_by_hash(hashed_key).unwrap());

现在,我正在尝试通过Metatrader5的策略测试器读取文件。但是在“测试器”窗口上出现以下错误:

out.to_csv("modular.csv",index=False,encoding="utf-16")

我遇到以下错误:

#property tester_file "modular.csv"
int file;
int OnInit()
  {
   file = FileOpen("modular.csv",FILE_READ|FILE_CSV,',');
   if(file != INVALID_HANDLE)
   {
      Print("File size resising number: ",(int)FileSize(file));
   }
   else{Print("File Not found.");}

   return(INIT_SUCCEEDED);
  }

查看图片: Strategy Tester

这是文件的链接:Trying to open this file

请帮助我该怎么办?

0 个答案:

没有答案