10评论

0收藏

求各位大虾看一下这个ea 无法挂上去 平台信息查询

avatar sailchen | 2740 人阅读 | 10 人评论 | 2017-04-24

#property indicator_separate_window
int init()
   {
      return(0);
   }
int deinit()
   {
      ObjectsDeleteAll(WindowFind(WindowExpertName()),OBJ_LABEL);
      Comment("");
      return(0);
   }
int start()
   {
      iMain();
      return(0);
   }
void iMain()
   {
      //账户信息
      iDisplayInfo("AccountInfo1","公司名称:"+AccountCompany(),0,10,20,8,"",SeaGreen);
      iDisplayInfo("AccountInfo2","杠杆比例:1:"+AccountLeverage(),0,10,35,8,"",SeaGreen);
      iDisplayInfo("AccountInfo3","账户名称:"+AccountName(),0,10,50,8,"",SeaGreen);
      iDisplayInfo("AccountInfo4","账户编号:"+AccountNumber(),0,10,65,8,"",SeaGreen);
      iDisplayInfo("AccountInfo5","服务器名:"+AccountServer(),0,10,80,8,"",SeaGreen);
      iDisplayInfo("AccountInfo6","停止水平:"+AccountStopoutLevel(),0,200,50,8,"",SeaGreen);
      //平台规则
      iDisplayInfo("PlatformRule1","交易点差:"+DoubleToStr(MarketInfo(Symbol(),MODE_SPREAD),0),0,200,20,8,"",SeaGreen);
      iDisplayInfo("PlatformRule2","最小开仓:"+DoubleToStr(MarketInfo(Symbol(),MODE_MINLOT),2),0,200,65,8,"",SeaGreen);
      iDisplayInfo("PlatformRule3","最大开仓:"+DoubleToStr(MarketInfo(Symbol(),MODE_MAXLOT),2),0,200,80,8,"",SeaGreen);
      iDisplayInfo("PlatformRule4","单点价值:"+DoubleToStr(MarketInfo(Symbol(),MODE_MARGINREQUIRED),2),0,200,35,8,"",SeaGreen);
      if (MarketInfo(Symbol(),MODE_TRADEALLOWED)==1)
         {
            iDisplayInfo("PlatformRule5","智能交易:允许",0,200,95,8,"",SeaGreen);
         }
         else iDisplayInfo("PlatformRule5","智能交易:禁止",0,200,95,8,"",SeaGreen);
      if (IsDemo())
         {
            iDisplayInfo("PlatformRule6","账户类型:模拟",0,10,95,8,"",SeaGreen);
         }
         else iDisplayInfo("PlatformRule6","账户类型:真实",0,10,95,8,"",SeaGreen);
   }

/*
函    数:在屏幕上显示文字卷标
输入参数:string LableName 卷标名称,如果显示多个文本,名称不能相同
          string LableDoc 文本内容
          int Corner 文本显示角
          int LableX 卷标X位置坐标
          int LableY 卷标Y位置坐标
          int DocSize 文本字号
          string DocStyle 文本字体
          color DocColor 文本颜色
输出参数:在指定的位置(X,Y)按照指定的字号、字体及颜色显示指定的文本
算法说明:
*/
void iDisplayInfo(string LableName,string LableDoc,int Corner,int LableX,int LableY,int DocSize,string DocStyle,color DocColor)
   {
      if (Corner == -1) return(0);
      int myWindowsHandle = WindowFind(WindowExpertName()); //获取当前指标名称所在窗口序号
      LableName=LableName+DoubleToStr(myWindowsHandle,0);
      ObjectCreate(LableName, OBJ_LABEL, myWindowsHandle, 0, 0); //建立卷标对象
      ObjectSetText(LableName, LableDoc, DocSize, DocStyle,DocColor); //定义对象属性
      ObjectSet(LableName, OBJPROP_CORNER, Corner); //确定坐标原点,0-左上角,1-右上角,2-左下角,3-右下角,-1-不显示
      ObjectSet(LableName, OBJPROP_XDISTANCE, LableX); //定义横坐标,单位像素
      ObjectSet(LableName, OBJPROP_YDISTANCE, LableY); //定义纵坐标,单位像素
   }
""
还没有人打赏,支持一下

评论|共 10 个

taylor

发表于 2017-4-24 11:04:32 | 显示全部楼层

放在指标目录就行了

平台信息.mq4

小注

发表于 2020-1-8 22:02:58 | 显示全部楼层

看帖回帖是美德!:lol

外汇使者

发表于 2020-7-30 17:45:42 | 显示全部楼层

帮你顶下哈!!

qplpthpsh

发表于 2020-8-22 12:50:06 | 显示全部楼层

谢谢楼主分享

蒋女jdn盅

发表于 2020-11-25 11:12:35 | 显示全部楼层

支持下

耗子

发表于 2021-7-5 14:27:28 | 显示全部楼层

朱麟奇

发表于 2021-7-11 16:40:02 | 显示全部楼层

淘金者

发表于 2021-7-12 23:43:47 | 显示全部楼层

心水2024

发表于 2021-7-13 10:00:31 | 显示全部楼层

谢谢

12下一页
您需要登录后才可以回帖 登录 | 注册 微信登录

EA之家评论守则