Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
12
Nitin Raj  
netprep:

Nittin,

Just bought your indicator. How do I send the parameters if I call it from MQL5 via ICustom, specifically to change the filtering from Normal to Hard. Can you give me an example.

The one you gave only I think uses defaults.

Also, based on your experience, is there any particular timeframe your indicator behaves best on?

regards,


Jason


Hey Jason, Congratulations on your purchase.

You can change the filteration mode in EA using the following code:

 // define enumeration

enum F{

Normal = 1,

Hard = 2,

}; 

input F Filter_Mode = 1;  (1 for normal, 2 for hard)

The filter indicator works best on H1. Let me know if you have any question. 

Best regards,
Nitin

netprep  
Nitin Raj:

Hey Jason, Congratulations on your purchase.

You can change the filteration mode in EA using the following code:

 // define enumeration

enum F{

Normal = 1,

Hard = 2,

}; 

input F Filter_Mode = 1;  (1 for normal, 2 for hard)

The filter indicator works best on H1. Let me know if you have any question. 

Best regards,
Nitin


Hi Nitin - I tried inserting this code above my icustom to open the indicator. It returns an error on input F section (unexpected token).

Not sure what I am doing wrong, as I pasted it in as is.. am using MQL4.

Nitin Raj  
netprep:

Hi Nitin - I tried inserting this code above my icustom to open the indicator. It returns an error on input F section (unexpected token).

Not sure what I am doing wrong, as I pasted it in as is.. am using MQL4.


Please provide your code, its not possible to find the problem without actually looking at your code.

netprep  

Here it is:

enum F{

Normal = 1,

Hard = 2,

}; 

input F Filter_Mode = 1;

acb1=iCustom(NULL,60,"Market/ACB Trade Filter MT4",0,1);

acb2=iCustom(NULL,60,"Market/ACB Trade Filter MT4",1,1);

acb3=iCustom(NULL,60,"Market/ACB Trade Filter MT4",2,1);

acb4=iCustom(NULL,60,"Market/ACB Trade Filter MT4",3,1);

acb5=iCustom(NULL,60,"Market/ACB Trade Filter MT4",3,1);

acb5=iCustom(NULL,60,"Market/ACB Trade Filter MT4",3,1);


Error on input F as previous stated

Nitin Raj  
netprep:

Here it is:

enum F{

Normal = 1,

Hard = 2,

}; 

input F Filter_Mode = 1;

acb1=iCustom(NULL,60,"Market/ACB Trade Filter MT4",0,1);

acb2=iCustom(NULL,60,"Market/ACB Trade Filter MT4",1,1);

acb3=iCustom(NULL,60,"Market/ACB Trade Filter MT4",2,1);

acb4=iCustom(NULL,60,"Market/ACB Trade Filter MT4",3,1);

acb5=iCustom(NULL,60,"Market/ACB Trade Filter MT4",3,1);

acb5=iCustom(NULL,60,"Market/ACB Trade Filter MT4",3,1);


Error on input F as previous stated


Jason, you are doing it wrong. 

Here is the correct way:

#define val 1.5 

enum F{

Normal = 1,

Hard = 2,

}; 

input F Filter_Mode = 1;


if(iCustom(NULL,0,"Market/ACB Trade Filter",5000,Filter_Mode,0,1)==val)

{

 // Histogram is green, write your code here.

}


Let me know if you have any question. 

best regards,
Nitin

Eliofx92  

How does Trend Detector work? how accurate is it? does it use lagging indicators?

Павел  

Извиняюсь перед разработчиком. Действительно хороший продукт. Отзыв и оценку изменил.

Nitin Raj  
laser300:

Извиняюсь перед разработчиком. Действительно хороший продукт. Отзыв и оценку изменил.


Не нужно извиняться, большое спасибо за обзор.

Aleh71  

Здравствуйте.

Подскажите на каких ТФ и парах лучше использовать индикатор?

Спасибо.

Nitin Raj  
Aleh71:

Hello.

Prompt on what TF and pairs it is better to use the indicator?

Thank you.


M30 and H1 work best.

Aleh71  
Nitin Raj:

M30 and H1 work best.


Thanks

Charles Wanjau  
A must have indicator to give you winning signals especially when it's combined with the ACB Breakout Arrows.
Evolved  

For me it was a pretty good indicator in the past.
I even informed Nitin that some shady sites did  crack and sell his products.

But after i lost my login credentials for some time, and started to inquire how to get back on track suddenly KB did not recognize me anymore.

While in my platform it does show i purchased this indi. So what is it now Nitin or KeenBase software?
Is this how you treat your customers?

Nitin Raj  
Evolved #:

For me it was a pretty good indicator in the past.
I even informed Nitin that some shady sites did  crack and sell his products.

But after i lost my login credentials for some time, and started to inquire how to get back on track suddenly KB did not recognize me anymore.

While in my platform it does show i purchased this indi. So what is it now Nitin or KeenBase software?
Is this how you treat your customers?

Hi,

I’m really sorry to hear about the trouble you're facing. From what you’ve described, it sounds like you may have run out of activations. Just to clarify, on MQL5, once you’ve purchased a product, I cannot restrict or revoke your access in any way, everything is handled by the platform.

Please feel free to DM me directly, and I’ll do my best to help you get this sorted quickly.

Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
12