несколько раз уже обсуждали здесь эту проблему. для того чтобы рассчитать индикатор на буфере (в Вашем случае - iMAOnArray), этот самый буфер уже должен быть рассчитан. то есть, необходимо как минимум 2 цикла расчёта. посмотрите наш пример индикатора MACD
Все исправил, спасибо. Просто иногда трудно удержать в голове все принципы работы mql-4 в голове. А в явном виде в описании нет.
Если кому интересно, могут глянуть - что этот индикатор рисует.
http://forum.viac.ru/viewtopic.php?t=2468
http://forum.viac.ru/viewtopic.php?t=2468
А чего он там рисует?
Глянул, не увидел ..
Глянул, не увидел ..
Забыл я, что там зарегистрованные могут только смотреть. Вот еще ссылка
http://www.alpari-idc.ru/ru/forum/viewtopic.php?p=120922#120922
http://www.alpari-idc.ru/ru/forum/viewtopic.php?p=120922#120922
Код там не выложен, забыл.
//+------------------------------------------------------------------+
//| Median.mq4 |
//| Copyright © 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Rosh"
#property link "http://www.metaquotes.net"
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Aqua
#property indicator_color2 Aqua
#property indicator_color3 Yellow
#property indicator_color4 Red
extern int per=3;
extern int Dep=300;
extern double K_ATR=2.0;
extern int Period_ATR=13;
//---- indicator buffers
double UpBuffer[];
double DownBuffer[];
double MidlleBuffer[];
double SmoothMedian[];
//----
int ExtCountedBars=0;
int LastCalcTime=0;
int LastPeriod=0;
int shift=0;
double mmin=0;
double mmax=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
SetIndexStyle(0,DRAW_LINE);
SetIndexShift(0,0);
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));
SetIndexStyle(1,DRAW_LINE);
SetIndexShift(1,0);
SetIndexStyle(2,DRAW_LINE);
SetIndexShift(2,0);
SetIndexStyle(3,DRAW_LINE);
SetIndexShift(3,0);
SetIndexBuffer(0,UpBuffer);
SetIndexBuffer(1,DownBuffer);
SetIndexBuffer(2,MidlleBuffer);
SetIndexBuffer(3,SmoothMedian);
SetIndexLabel(0,"Hi");
SetIndexLabel(1,"Low");
SetIndexLabel(2,"Midlle");
SetIndexLabel(3,"Signal");
//---- indicators
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//---- TODO: add your code here
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
double ATR;
int limit;
int counter;
int counted_bars=IndicatorCounted();
if(counted_bars<0) return(-1);
//---- TODO: add your code here
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
for (shift=limit;shift>=1;shift-- )
{
mmin=Low[Lowest(NULL,0,MODE_LOW,per,shift)];
mmax=High[Highest(NULL,0,MODE_HIGH,per,shift)];
ATR=0;
for (counter=Period_ATR;counter>=1;counter--)
{
ATR=ATR+MathAbs(High[shift+counter]-Low[shift+counter]);
}
ATR=ATR/Period_ATR;
MidlleBuffer[shift-1]=(mmax+mmin)/2;
UpBuffer[shift-1]=MidlleBuffer[shift-1]+ATR*K_ATR;
DownBuffer[shift-1]=MidlleBuffer[shift-1]-ATR*K_ATR;
}
for (shift=limit;shift>=1;shift-- )
{SmoothMedian[shift-1]=iMAOnArray(MidlleBuffer,Bars,5,0,MODE_EMA,shift-1);
}
//----
//return;
}
//+------------------------------------------------------------------+
Вы упускаете торговые возможности:
- Бесплатные приложения для трейдинга
- 8 000+ сигналов для копирования
- Экономические новости для анализа финансовых рынков
Регистрация
Вход
Вы принимаете политику сайта и условия использования
Если у вас нет учетной записи, зарегистрируйтесь
//+------------------------------------------------------------------+ //| Median.mq4 | //| Copyright © 2004, MetaQuotes Software Corp. | //| https://www.metaquotes.net | //+------------------------------------------------------------------+ #property copyright "Rosh" #property link "https://www.metaquotes.net" #property indicator_chart_window #property indicator_buffers 4 #property indicator_color1 Aqua #property indicator_color2 Aqua #property indicator_color3 Yellow #property indicator_color4 Red extern int per=3; extern int Dep=300; extern double K_ATR=2.0; extern int Period_ATR=13; //---- indicator buffers double UpBuffer[]; double DownBuffer[]; double MidlleBuffer[]; double SmoothMedian[]; //---- int ExtCountedBars=0; int LastCalcTime=0; int LastPeriod=0; int shift=0; double mmin=0; double mmax=0; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { SetIndexStyle(0,DRAW_LINE); SetIndexShift(0,0); IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)); SetIndexStyle(1,DRAW_LINE); SetIndexShift(1,0); SetIndexStyle(2,DRAW_LINE); SetIndexShift(2,0); SetIndexStyle(3,DRAW_LINE); SetIndexShift(3,0); SetIndexBuffer(0,UpBuffer); SetIndexBuffer(1,DownBuffer); SetIndexBuffer(2,MidlleBuffer); SetIndexBuffer(3,SmoothMedian); SetIndexLabel(0,"Hi"); SetIndexLabel(1,"Low"); SetIndexLabel(2,"Midlle"); SetIndexLabel(3,"Signal"); //---- indicators //---- return(0); } //+------------------------------------------------------------------+ //| Custor indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- TODO: add your code here //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { double ATR; int counter; int counted_bars=IndicatorCounted(); //---- TODO: add your code here for (shift=Bars-per;shift>=1;shift-- ) { mmin=Low[Lowest(NULL,0,MODE_LOW,per,shift)]; mmax=High[Highest(NULL,0,MODE_HIGH,per,shift)]; ATR=0; for (counter=Period_ATR;counter>=1;counter--) { ATR=ATR+MathAbs(High[shift+counter]-Low[shift+counter]); } ATR=ATR/Period_ATR; MidlleBuffer[shift-1]=(mmax+mmin)/2; UpBuffer[shift-1]=MidlleBuffer[shift-1]+ATR*K_ATR; DownBuffer[shift-1]=MidlleBuffer[shift-1]-ATR*K_ATR; SmoothMedian[shift-1]=iMAOnArray(MidlleBuffer,Bars,5,0,MODE_EMA,shift-1); } //---- //return; } //+------------------------------------------------------------------+Красная линия у меня как-то странно себя вела, то не появлялась, то появлялась - но не совсем как я ожидал. В итоге пришлось сделать этот конечный вариант (где индикатор расчитывается на все бары).
Вроде нарисовалось как надо, можно и успокоиться и потом подумать, как сделать более оптимально(чтобы на каждом тике не нагружать процессор).
Но тут опять картинка сломалась и красная (сглаженная линия ) опять куда-то уехала. Стал отматывать график вперед-назад - вообще исчезла . Потом опять появилась и опять не там где должна быть.
В общем, такие дела.