2楼
高手都不进来呢:041:
命里有时终须有,命里无时莫强求。
发表于:2008-10-09 01:41只看该作者
3楼
#property indicator_chart_window
#property indicator_buffers 5
#property indicator_color1 White
#property indicator_color2 Yellow
#property indicator_color3 Red
#property indicator_color4 Yellow
#property indicator_color5 Red
double MMM,HHH,LLL,buy,sell;
extern int SMA=20;
extern int space=15;
void init() {
SetIndexBuffer(0,MMM);
SetIndexBuffer(1,HHH);
SetIndexBuffer(2,LLL);
SetIndexBuffer(3,buy);
SetIndexBuffer(4,sell);
SetIndexStyle(0,DRAW_LINE,0);
SetIndexStyle(1,DRAW_LINE,0);
SetIndexStyle(2,DRAW_LINE,0);
SetIndexStyle(3,DRAW_ARROW);
SetIndexStyle(4,DRAW_ARROW);
SetIndexArrow(3,233);
SetIndexArrow(4,234);
}
void start() {
int counted_bars=IndicatorCounted();
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
for(int t=0; t=HHH[t] && High[t+1]LLL[t+1]) sell[t]=HHH[t]+50*Point;
}
}
发表于:2008-10-09 01:45只看该作者
4楼
多空信号特多,相当于自杀工具
xh.gif
