下载此文档

MT4常用函数变量说明.docx


文档分类:IT计算机 | 页数:约25页 举报非法文档有奖
1/25
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/25 下载此文档
文档列表 文档介绍
MT4常用函数变量说明.docxMT4常用函数变量说明
MT4常用函数变量说明
MT4常用函数变量说明
预定义变量 [Pre-defined Variables]
double Ask
通货的买入价
比方 :
if(iRSI(NULL,0,14,PRICE_CLOSE,0)<25)
{
OrderSend(Symbol(),OP_BUY,Lots,Ask,3,Ask-StopLoss*Point,Ask+TakeProfit*Point,
"My order #2",3,D' 12:30',Red);
return;
}
int Bars
返回图表中的柱数
比方 :
int counter=1;
for(int i=1;i<=Bars;i++)
{
Print(Close[i-1]);
}
double Bid
通货的卖价
比方 :
if(iRSI(NULL,0,14,PRICE_CLOSE,0)>75)
{
OrderSend("EURUSD",OP_SELL,Lots,Bid,3,Bid+StopLoss*Point,Bid-TakeProfit*Point,
"My order #2",3,D' 12:30',Red);
return(0);
}
double Close[]
返回指定索引地址的收盘价格
比方 :
int handle, bars=Bars;
handle=FileOpen("",FILE_CSV|FILE_WRITE,';');
if(handle>0)
{
DRAW_SECTION 1
Drawing sections.
DRAW_HISTOGRAM2
Drawing histogram.
DRAW_ARROW
3
Drawing arrows (symbols).
DRAW_NONE
12
No drawing.
样式:
Constant
Value
Description
STYLE_SOLID
0
The pen is solid.
STYLE_DASH
1
The pen is dashed.
STYLE_DOT
2
The pen is dotted.
STYLE_DASHDOT
3
The pen has alternating dashes and dots.
STYLE_DASHDOTDOT4
The pen has alternating dashes and double dots.
MT4常用函数变量说明
MT4常用函数变量说明
MT4常用函数变量说明
Moving Average method enumeration
搬动平均线模式列举,
iAlligator(), iEnvelopes(), iEnvelopesOnArray, iForce(), iGator(), iMA(),
iMAOnArray(), iStdDev(), iStdDevOnArray(), iStochastic()
这些会调用此列举
Constant
Value
Description
MODE_SMA
0
Simple moving average,
MODE_EMA
1
Exponential moving average,
MODE_SMMA2
Smoothed moving average,
MODE_LWMA3
Linear weighted moving average.
Object properties enumeration
MT4常用函数变量说明
MT4常用函数变量说明
MT4常用函数变量说明
物件属性列举
Constant Value
OBJPROP_TIME1 0
OBJPROP_PRICE11
OBJPROP_TIME2 2
OBJPROP_PRICE23
OBJPROP_TIME3 4
OBJ

MT4常用函数变量说明 来自淘豆网m.daumloan.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数25
  • 收藏数0 收藏
  • 顶次数0
  • 上传人春天资料屋
  • 文件大小124 KB
  • 时间2021-11-29