السلام عليكم
ارجو من الاخوان المساعدة
كيف نكتب امر
مجموع اغلاقات (10) شموع قسمة (10) للدالة ستارت
وما هي الحلقة المناسبة للمصفوفة؟
[PHP]#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Red
double BufLength1[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexBuffer(0,BufLength1);
SetIndexStyle(0,DRAW_LINE);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
//----
for(int )
{
BufLength1[i]=(مجموع اغلاق(10)شموع)/10;
}
//----
return(0);
}
//+------------------------------------------------------------------+
[/PHP]