遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
发表于:2005-07-25 01:31只看该作者
22楼
mt里面对于用于指标序列的变量有8个限制,而普通变量个数没有限制。
23楼
多谢HAWKIE,辛苦了,我这就试试看.
韬客社区www.talkfx.co
24楼
太好了,就是这样的,再次感谢HAWKIE先生,谢谢,.Snap3.gif
韬客社区www.talkfx.co
发表于:2005-07-27 15:08只看该作者
25楼
楼上,能说说这个公式的用法吗?
韬客社区www.talkfx.co
发表于:2005-07-28 10:08只看该作者
26楼
把公式做到一个里面去了,不用分成两个了。
//+------------------------------------------------------------------+
//| HEILANG-DXQS.mq4 |
//| Copyright ?2005, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2005, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"
#property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 Silver
#property indicator_color2 Yellow
#property indicator_color3 Magenta
extern int KPeriod=9;
extern int DPeriod=3;
extern int JPeriod=3;
extern int P=13;
extern int QSHigh=30;
extern int QSLow=36;
double AA;
double BB;
double CC;
double DD;
double EE;
double buffer1;
double buffer2;
double buffer3;
int draw_begin1=0;
int draw_begin2=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
IndicatorBuffers(8);
SetIndexBuffer(0,buffer2);
SetIndexBuffer(1,buffer3);
SetIndexBuffer(2, EE);
SetIndexBuffer(3, AA);
SetIndexBuffer(4, BB);
SetIndexBuffer(5, CC);
SetIndexBuffer(6, DD);
SetIndexBuffer(7,buffer1);
//---- indicator lines
SetIndexStyle(0,DRAW_LINE);
SetIndexStyle(1,DRAW_LINE);
SetIndexStyle(2,DRAW_LINE);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("HEILANG-DXQS("+KPeriod+","+DPeriod+","+JPeriod+","+P+","+QSHigh+","+QSLow+")");
SetIndexLabel(0,"D");
SetIndexLabel(1,"J");
SetIndexLabel(2,"QS");
//----
draw_begin1=KPeriod+JPeriod;
draw_begin2=draw_begin1+DPeriod;
SetIndexDrawBegin(0,draw_begin1);
SetIndexDrawBegin(1,draw_begin2);
SetIndexDrawBegin(2,MathMax(QSLow,QSHigh));
return(0);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int i,limit;
int counted_bars=IndicatorCounted();
//----
limit=Bars-MathMax(QSLow,QSHigh);
for(i=0;i
27楼
多谢HAWKIE,高手.
韬客社区www.talkfx.co
发表于:2006-06-01 02:22只看该作者
28楼
怎么用?
韬客社区www.talkfx.co
发表于:2006-06-03 03:13只看该作者
29楼
不知如何将你们编的公式用到自己的MT上呢
韬客社区www.talkfx.co
发表于:2007-06-08 07:13只看该作者
30楼
谢谢分享,收藏起来了。
韬客社区www.talkfx.co
发表于:2008-07-09 14:41只看该作者
31楼
:M :P :D :)
发表于:2009-10-04 07:52只看该作者
32楼
这个论坛里高手真多
宠辱不惊,花开花落;去留无意,云卷云舒。
发表于:2010-05-27 17:08只看该作者
33楼
:039: :041: :044:
韬客社区www.talkfx.co
发表于:2017-01-06 03:09只看该作者
34楼
能不能用啊
韬客社区www.talkfx.co