Indicators with alerts/signal - page 1389
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi ace2e4
Do you think,this help you,it have some of options you said ............... "Currancy slope stregnth 1.0.7 mtf"
regards
Mladen
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
(the second indicator of need for work first attached)
Thank you
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?
Intrest1
Are you aware the ssrc repaints?
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
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));