النتائج 1 إلى 5 من 5
الموضوع: مؤشر لا يظهر بالشكل الصحيح
- 16-10-2017, 03:53 PM #1
مؤشر لا يظهر بالشكل الصحيح
المؤشر لا يعمل بالشكل صحيح فلماذا .. هل يوجد شىء اخر اظيفه في المنصه او يحتاج الى تعديل او اصلاح
مرفق لكم صوره للشارت وايضا المؤشر
- 16-10-2017, 05:01 PM #2كود PHP:
#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 clrGreen
#property indicator_color2 clrRed
//----
extern int RSIPeriod1=14;
extern int RSIPeriod2=28;
double ind_buffer1[];
double MABuffer1[];
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int OnInit()
{
SetIndexStyle(0, DRAW_LINE, STYLE_SOLID, 2);
SetIndexStyle(1, DRAW_LINE, STYLE_SOLID, 2);
//----
SetIndexBuffer(0, ind_buffer1);
SetIndexBuffer(1, MABuffer1);
//----
IndicatorShortName("Def RSI");
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
//---
double RSI1,RSI2;
int limit, i, counted_bars = IndicatorCounted();
//----
if(counted_bars < 0)
return(-1);
//----
if(counted_bars > 0)
counted_bars--;
limit = Bars - counted_bars;
//----
for(i = limit - 1; i >= 0; i--)
{
RSI1 = iRSI(NULL, 0, RSIPeriod1, PRICE_CLOSE, i);
RSI2 = iRSI(NULL, 0, RSIPeriod2, PRICE_CLOSE, i);
MABuffer1[i] = (RSI1-RSI2);
}
for(i = 0; i < Bars; i++)
{
ind_buffer1[i] = iMAOnArray(MABuffer1,0,14,0,MODE_SMA,i);
}
for(i = 0; i < Bars; i++)
{
//MABuffer1[i]=0;
}
//--- return value of prev_calculated for next call
return(rates_total);
}
//+------------------------------------------------------------------+
- 16-10-2017, 05:01 PM #3
- 16-10-2017, 05:22 PM #4
اولا اشكرك
ولكن قسم بالله مو فاهم وش سويت .. اخوي فهمنا او ارسل لي المؤشر السليم
- 16-10-2017, 05:30 PM #5
اشكرك عزيز لقد قمت بنسخ المعلومات داخل بيانات المؤشر واعدة تركيبه في الميتاتريدر
شكرا اخوي