Indicators with alerts/signal - page 1389

 
mntiwana:

Hi ace2e4

Do you think,this help you,it have some of options you said ............... "Currancy slope stregnth 1.0.7 mtf"

regards

ATTENTION: Video should be reuploaded


Sorry mntiwana I don't use this indicator, it uses averages and not the real strength like it is calculated, thanks. 
 
El_Nur:
Mladen
I applied it on Renko and it's taking 4 mins to load.

That is not a problem of the indicator

That is the problem of the renko you are using. Here is a renko example I used, and it took no time at all to load


 

PS: the renko indicator I used for testing

 
Hello, please make a MTF indicator two-tone to color has varied in a turn. And if you can add more arrows if you change the color.
(the second indicator of need for work first attached)
Thank you
Files:
SSRC_MTF.mq4  6 kb
SSRC.mq4  7 kb
 
Intrest1:
Hello, please make a MTF indicator two-tone to color has varied in a turn. And if you can add more arrows if you change the color.
(the second indicator of need for work first attached)
Thank you

Intrest1

Are you aware the ssrc repaints?

 
mladen:

Intrest1

Are you aware the ssrc repaints?

Yes, but it will be very convenient with two colors, when there is price reversal and the arrow is missing. In its original form it gives a lot of signals against the trend
 
Mladen Thanks for your help
 

Good Day Mladen and MrTools,

 Could you please have a look at the Camarilla Indicator when you have time. Although one can set the Fib lines to true or false in the inputs, they still remain on the charts.

Could you also confirm the logic is as per the screenshot.

Alternatively, is there another file which I am not aware of?

As usual, your neverending generosity and assistance is much appreciated 

Kind regards,

 

Will 

Files:
Camarilla.jpg  163 kb
 
Wildamaori:

Good Day Mladen and MrTools,

 Could you please have a look at the Camarilla Indicator when you have time. Although one can set the Fib lines to true or false in the inputs, they still remain on the charts.

Could you also confirm the logic is as per the screenshot.

Alternatively, is there another file which I am not aware of?

As usual, your neverending generosity and assistance is much appreciated 

Kind regards,

 

Will 

Will

Check these threads :

 

Hello,

mLaden or some coder please can help me? My indicator has a counter, but the font size of the counter is too small, and I want to set a bigger font size and customize the counter. I need to set function of creating labels, but I dont know mql enough to do that... The following is the code, if some generous soul can modify the code to suit my request I will be very grateful.

 

void show_stat()

{

int limit=MathMin(Bars-20,Bars_to_count);

int wins=0;

int loses=0;

int draws=0;

int all;

int prof_pips=0;

int lose_pips=0;



for(int i=limit;i>0;i--)

{

if(up_arr[i]!=EMPTY_VALUE)

{

if(Close[i]>Open[i]) {wins++;prof_pips+=int((Close[i]-Open[i])/point);}

if(Close[i]==Open[i]) draws++;

if(Close[i]<Open[i]) {loses++;lose_pips+=int((Open[i]-Close[i])/point);}

}

if(down_arr[i]!=EMPTY_VALUE)

{

if(Close[i]<Open[i]) {wins++;prof_pips+=int((Open[i]-Close[i])/point);}

if(Close[i]==Open[i]) draws++;

if(Close[i]>Open[i]) {loses++;lose_pips+=int((Close[i]-Open[i])/point);}

}

}

all=wins+draws+loses;

if(all==0) all=1;

  //Alert(-lose_pips-spread_minus_points*loses);

Comment("Total:"+string(wins+draws+loses)+" ","Wins:"+string(wins)+" ","Draws:"+string(draws)+" ","Loses:"+string(loses)+" ","PercentsWins:"+DoubleToString(100.0/(all)*wins,1)+"%",

"\n","Profit pips:",prof_pips-spread_minus_points*wins," Lose pips:",-lose_pips-spread_minus_points*loses," All pips:",prof_pips-spread_minus_points*wins+(-lose_pips-spread_minus_points*loses));

Reason: