MT5:放大市场价格指标
//+------------------------------------------------------------------+
//| Magnified_Market_Price.mq5 |
//| Copyright 2016, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2016, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property indicator_chart_window
#property indicator_buffers 0
#property indicator_plots 0
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
const bool Bid_Ask_Colors=true;
color FontColor=clrRed;
const int FontSize=24;
const string FontType="Comic Sans MS";
const ENUM_BASE_CORNER Corner=CORNER_LEFT_LOWER;
const double angle=0.0;
const ENUM_ANCHOR_POINT anchor=ANCHOR_LEFT_LOWER;
const bool back=false;
const bool selection=false;
const bool hidden=true;
const long z_order=0;
double Old_Price;
int OnInit()
{
IndicatorSetInteger(INDICATOR_DIGITS,_Digits);
IndicatorSetString(INDICATOR_SHORTNAME,"Magnified_Market_Price");
return( INIT_SUCCEEDED );
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double& high[],
const double& low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[]
)
{
double Bid = SymbolInfoDouble(Symbol(),SYMBOL_BID);
//---
if (Bid_Ask_Colors==true)
{
if (Bid > Old_Price) FontColor=clrLawnGreen;
if (Bid < Old_Price) FontColor=clrRed;
Old_Price=Bid;
}
string Market_Price=DoubleToString(Bid, _Digits);
//----
ObjectCreate(0,"Market_Price_Label", OBJ_LABEL, 0, 0, 0);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_XDISTANCE,1);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_YDISTANCE,1);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_CORNER,Corner);
ObjectSetString(0,"Market_Price_Label",OBJPROP_TEXT,Market_Price);
ObjectSetString(0,"Market_Price_Label",OBJPROP_FONT,FontType);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_FONTSIZE,FontSize);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_COLOR,FontColor);
ObjectSetDouble(0,"Market_Price_Label",OBJPROP_ANGLE,angle);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_ANCHOR,anchor);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_BACK,back);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_SELECTABLE,selection);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_SELECTED,selection);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_HIDDEN,hidden);
ObjectSetInteger(0,"Market_Price_Label",OBJPROP_ZORDER,z_order);
return(rates_total);
}
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
ObjectDelete(0,"Market_Price_Label");
}
MT5:放大市场价格指标的更多相关文章
- 趋势型指标——MACD
1.简要介绍▪ 计算方法▪ DIFF▪ DEA▪ MACD▪ 构造原理▪ 缺点2.实战技巧3.运用技巧▪ 应用原理▪ 经典用法▪ 实战战法▪ 捕捉卖点▪ 买卖策略▪ 短线实战4.组合指标运用5.一般研 ...
- 高频交易算法研发心得--MACD指标算法及应用
凤鸾宝帐景非常,尽是泥金巧样妆. 曲曲远山飞翠色:翩翩舞袖映霞裳. 梨花带雨争娇艳:芍药笼烟骋媚妆. 但得妖娆能举动,取回长乐侍君王. [摘自<封神演义>纣王在女娲宫上香时题的诗] 一首定 ...
- 牛皮市和猴市的好工具和指标:BOLL
(转贴)布林线BOLL用法 布林线是股市中经常用到的技术指标之一,它反映了股价的波动状况.山版软件指标图中的布林线由三条组成,上边的白线(up)是阻力线,下边的黄线(down)是支撑线,中间的粉红线( ...
- Python交互K线工具 K线核心功能+指标切换
Python交互K线工具 K线核心功能+指标切换 aiqtt团队量化研究,用vn.py回测和研究策略.基于vnpy开源代码,刚开始接触pyqt,开发界面还是很痛苦,找了很多案例参考,但并不能完全满足我 ...
- 图像质量评价方法PSNR+SSIM&&评估指标SROCC,PLCC
update:2018-04-07 今天发现ssim的计算里面有高斯模糊,为了快速计算,先对每个小块进行计算,然后计算所有块的平均值.可以参考源代码实现,而且代码实现有近似的在里面!matlab中中图 ...
- L230 RF可靠性测试-RF指标
最近调试Zigbee 和2.4G产品时需要做一些认证,查找到常用的RF指标. ----------http://www.52rd.com/S_TXT/2016_5/TXT83303.htm------ ...
- AJPFX简评:MT5平台
MetaTrader 5全面改进的图表和扩展的功能 MetaTrader软件开发商在MT4获得全球交易商全面好评之后,又再次研发推出了更为先进的MT5交易软件. MT5的主要特征●改进的图表和即时 ...
- talib 中文文档(八): Momentum Indicator Functions 动量指标
Momentum Indicator Functions ADX - Average Directional Movement Index 函数名:ADX 名称:平均趋向指数 简介:使用ADX指标,指 ...
- DVB数字电视常见信号指标解释
1. 平均功率与峰值电平 峰值电平在模拟电视广播时用于表征频道信号电平强弱. 模拟电视信号是单极性.不对称的,即电视信号有一个固定黑色参考电平,比黑色亮的信号处在黑色电平线一边,同步脉冲处 ...
随机推荐
- base64与byte[]之间转换
主要是根据BASE64Encoder 和BASE64Decoder 进行操作实现,具体例子如下: BASE64Encoder encode = new BASE64Encoder(); //将byte ...
- JS表单验证
1. 长度限制 <script> function test() { if(document.a.b.value.length>50) { alert("不能超过50个字符 ...
- wpf直接绑定xml生成应用程序
目的:在vs2010下用wpf完成一个配置工具,配置文件为xml格式,xml文件作为数据源,直接和wpf前台绑定,生成exe后,运行exe能够加载同路径下的xml配置文件并显示 xml文件在项目中的设 ...
- Metro-Ural119递推
Time limit: 0.5 second Memory limit: 64 MB Many of SKB Kontur programmers like to get to work by Met ...
- lua 和 c/c++ 交互 (持续更新)
参考: http://blog.csdn.net/xiaohuh421/article/details/7476485 http://blog.csdn.net/shun_fzll/article/d ...
- socket(二)
作用域 1 2 3 if 1 == 1: name = 'alex' print(name) python中是没有块儿作用域的,所以python可以输出name java/c中有块级作用域, ...
- Android SDK Tools 更新
C:\WINDOWS\system32\drivers\etc\hosts 文件用记事本打开后 添加下面的 74.125.237.1 dl-ssl.google.com
- NuGet安装及使用教程
Nuget是一个.NET平台下的开源的项目,它是Visual Studio的扩展.在使用Visual Studio开发基于.NET Framework的应用时,Nuget能把在项目中添加.移除和更新引 ...
- EL表达式语言总结
EL介绍 Expressive Language, JSP2.0引入,简化jsp开发中对对象的引用. 基本语法 ${表达式} 常见用法 根据其访问对象,可大体分成三类:访问数据及其各种表达式,访问EL ...
- 使用Spring AsyncRestTemplate对象进行异步请求调用
直接上代码: package com.mlxs.common.server.asyncrest; import org.apache.log4j.Logger; import org.springfr ...