Re: Indicators with ON/OFF buttons
2732Hi my friends
Hope on/off button can be added to the attached mladen's indicator of Fibe pivots
.Many Thanks in advance & happy weekend
Hope on/off button can be added to the attached mladen's indicator of Fibe pivots
.Many Thanks in advance & happy weekend
Re: Indicators with ON/OFF buttons
2733You can have a look at this one and see if you like it & works in with your trading styletalaate wrote: Sat Nov 26, 2022 12:13 pm Hi my friends
Hope on/off button can be added to the attached mladen's indicator of Fibe pivots
.Many Thanks in advance & happy weekend
Fibo pivots.mq4
Re: Indicators with ON/OFF buttons
2734talaate wrote: Sat Nov 26, 2022 12:13 pm Hi my friends
Hope on/off button can be added to the attached mladen's indicator of Fibe pivots
.Many Thanks in advance & happy weekend
Fibo pivots.mq4
- These users thanked the author luo83868008 for the post:
- talaate
Re: How do you judge if you are responsible for 3 or 4 tasks when displaying data?
2735kvak wrote: Thu Nov 24, 2022 8:45 pm Dont understand, this question is for me? Is possible, you have some indicator with this so post it...
Code: Select all
int start()
{
recalc = false;
if (show_data)
{
//1 click button
ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_ON_color);
ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_unpressed);
start2();
handleButtonClicks();
}
else
if (show_data1)
{
//2 clicks on the button
ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color);
ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_pressed);
deinit2();
handleButtonClicks();
}
else
{
//3 clicks on the button
ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color);
ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_text);
handleButtonClicks();
deinit2();
}
return(0);
}
Re: Indicators with ON/OFF buttons
2736many thanksWoodyz wrote: Sat Nov 26, 2022 12:59 pm You can have a look at this one and see if you like it & works in with your trading style
Re: Indicators with ON/OFF buttons
2738Dear Banzai
can you please check this indicator price text value and triangle forming price are same ???. when i seen the chart, there is difference . kindly see the snap where i marked yellow line !!
if possible to make a line will be great.
"There is NO GOD higher than TRUTH" - Mahatma Gandhi
Re: How do you judge if you are responsible for 3 or 4 tasks when displaying data?
2739Sorry, dont know....luo83868008 wrote: Sat Nov 26, 2022 1:58 pmWhy can the button code be read only twice? thank you!Code: Select all
int start() { recalc = false; if (show_data) { //1 click button ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_ON_color); ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_unpressed); start2(); handleButtonClicks(); } else if (show_data1) { //2 clicks on the button ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color); ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_pressed); deinit2(); handleButtonClicks(); } else { //3 clicks on the button ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color); ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_text); handleButtonClicks(); deinit2(); } return(0); }