Page 1 of 1

Nihilist Trend Detector Values

Posted: Sat Apr 15, 2017 10:56 am
by zahid
i m trying to make ea using your Nihilist Trend detector but not able to get buffer
here is my code
please tell me how i get nihilist trend detector values

double td = iCustom(Symbol(), NULL, "Nihilist_TrendDetector", 0, 0);

Re: Nihilist Trend Detector Values

Posted: Sat Apr 15, 2017 8:48 pm
by mladen
zahid wrote: Sat Apr 15, 2017 10:56 am i m trying to make ea using your Nihilist Trend detector but not able to get buffer
here is my code
please tell me how i get nihilist trend detector values

double td = iCustom(Symbol(), NULL, "Nihilist_TrendDetector", 0, 0);
zahid

That indicator is not using buffers - only objects
Using iCustom() call on it will not help :?

Re: Nihilist Trend Detector Values

Posted: Sun Apr 16, 2017 7:51 pm
by zahid
okk thank u very much sir for your kind response please guide me how i get objects

Re: Nihilist Trend Detector Values

Posted: Sun Apr 16, 2017 9:07 pm
by mladen
zahid wrote: Sun Apr 16, 2017 7:51 pm okk thank u very much sir for your kind response please guide me how i get objects
Object can be get by names - use the ctrl+O to see the objects list and you shall see the names of objects used by that indicator
But you need to have the other indicator attached to the chart

Re: Nihilist Trend Detector Values

Posted: Mon Apr 17, 2017 3:52 am
by mladen
zahid wrote: Sat Apr 15, 2017 10:56 am i m trying to make ea using your Nihilist Trend detector but not able to get buffer
here is my code
please tell me how i get nihilist trend detector values

double td = iCustom(Symbol(), NULL, "Nihilist_TrendDetector", 0, 0);
Just out of curiosity : where in the rsioma did you try to get values from the trend detector?

Re: Nihilist Trend Detector Values

Posted: Mon Apr 17, 2017 7:36 pm
by zahid
thank u very much sir your kind response i try to get values from rsioma but not able to get this please check myRsioma if u get these values i send many messages to Nihilist but he is not replying me yet

Re: Nihilist Trend Detector Values

Posted: Mon Apr 17, 2017 8:36 pm
by mladen
zahid wrote: Mon Apr 17, 2017 7:36 pm thank u very much sir your kind response i try to get values from rsioma but not able to get this please check myRsioma if u get these values i send many messages to Nihilist but he is not replying me yet
zahid

Any normal iCustom() call to rsioma() should return normal values

Re: Nihilist Trend Detector Values

Posted: Thu May 10, 2018 8:47 am
by mbastem
zahid wrote: Sat Apr 15, 2017 10:56 am i m trying to make ea using your Nihilist Trend detector but not able to get buffer
here is my code
please tell me how i get nihilist trend detector values

double td = iCustom(Symbol(), NULL, "Nihilist_TrendDetector", 0, 0);

}

Code: Select all

int obj_total=ObjectsTotal(); 
  string name; 
  for(int i=0;i<obj_total;i++) 
    { 
     name = ObjectName(i); 
     //Print(i," object - ",name); 
     if (name=="Nihilist H10")  Print("Time Frame H1 Trend Value is "+ObjectDescription(name));//  H1 Trend
(Mouse right click object List)

Re: Nihilist Trend Detector Values

Posted: Thu May 10, 2018 8:46 pm
by mbastem
zahid wrote: Sat Apr 15, 2017 10:56 am i m trying to make ea using your Nihilist Trend detector but not able to get buffer
here is my code
please tell me how i get nihilist trend detector values

double td = iCustom(Symbol(), NULL, "Nihilist_TrendDetector", 0, 0);

Re: Nihilist Trend Detector Values

Posted: Thu May 10, 2018 8:57 pm
by pacois
mbastem wrote: Thu May 10, 2018 8:46 pm
How did you solve it? Thanks