1号文件是原版文件,
2号文件是修改后的文件,
修改后的文件可以导入MT4,也可以使用,就是不显示
下面是源代码
/*
Generated by EX4-TO-MQ4 decompiler DEMO V4.0.469.1 [-]
only first function is recovered,
visit website to get FULL decompiler version
Website: https://purebeam.biz
E-mail : purebeam@gmail.com
*/
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Blue
int gi_76 = 1;
extern bool ShowChartAlerts = FALSE;
extern string AlertEmailSubject = "";
extern int BarCount = 1000;
extern int SignalAtBlueDot = 3;
extern int SignalAtRedDot = 3;
extern bool ShowDotsOnScreen = FALSE;
int gi_112 = -999999;
string gs_116 = "FBSR Blue Support";
string gs_124 = "FBSR Red Resistance";
double gda_132[];
double gda_136[];
int gi_156;
int init() {
SetIndexArrow(0, 119);
SetIndexArrow(1, 119);
SetIndexStyle(0, DRAW_ARROW, STYLE_DOT, 1);
SetIndexDrawBegin(0, gi_156 - 1);
SetIndexBuffer(0, gda_132);
SetIndexLabel(0, "Resistance");
SetIndexStyle(1, DRAW_ARROW, STYLE_DOT, 1);
SetIndexDrawBegin(1, gi_156 - 1);
SetIndexBuffer(1, gda_136);
SetIndexLabel(1, "Support");
return (0);
}
void start() {
// demo limitation, visit http://purebeam.biz to get FULL decompiler version
}
void f0_1() {
// demo limitation, visit http://purebeam.biz to get FULL decompiler version
}
void f0_0(int ai_0) {
// demo limitation, visit http://purebeam.biz to get FULL decompiler version
}
修改后
//+------------------------------------------------------------------+
//| 蓝冰二元期权 |
//| 公孙家族 & 蓝骏系统|
//| 公孙晚城 http://ggg750075.blog.163.com/ |
//+------------------------------------------------------------------+
#property copyright "公孙晚城WeiXin:G7512G QQ:283089600"
"点击本行文字查看视频教程"
#property link "http://i.youku.com/gg75gg"
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Blue
int gi_76 = 1;
extern bool ShowChartAlerts = FALSE;
extern string AlertEmailSubject = "";
extern int BarCount = 1000;
extern int SignalAtBlueDot = 3;
extern int SignalAtRedDot = 3;
extern bool ShowDotsOnScreen = FALSE;
int gi_112 = -999999;
string gs_116 = "FBSR Blue Support";
string gs_124 = "FBSR Red Resistance";
double gda_132[];
double gda_136[];
int gi_156;
int init() {
SetIndexArrow(0, 119);
SetIndexArrow(1, 119);
SetIndexStyle(0, DRAW_ARROW, STYLE_DOT, 1);
SetIndexDrawBegin(0, gi_156 - 1);
SetIndexBuffer(0, gda_132);
SetIndexLabel(0, "Resistance");
SetIndexStyle(1, DRAW_ARROW, STYLE_DOT, 1);
SetIndexDrawBegin(1, gi_156 - 1);
SetIndexBuffer(1, gda_136);
SetIndexLabel(1, "Support");
return (0);
}
void start() {
// demo limitation, visit http://purebeam.biz to get FULL decompiler version
}
void f0_1() {
// demo limitation, visit http://purebeam.biz to get FULL decompiler version
}
void f0_0(int ai_0) {
// demo limitation, visit http://purebeam.biz to get FULL decompiler version
}
|