|
本帖最后由 frlin2003 于 2017-5-24 16:42 编辑
在各方全力协助下实现
虽然是小小的指标(自动画固定幅度网格指标)
对咱们菜鸟来说
搞出来那也是相当的不容易
前前后后快一年时间。之前还酝酿过23年。法克。
我琢磨,代码公式的意义很有参考性。谢特。
源代码。- #property strict //frlin2003大爷
- #property indicator_chart_window
- extern double 间距 ;
- extern int 数量 = 20;
- extern int 宽度 = 1;
- double Oldxxx=0;
- int start()
- {
- double Newxxx =WindowPriceMax();
- 间距=0.003;
- if(StringFind(Symbol(),"JPY",3)==3) 间距=0.3;
- if(StringFind(Symbol(),"XAU",0)==0) 间距=3;
- if(Oldxxx==Newxxx){
- return 0;
- }
- else{
- ObjectsDeleteAll(0,"网格",-1,OBJ_HLINE);
- for (int i = 0; i< 数量;i++) {
- ObjectCreate("网格"+i,OBJ_HLINE,0,0,Newxxx-i*间距);
- ObjectSet("网格"+i, OBJPROP_STYLE, 4);
- ObjectSet("网格"+i, OBJPROP_WIDTH, 宽度);
- ObjectSet("网格"+i, OBJPROP_COLOR, RoyalBlue);
- }
- Oldxxx=Newxxx;
- }
- return 0;
- }
- int deinit(){
- ObjectsDeleteAll(0,"网格",-1,OBJ_HLINE);
- return 0;
- }
复制代码
来源: mt4自动画网格指标无阻碍终极实现 |
|