nbmcuj
发表于 2020-1-24 12:00:41
TRFUFTRUJTFYJTFYU
夕夕
发表于 2020-1-24 12:14:08
谢谢提供!!!!!
qy1974810
发表于 2020-1-24 12:53:45
kkkkkkkkkkkkkkkkk
liesli
发表于 2020-2-2 12:51:39
1111111111111111
卧龙凤雏
发表于 2020-2-2 13:22:10
谢谢分享!
ethan829
发表于 2020-2-2 22:10:05
均线参数是多少
tmwzg
发表于 2020-2-2 22:51:49
3均线交叉信号指标
绝世无双
发表于 2020-2-3 09:24:32
谢谢分享!!!
死脑筋
发表于 2020-2-3 09:31:52
好流通开个户
sdaassdasda
发表于 2020-2-4 01:58:31
好担心//+------------------------------------------------------------------+ //| MA 交叉报警.mq4 | //| Copyright 2012, MetaQuotes Software Corp. | //| http://www.metaquotes.net | //+------------------------------------------------------------------+ #property indicator_chart_window #property indicator_buffers 2 #property indicator_color1 Red #property indicator_color2 Red //---- buffers double buy[],sell[];extern int fast=20; extern int slow=50; double LastAlertTime=0; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init(){ //---- indicatorsSetIndexStyle(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)&& iMA(NULL,0,fast,0,MODE_EMA,PRICE_CLOSE,i+1)>iMA(NULL,0,slow,0,MODE_EMA,PRICE_CLOSE,i+1))){sell=High+2*Point;if (i==1 && LastAlertTime!=Time){Alert("Negative Cross");LastAlertTime=Time;}
} 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)<iMA(NULL,0,slow,0,MODE_EMA,PRICE_CLOSE,i+1))){buy=Low-2*Point;if (i==1 && LastAlertTime!=Time){Alert("Positive Cross");LastAlertTime=Time;}} } //----return(0);} //+------------------------------------------------------------------+