发表于:2009-05-28 08:38只看该作者
2楼
谁有啊,我也想要啊
韬客社区www.talkfx.co
发表于:2009-06-01 06:21只看该作者
3楼
//+------------------------------------------------------------------+
//| BBI.mq4 |
//| djsk |
//| |
//+------------------------------------------------------------------+
#property copyright "djsk"
#property link ""
#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Red
double bbi;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexBuffer(0, bbi);
SetIndexStyle(0,DRAW_LINE);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int limit=Bars-IndicatorCounted();
int i;
//----
for(i=0; i
韬客社区www.talkfx.co
发表于:2009-06-16 12:48只看该作者
4楼
顶~~~~~~~~~~~~~