- 注册时间
- 2013-9-23
- 在线时间
- 519 小时
- 最后登录
- 2022-4-4
- 阅读权限
- 200
管理员
MT4软件工程师
- 积分
- 6521
- 帖子
- 2771
- 主题
- 2761
|
TB编程教程 数据库读写
本例以5分钟周期调用日线指标数据举例讲解具体应用。
操作步骤如下:
- 新建一个工作区,包含上下两个图表窗体,上面选择日线周期,下面选择5分钟周期。
- 新建一个公式应用,命名为MyDayMA。编译成功后插入日线图表中。详细代码如下:
- Params
- Numeric length(10);
- Vars
- Numeric MA;
- string strkey;
- string strValue;
- Begin
- MA = AverageFC(Close,length);
- strKey = DateToString(Date);
- strValue = Text(MA);
- SetTBProfileString("DayMA",strKey,strValue);
- PlotNumeric("MA",MA);
- End
-
复制代码
- 新建一个公式应用,My5MinMA。编译成功后插入5分钟图表中,详细代码如下:
- Vars
- NumericSeries DayMAValue;
- string strKey;
- string strValue;
- Begin
- strKey = DateToString(Date);
- strValue = GetTBProfileString("DayMA",strKey);
- If(strValue != InvalidString)
- {
- DayMAValue = Value(strValue);
- }Else
- {
- DayMAValue = DayMAValue[1];
- }
- PlotNumeric("DayMA",DayMAValue);
- End
复制代码
- 上面的公式实际使用了未来数据,用来写技术分析是可以的,但用来进行自动交易就会出问题,为了更准确合理的使用跨周期数据,我们应该稍作修改,代码如下:
- Vars
- NumericSeries DayMAValue;
- StringSeries strKey;
- string strValue;
- Begin
- If(Date!=Date[1])
- {
- strKey = DateToString(Date[1]);
- }Else
- {
- strKey = strKey[1];
- }
- strValue = GetTBProfileString("DayMA",strKey);
- If(strValue != InvalidString)
- {
- DayMAValue = Value(strValue);
- }Else
- {
- DayMAValue = DayMAValue[1];
- }
- PlotNumeric("DayMA",DayMAValue);
- End
复制代码
|
|