عرض مشاركة واحدة
قديم 08-03-2013, 03:35 PM   المشاركة رقم: 19
الكاتب
MOVING_AVERAGE
عضو فضى
الصورة الرمزية MOVING_AVERAGE

البيانات
تاريخ التسجيل: Feb 2012
رقم العضوية: 8190
الدولة: algeria
العمر: 41
المشاركات: 2,223
بمعدل : 0.49 يوميا

الإتصالات
الحالة:
MOVING_AVERAGE غير متواجد حالياً
وسائل الإتصال:

كاتب الموضوع : MOVING_AVERAGE المنتدى : منتدى المؤشرات و الاكسبيرتات
افتراضي رد: ورشة برمجة مؤشر بافكار متجددة

الان نضيف الشروط

وبعد الشروط نضع الهيستوغرام كما شرحنا في دورة البرمجة

[PHP]
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Green


double ExtMapBuffer1[];
double ExtMapBuffer2[];

extern int Shift=0;

extern string l="_______level-RSI_______";
extern int RSI_buy_level=50;
extern int RSI_sell_level=50;
extern string m="_______Parameters-RSI_______";
extern int period_RSI=14;
extern int applied_price_RSI=0;
extern string symbol=" ";
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_HISTOGRAM,0,3);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_HISTOGRAM,0,3);
SetIndexBuffer(1,ExtMapBuffer2);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int x,i;
int counted_bars=IndicatorCounted();
if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
x=Bars-counted_bars;
if(symbol==" ")
{
symbol=Symbol();
}
for(i =x ; i>=0 ; i--)
{
int shift1=i+Shift;
double rsi=iRSI(symbol,0,14,0,shift1);
if(rsi>RSI_buy_level)
{
ExtMapBuffer1[i]=0;
ExtMapBuffer2[i]=rsi;
}

if(rsi<RSI_buy_level)
{
ExtMapBuffer1[i]=rsi;
ExtMapBuffer2[i]=0;
}


}

return(0);
}
//+------------------------------------------------------------------+
[/PHP]

وهكذا نكون انتهينا من اشرات RSI

وان شاء الله سنضيف اشرات اخري لكي يصبح المؤشر اقوي



التوقيع

نقره لعرض الصورة في صفحة مستقلة







عرض البوم صور MOVING_AVERAGE  
رد مع اقتباس
  #19  
قديم 08-03-2013, 03:35 PM
MOVING_AVERAGE MOVING_AVERAGE غير متواجد حالياً
عضو فضى
افتراضي رد: ورشة برمجة مؤشر بافكار متجددة

الان نضيف الشروط

وبعد الشروط نضع الهيستوغرام كما شرحنا في دورة البرمجة

[PHP]
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Green


double ExtMapBuffer1[];
double ExtMapBuffer2[];

extern int Shift=0;

extern string l="_______level-RSI_______";
extern int RSI_buy_level=50;
extern int RSI_sell_level=50;
extern string m="_______Parameters-RSI_______";
extern int period_RSI=14;
extern int applied_price_RSI=0;
extern string symbol=" ";
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_HISTOGRAM,0,3);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_HISTOGRAM,0,3);
SetIndexBuffer(1,ExtMapBuffer2);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int x,i;
int counted_bars=IndicatorCounted();
if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
x=Bars-counted_bars;
if(symbol==" ")
{
symbol=Symbol();
}
for(i =x ; i>=0 ; i--)
{
int shift1=i+Shift;
double rsi=iRSI(symbol,0,14,0,shift1);
if(rsi>RSI_buy_level)
{
ExtMapBuffer1[i]=0;
ExtMapBuffer2[i]=rsi;
}

if(rsi<RSI_buy_level)
{
ExtMapBuffer1[i]=rsi;
ExtMapBuffer2[i]=0;
}


}

return(0);
}
//+------------------------------------------------------------------+
[/PHP]

وهكذا نكون انتهينا من اشرات RSI

وان شاء الله سنضيف اشرات اخري لكي يصبح المؤشر اقوي




رد مع اقتباس