I have an indicator similar to
this one. Does anybody know how to pass it's values to EA? I've tried to use buffer, this way
double Trend[];
...
SetIndexBuffer(0,Trend);
...
Trend[0]=UpRating;
return(0);
}
I don't know if it works but I know that all indicator's inscription has gone. Any ideas about it?