12评论

2收藏

daily change 日波幅

avatar admin | 2763 人阅读 | 12 人评论 | 2018-01-18

XAUUSDH1.png

  1.      
  2.       /*##############################################################
  3.       #  DAILY CHANGE INDICATOR                                      #
  4.       #                                                              #
  5.       #  This Indicator shows the percentage change between          #
  6.       #  yesterday day close and today actual Price (Bid).           #
  7.       #  It works on any time frame.                                 #
  8.       #                                                              #
  9.       #  Copyright: BLACKHAWK                                        #
  10.       ##############################################################*/

  11. /*
  12. ------------------------------------------------------------------------------------------------

  13. Description:

  14. This indicator shows the % Daily Change of yesterday close with respect to actual price (Bid).

  15. It calculates the percentage change between yesterday close price and the actual bid price.

  16. It works on any timeframe.

  17. External Modifications:


  18. You can modify the following settings:

  19. Label_Color       = DarkBlue     // You can change the font color
  20. Font_Size         = 14           // You can modify the font size

  21. X_Position        = 3            // You can modify X position (distance) from corner
  22. Y_Position        = 3            // You can modify Y position (distance) from corner
  23. Corner_Position   = 2            // You cna select the corner position (0: Top Left / 1: Top Right / 2: Bottom Left / 3: Bottom Right)

  24. ------------------------------------------------------------------------------------------------
  25. */


  26. #property indicator_chart_window

  27. extern color   Label_Color       = DarkBlue;
  28. extern int     Font_Size         = 14;

  29. extern int     X_Position        = 3;
  30. extern int     Y_Position        = 3;
  31. extern int     Corner_Position   = 2;

  32. #define OBJECT "DailyChange"



  33. int start()
  34. {
  35.    PerChangeInfo(); // Execute function
  36. }


  37. //--- FUNCTION 1 ------------------------------------------ //

  38.    // Function 1 calculates Percentage change between Yesterday Close and actual Bid.

  39. void PerChangeInfo()
  40.    
  41.    {

  42.    double ClPrice_D1  = iClose(NULL, PERIOD_D1, 1);
  43.    double ActualBid   = Bid;
  44.    double PercChange  = ((ActualBid - ClPrice_D1)/ClPrice_D1)*100;
  45.    
  46.    CreateLabel(PercChange);
  47.    
  48.    }

  49. //--- FUNCTION 2 ------------------------------------------ //

  50.    // Function 2 creates the label containing the information of Daily Change.


  51. void CreateLabel(double PercChange)

  52.    {
  53.    
  54.    string PerChg = "Daily Change: "+DoubleToStr(PercChange, 2) + " %";
  55.    
  56.    if(ObjectFind(OBJECT) < 0)
  57.       
  58.       {
  59.       ObjectCreate   (OBJECT, OBJ_LABEL, 0, 0, 0);
  60.       ObjectSet      (OBJECT, OBJPROP_CORNER, Corner_Position);
  61.       ObjectSet      (OBJECT, OBJPROP_YDISTANCE, X_Position);
  62.       ObjectSet      (OBJECT, OBJPROP_XDISTANCE, Y_Position);
  63.       ObjectSetText  (OBJECT, PerChg, Font_Size, "Verdana", Label_Color);
  64.       }
  65.    
  66.    ObjectSetText(OBJECT, PerChg);
  67.    
  68.    WindowRedraw();
  69.    
  70.    }


  71. //--- INIT AND DEINIT ------------------------------------- //

  72. int init()
  73. {
  74.    PerChangeInfo();
  75. }


  76. int deinit()
  77. {
  78.    ObjectDelete(OBJECT);
  79. }

复制代码

显示昨日收盘价和当前价格的波幅

DailyChange.mq4
""
还没有人打赏,支持一下

评论|共 12 个

vtscv

发表于 2018-8-24 19:14:57 | 显示全部楼层

学习了,不错,讲的太有道理了

zhouli7

发表于 2020-6-14 21:55:24 | 显示全部楼层

看帖回帖是美德!:lol

chameiwang

发表于 2020-6-20 13:47:58 | 显示全部楼层

过来看看的

zjn1688

发表于 2020-7-28 16:00:38 | 显示全部楼层

学习了,不错

金银

发表于 2020-8-20 15:34:00 | 显示全部楼层

学习了,不错

coahb

发表于 2020-11-15 18:33:53 | 显示全部楼层

此生有你足够

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

几法国红酒

发表于 2020-11-21 15:54:26 | 显示全部楼层

支持下

ia73a4q1m8

发表于 2021-7-3 22:19:44 | 显示全部楼层

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

EA之家评论守则