where iMA take is data from?

 

hello, i like to know where the platform take the data when i use iMA function?
i delete all my ex4/mq4/mqh files from the platform, but when i call the iMA function from new indicator its still working...

where the data is comeing from? 

tnx

 
  1. ex4 indicators would be called using iCustom. Detailed explanation of iCustom - MQL4 forum
  2. ima and the other technical indicators are build in to the terminal; there is no from.



 
WHRoeder:
  1. ex4 indicators would be called using iCustom. Detailed explanation of iCustom - MQL4 forum
  2. ima and the other technical indicators are build in to the terminal; there is no from.



i see...
is there a way to disble/delete that iMA function from working?

 
tomas1983:

i see...
is there a way to disble/delete that iMA function from working?

 

Yes, uninstall MT4.
 
tomas1983: is there a way to disble/delete that iMA function from working?
Even if you could, why would you want to? You can always code your own functions.
double SMA(int length, int shift){
   double sum = 0; 
   int iBar=length+shift; while(iBar > shift) sum += Close[--iBar];
   return sum / length;
}
Reason: