发表于:2008-03-06 03:21只看该作者
2楼
[CODE]
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Aqua
#property indicator_level1 30
#property indicator_level2 70
extern int RSI=12;
extern string 商品="GBPUSD";
double ind_buffer;
int init()
{
SetIndexBuffer(0,ind_buffer);
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,1);
SetIndexDrawBegin(1,ind_buffer);
return(0);
}
int start()
{
int limit;
int counted_bars=IndicatorCounted();
if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
for(int i=0; i
顺势
发表于:2008-03-06 04:12只看该作者
3楼
操作图示
[ 本帖最后由 秃鹫 于 2008-3-6 12:25 编辑 ]
操作.gif
