我已经使用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);
}
这是文件的链接:Trying to open this file
请帮助我该怎么办?