Attachments forums

List of attachments posted on this forum.


All files on forums: 136001

Re: MT4 Indicator requests and ideas

andrei-1, Mon Jan 09, 2023 7:23 pm

Trend direction && force index

I think it's the same thing. But the result is different. :eh:
I want to get rid of the loop, but it doesn't work. :sad:

Code: Select all

double absHighest(int i2){int i; double result=0;

   for(i=length-1;i>=0;i--){if(result<MathAbs(B3[i2+i])){result=MathAbs(B3[i2+i]);}}
   
   result=MathMax(MathAbs(ArrayMaximum(B3,length,i2)),MathAbs(ArrayMinimum(B3,length,i2)));
   
   return(result);
}
All files in topic