Location:
Search - mymacd
Search list
Description: 好用,准确度高,详细功能源码或编程学习可参考,-Easy to use, accurate and detailed functional programming learning can source or reference
Platform: |
Size: 3072 |
Author: 谷峰 |
Hits:
Description: 双线MACD,在MT4上很好用,可以自己设置参数调整自己喜欢的交易级别。适合外汇交易任何货币对交易。
安装路径:MT4\MQL4\Indicators-//+ +
//| Custom MACD.mq4 |
//| Copyright ?2004, MetaQuotes Software Corp. |
//| [url]http://www.metaquotes.net/[/url] |
//+ +
#property copyright Copyright ?2004, MetaQuotes Software Corp.
#property link http://www.metaquotes.net/
// indicator settings
#property indicator_separate_window
#property indicator_buffers 4
#property indicator_color1 Blue
#property indicator_color2 Yellow
#property indicator_color3 Red
#property indicator_color4 Green
//int indicator_color3
// indicator parameters
extern int FastEMA=12
extern int SlowEMA=26
extern int SignalSMA=9
// indicator buffers
double ind_buffer1[]
double ind_buffer2[]
double ind_buffer3[]
double ind_buffer4[]
double temp
//+ +
//| Custom indicator init
Platform: |
Size: 1024 |
Author: chenxiao |
Hits: