2楼
均线是随便的两条如:5和10
类型ema
如果能在交叉的时候除标识箭头外,有声音报警就太好了。
自己琢磨了很久,还是没成功,故求救大家。
发表于:2005-08-04 08:29只看该作者
4楼
//+------------------------------------------------------------------+
//| Copyright ?2005, [email protected]
//| http://man2078.home4u.china.com/|
//+------------------------------------------------------------------+
#property copyright "[email protected]"
#property link "http://man2078.home4u.china.com"
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red
//---- buffers
double buy,sell;
extern int fast=5;
extern int slow=10;
double LastAlertTime=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,233);
SetIndexBuffer(0,buy);
SetIndexEmptyValue(0,0.0);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,234);
SetIndexBuffer(1,sell);
SetIndexEmptyValue(1,0.0);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
//----
for (int i=Bars-1;i>=0;i--)
{
if
(
(
iMA(NULL,0,fast,0,MODE_EMA,PRICE_CLOSE,i)iMA(NULL,0,slow,0,MODE_EMA,PRICE_CLOSE,i+1)
)
)
{
sell=High+2*Point;
if (i==1 && LastAlertTime!=Time[0])
{
Alert("Negative Cross");
LastAlertTime=Time[0];
}
}
if
(
(
iMA(NULL,0,fast,0,MODE_EMA,PRICE_CLOSE,i)>iMA(NULL,0,slow,0,MODE_EMA,PRICE_CLOSE,i)
&& iMA(NULL,0,fast,0,MODE_EMA,PRICE_CLOSE,i+1)c.gif
韬客社区www.talkfx.co
5楼
哈哈哈,太感激啦。
完美。
6楼
我看得懂你的代码,就是编不出,气人,再次感谢
发表于:2005-08-04 08:45只看该作者
7楼
有什么需要帮忙的说一声就可
或者短信联系我
[ 本帖最后由 老正 于 2005-8-4 16:50 编辑 ]
韬客社区www.talkfx.co
发表于:2005-09-22 03:28只看该作者
8楼
谢谢
发表于:2005-09-24 08:45只看该作者
9楼
原帖由 maningok 于 2005-8-4 16:29 发表 //+------------------------------------------------------------------+ //| Copyright ?2005, [email protected] //| http://man2078.home4u.china.com/| ...
10楼
1、是
2、是
发表于:2005-09-25 10:31只看该作者
11楼
谢谢,高手
发表于:2005-09-25 10:39只看该作者
12楼
可是在MT4.0指标中没有找到EMA啊,高手请继续指导啊。
13楼
声明,我不是高手,刚好懂这个问题。未命名.gif
发表于:2005-09-26 01:55只看该作者
14楼
我的为什么是一条均线呀
不向幽闺寻女秀,世间何处觅知音.
发表于:2005-09-27 14:38只看该作者
15楼
GOOD,高手的图好靓。谢谢
发表于:2005-09-28 04:15只看该作者
16楼
原帖由 maningok 于 2005-8-4 16:28 发表 在交叉时不仅有箭头,而且有声音报警 声音文件可以在tools-option-events里选择你想要的alert声音文件,
讨论行情走势,交流心得体会
发表于:2005-09-28 06:16只看该作者
17楼
你说的是指标? 看置顶贴里的如何导入代码就可
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2005-09-28 09:01只看该作者
18楼
谢谢
韬客社区www.talkfx.co
发表于:2005-09-28 11:58只看该作者
19楼
是请问maningok 能写个for mt3的吗?
韬客社区www.talkfx.co
发表于:2005-09-28 13:01只看该作者
20楼
能否让他在图上显示交叉的价位呢?
韬客社区www.talkfx.co