Attachments forums

List of attachments posted on this forum.


All files on forums: 134215

Re: MT4 Indicator requests and ideas

Csj179t, Fri Aug 28, 2020 8:49 pm

Hi mrtools and all them coders out here,

Firstly i posed this at "Coding help" .. two days ago. But probably no one checks that topic.

Im stuck with getting values in the EA from the indicator "waddah attar explosion averages nmc alerts 2_2.ex4" through iCustom() .
I did this before with others was not a big deal.
Here it just getting values on first bar and then just freezes... and values not changing while EA running...

I checked if i could iCustom() the same but renamed indicator in the main indicator, and comment its values... it worked...

Indicator and ea is attached.
Help me please!!!

Sincerely,
Sergei

Code: Select all

double one = iCustom(NULL,0,"waddah attar explosion averages nmc alerts 2_2.ex4",0,0);
double two = iCustom(NULL,0,"waddah attar explosion averages nmc alerts 2_2.ex4",1,0);

int OnInit()
  {
   return(INIT_SUCCEEDED);
  }

void OnDeinit(const int reason)
  {
  }

void OnTick()
  {
Comment(one, "  ", two);   
  }
All files in topic