- 注册时间
- 2013-9-23
- 在线时间
- 519 小时
- 最后登录
- 2022-4-4
- 阅读权限
- 200
管理员
MT4软件工程师
- 积分
- 6521
- 帖子
- 2771
- 主题
- 2761
|
智能交易平台TB编程教程 SetTBProfileString函数用法
说明 | 把给定的键名及其值写入到公式信息文件的相应块中。 | 语法 | Bool SetTBProfileString(String strSection,String strKey,String strValue) | 参数 | strSection 指定的信息块的块名
strKey 指定的信息的键名
strValue 写入的字符串信息 | 备注 | 把给定的键名及其值写入到公式信息文件的相应块中。
执行成功返回True,执行失败返回False。写入字符串长度不能超过256字节,否则无法正常读出。
提示:配合GetTBProfileString使用。 | 示例 | SetTBProfileString("MySection","Close",Text(Close));
SetTBProfileString(Symbol,"Close",Text(Close));
建议:配合商品代码(函数Symbol)使用。 |
|
|