[MT4指标]变色买卖指标
MTF_MovingAverage.mq4 色变买卖 | |||||
文章来源: 文章作者: 发布时间:2006-12-23 字体: [大 中 小 ] | |||||
|
" #property copyright "MT4 release WizardSerg ForexMagazine #104" //Original version #property link "[email protected]
" #property indicator_chart_window #property indicator_buffers 8 #property indicator_color1 Silver #property indicator_color2 Silver #property indicator_color3 Silver #property indicator_color4 Silver #property indicator_color5 Silver #property indicator_color6 Silver #property indicator_color7 Aqua #property indicator_color8 Tomato //---- input parameters /************************************************************************* PERIOD_M1 1 PERIOD_M5 5 PERIOD_M15 15 PERIOD_M30 30 PERIOD_H1 60 PERIOD_H4 240 PERIOD_D1 1440 PERIOD_W1 10080 PERIOD_MN1 43200 You must use the numeric value of the timeframe that you want to use when you set the TimeFrame' value with the indicator inputs. --------------------------------------- PRICE_CLOSE 0 Close price. PRICE_OPEN 1 Open price. PRICE_HIGH 2 High price. PRICE_LOW 3 Low price. PRICE_MEDIAN 4 Median price, (high+low)/2. PRICE_TYPICAL 5 Typical price, (high+low+close)/3. PRICE_WEIGHTED 6 Weighted close price, (high+low+close+close)/4. You must use the numeric value of the Applied Price that you want to use when you set the 'applied_price' value with the indicator inputs. --------------------------------------- MODE_SMA 0 Simple moving average, MODE_EMA 1 Exponential moving average, MODE_SMMA 2 Smoothed moving average, MODE_LWMA 3 Linear weighted moving average. You must use the numeric value of the MA Method that you want to use when you set the 'ma_method' value with the indicator inputs. **************************************************************************/ extern int TimeFrame=0; extern int MAPeriod=21; extern int ma_method=MODE_SMA; extern int applied_price=PRICE_CLOSE; extern bool UseLevels=False; extern int Level0=0; extern int Level1=0; extern int Level2=0; extern int Level3=0; extern int Level4=0; extern int Level5=0; double ExtMapBuffer1; double ExtMapBuffer2; double ExtMapBuffer3; double ExtMapBuffer4; double ExtMapBuffer5; double ExtMapBuffer6; double ExtMapBuffer7; double ExtMapBuffer8; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { string short_name; //---- indicator line SetIndexBuffer(0,ExtMapBuffer1); SetIndexStyle(0,DRAW_LINE,STYLE_DOT); SetIndexBuffer(1,ExtMapBuffer2); SetIndexStyle(1,DRAW_LINE,STYLE_DOT); SetIndexBuffer(2,ExtMapBuffer3); SetIndexStyle(2,DRAW_LINE,STYLE_DOT); SetIndexBuffer(3,ExtMapBuffer4); SetIndexStyle(3,DRAW_LINE,STYLE_DOT); SetIndexBuffer(4,ExtMapBuffer5); SetIndexStyle(4,DRAW_LINE,STYLE_DOT); SetIndexBuffer(5,ExtMapBuffer6); SetIndexStyle(5,DRAW_LINE,STYLE_DOT); SetIndexBuffer(6,ExtMapBuffer7); SetIndexStyle(6,DRAW_LINE); SetIndexBuffer(7,ExtMapBuffer8); SetIndexStyle(7,DRAW_LINE); //---- name for DataWindow and indicator subwindow label switch(ma_method) { case 1 : short_name="MTF_HMA_EMA("; break; case 2 : short_name="MTF_HMA_SMMA("; break; case 3 : short_name="MTF_HMA_LWMA("; break; default : short_name="MTF_HMA_SMA("; } switch(TimeFrame) { case 1 : string TimeFrameStr="Period_M1"; break; case 5 : TimeFrameStr="Period_M5"; break; case 15 : TimeFrameStr="Period_M15"; break; case 30 : TimeFrameStr="Period_M30"; break; case 60 : TimeFrameStr="Period_H1"; break; case 240 : TimeFrameStr="Period_H4"; break; case 1440 : TimeFrameStr="Period_D1"; break; case 10080 : TimeFrameStr="Period_W1"; break; case 43200 : TimeFrameStr="Period_MN1"; break; default : TimeFrameStr="Current Timeframe"; } IndicatorShortName(short_name+MAPeriod+") "+TimeFrameStr); } //---- return(0); //+------------------------------------------------------------------+ //| MTF Moving Average | //+------------------------------------------------------------------+ int start() { datetime TimeArray; int i,shift,limit,y=0,counted_bars=IndicatorCounted(); // Plot defined timeframe on to current timeframe ArrayCopySeries(TimeArray,MODE_TIME,Symbol(),TimeFrame); limit=Bars-counted_bars; for(i=0,y=0;i
4楼
高手给编辑下吧.安装了用不了,不知道那里有问题
http://www.talkforex.com/blog/?23518
5楼
http://www.talkforex.com/blog/?23518
7楼
谢谢啊...
http://www.talkforex.com/blog/?23518
发表于:2007-02-13 08:53只看该作者
8楼
用在什么时间段好,参数用改吗
韬客社区www.talkfx.co
发表于:2007-02-13 13:56只看该作者
9楼
不懂
韬客外汇论坛TALKFOREX.COM
10楼
{B643DCF3-5FF6-4203-B3EA-020A3520C399}.JPG
http://www.talkforex.com/blog/?23518
发表于:2007-02-20 05:02只看该作者
11楼
谢谢
韬客社区www.talkfx.co
发表于:2007-02-22 15:03只看该作者
12楼
看不懂
韬客外汇论坛TALKFOREX.COM
发表于:2007-02-23 00:54只看该作者
13楼
原帖由 topjacky 于 2007-2-22 23:03 发表 看不懂
发表于:2007-02-23 01:59只看该作者
14楼
請交完美使者 妳上面的圖是怎樣做出來的
我把程式家進去後市兩條紅藍線跟你貼的圖不一樣
发表于:2007-02-26 03:56只看该作者
15楼
怎么不一样呢
韬客社区www.talkfx.co
发表于:2007-03-13 15:25只看该作者
16楼
试用了一下,感觉不错啊
:)
韬客社区www.talkfx.co
发表于:2007-03-31 17:32只看该作者
17楼
均线数据误差大啊!怎么不对头啊!
韬客社区www.talkfx.co
发表于:2008-08-09 15:07只看该作者
18楼
韬客社区www.talkfx.co
发表于:2008-11-24 11:20只看该作者
20楼
:') ,我的怎么粘贴了没用?
韬客社区www.talkfx.co