- 显示:
- 1400
- 等级:
- 已发布:
- 2014.01.07 08:12
- 已更新:
- 2016.11.22 07:33
-
需要基于此代码的EA交易或指标吗?请在自由职业者服务中订购 进入自由职业者服务
此 CandleTrend 指标显示来自六个不同时间帧的价格走势方向: H4, H8, H12, 日, 周, 月。下行趋势喷涂红色方块, 上行趋势 - 绿色。
指标输入参数:
//+----------------------------------------------+ //| Indicator input parameters | //+----------------------------------------------+ input color UpColor=LimeGreen; // 货币上行趋势颜色 input color DnColor=Red; // 货币下行趋势颜色 input color ZrColor=Gray; // 无变化颜色 input int FontSize=11; // 字体大小 input type_font FontType=Font14; // 字体类型 input ENUM_BASE_CORNER WhatCorner=CORNER_LEFT_LOWER; // 边角位置 input uint Y_=20; // 垂直位置 input uint X_=5; // 水平位置
图例.1 CandleTrend 指标
放置 GetFontName.mqh 库文件与 '客户端目录\MQL5\Include' 文件夹。
由MetaQuotes Ltd译自俄语
原代码: https://www.mql5.com/ru/code/1028

PercentInfo 给出从货币图表的最大三个时间帧中获取的价格升降百分比和点数。简单和良好的信息助手。

此 EA 是开仓点位距离图表中固定点位的盈利计算器。