Hi,
I've been using an a MTF Stochastics indicator created by mladen for some time now, I was wondering if there is any chance to add an "alertoncurrent" function to the indicator.
Thank you very much in advance : )
Re: Coding Help
#1132Hello BanzaiJNS247 wrote: ↑Fri Jul 10, 2020 10:05 amHi
Need assistance in adding a button on the following indicator
I have manged to create the button, the control of the line (Show data) is creating all sorts of problems.
The code added by me is delineated by //************
Would you be able to assist?
Thanks in advance.
I have managed to create the button, no errors on the compile, however, I'm missing the control of the supertrend line, I can switch the state on the button but it does not control anything.
Button code copied from day_seperator_2_2 button
delineated by //************
Would you be able to assist?
I'll keep trying I have managed to a a button before just got to find the right spot for the code :-)
Thanks in advance.
-
- SuperTrend nrp new format (mtf + arrows + alerts) - Button_v2.mq4
- (19.07 KiB) Downloaded 132 times
Re: Coding Help
#1133SuperTrend nrp new format (mtf + arrows + alerts).mq4JNS247 wrote: ↑Tue Jul 14, 2020 12:50 pmHello BanzaiJNS247 wrote: ↑Fri Jul 10, 2020 10:05 amHi
Need assistance in adding a button on the following indicator
I have manged to create the button, the control of the line (Show data) is creating all sorts of problems.
The code added by me is delineated by //************
Would you be able to assist?
Thanks in advance.
I have managed to create the button, no errors on the compile, however, I'm missing the control of the supertrend line, I can switch the state on the button but it does not control anything.
Button code copied from day_seperator_2_2 button
delineated by //************
Would you be able to assist?
I'll keep trying I have managed to a a button before just got to find the right spot for the code :-)
Thanks in advance.
You see, this indicator use the OnCalculate function.
All of our templates use the start() function.
Now the only template that use the OnCalculate function is mrtools template
"ma - with button.mq4"
which is at
viewtopic.php?p=1295414482#p1295414482
Attached is a working indicator based on mrtools template.
It's not over yet.
When we switch to mtf, this indicator doesn't work.
the state of the button such as on or off
doesn't pass along to the mtf
-------------------------------------------------------------
There's more.
Assuming you can make the mtf function to work,
the next step is to make 8 mtf buttons like these:
[M1 Supertrend] [M5 Supertrend] [M15 Supertrend] [M30 Supertrend] [H1 Supertrend] [H4 Supertrend] [D1 Supertrend] [W1 Supertrend] [MN Supertrend]
Then, we will another issue.
The UniqueButtonID doesn't pass along to the right button.
All coders are busy so will take a while to get the OnCalculate template.
-
- ma - with button.mq4
- (7.31 KiB) Downloaded 118 times
-
- SuperTrend nrp new format (mtf + arrows + alerts) button.mq4
- (15.68 KiB) Downloaded 113 times
To Reduce CPU and RAM usage -- MT4 > Tools > Options > Chart --->> Decrease "max bars in history" and "max bars in chart" (My setting is 5000)
Re: Coding Help
#1134
Much appreciated will give it a go and see where I end up Thanks againBanzai wrote: ↑Tue Jul 14, 2020 3:47 pmSuperTrend nrp new format (mtf + arrows + alerts).mq4JNS247 wrote: ↑Tue Jul 14, 2020 12:50 pm
Hello Banzai
I have managed to create the button, no errors on the compile, however, I'm missing the control of the supertrend line, I can switch the state on the button but it does not control anything.
Button code copied from day_seperator_2_2 button
delineated by //************
Would you be able to assist?
I'll keep trying I have managed to a a button before just got to find the right spot for the code :-)
Thanks in advance.
You see, this indicator use the OnCalculate function.
All of our templates use the start() function.
Now the only template that use the OnCalculate function is mrtools template
"ma - with button.mq4"
which is at
viewtopic.php?p=1295414482#p1295414482
Attached is a working indicator based on mrtools template.
It's not over yet.
When we switch to mtf, this indicator doesn't work.
the state of the button such as on or off
doesn't pass along to the mtf
-------------------------------------------------------------
There's more.
Assuming you can make the mtf function to work,
the next step is to make 8 mtf buttons like these:
[M1 Supertrend] [M5 Supertrend] [M15 Supertrend] [M30 Supertrend] [H1 Supertrend] [H4 Supertrend] [D1 Supertrend] [W1 Supertrend] [MN Supertrend]
Then, we will another issue.
The UniqueButtonID doesn't pass along to the right button.
All coders are busy so will take a while to get the OnCalculate template.
Re: Coding Help
#1135Hi,
ADX angle (above 40) is most important in any trades, Will it be possible to code when ADX divergence significant
1) when all (+DI and -DI) cross each other/originate at the same point at a particular period (15)
2) and when the ADX angle is above 40
Any arrow/indication at the ADX origin (when the angle reaches 40) will be fine to scan through many scripts,
TIA
Mannan
ADX angle (above 40) is most important in any trades, Will it be possible to code when ADX divergence significant
1) when all (+DI and -DI) cross each other/originate at the same point at a particular period (15)
2) and when the ADX angle is above 40
Any arrow/indication at the ADX origin (when the angle reaches 40) will be fine to scan through many scripts,
TIA
Mannan
Re: Coding Help
#1136It's here. A template to handle the OnCalculate function.
By comparing the two files, we can make a template.
And then, it's just a matter of copy and paste to make other indicators.
The coder is Mario Jemic. His link is in the code.
-
- All Pivot Points button.mq4
- (51.32 KiB) Downloaded 113 times
-
- All Pivot Points.mq4
- (45.44 KiB) Downloaded 121 times
To Reduce CPU and RAM usage -- MT4 > Tools > Options > Chart --->> Decrease "max bars in history" and "max bars in chart" (My setting is 5000)
Re: Coding Help
#1137Hello Banzai, I will attempt the on_off button on the MTF Fractal as this one use the start function and the template of the day seperator is fairly clearBanzai wrote: ↑Tue Jul 14, 2020 3:47 pmSuperTrend nrp new format (mtf + arrows + alerts).mq4JNS247 wrote: ↑Tue Jul 14, 2020 12:50 pm
Hello Banzai
I have managed to create the button, no errors on the compile, however, I'm missing the control of the supertrend line, I can switch the state on the button but it does not control anything.
Button code copied from day_seperator_2_2 button
delineated by //************
Would you be able to assist?
I'll keep trying I have managed to a a button before just got to find the right spot for the code :-)
Thanks in advance.
You see, this indicator use the OnCalculate function.
All of our templates use the start() function.
Now the only template that use the OnCalculate function is mrtools template
"ma - with button.mq4"
which is at
viewtopic.php?p=1295414482#p1295414482
Attached is a working indicator based on mrtools template.
It's not over yet.
When we switch to mtf, this indicator doesn't work.
the state of the button such as on or off
doesn't pass along to the mtf
-------------------------------------------------------------
There's more.
Assuming you can make the mtf function to work,
the next step is to make 8 mtf buttons like these:
[M1 Supertrend] [M5 Supertrend] [M15 Supertrend] [M30 Supertrend] [H1 Supertrend] [H4 Supertrend] [D1 Supertrend] [W1 Supertrend] [MN Supertrend]
Then, we will another issue.
The UniqueButtonID doesn't pass along to the right button.
All coders are busy so will take a while to get the OnCalculate template.
will post it once I get it working on the On_Off post
Regards
Re: Coding Help
#1138[/quote]
Hello Banzai, I will attempt the on_off button on the MTF Fractal as this one use the start function and the template of the day seperator is fairly clear
will post it once I get it working on the On_Off post
Regards
[/quote]
Hello Banzai
It is doing my head in, at one stage I managed to get the button on the chart, now it is nowhere to be found.
Like a challange but not getting this to work
I have used the day_seperator_2_2 code, one difference I noticed was the init and OnInit the start functions are the same and so the deinit, reading the MQL Help reference is just blowing my mind.
it compile without errors
I'll leave it to the pros.
When you have time thanks in advance.
JNS
Hello Banzai, I will attempt the on_off button on the MTF Fractal as this one use the start function and the template of the day seperator is fairly clear
will post it once I get it working on the On_Off post
Regards
[/quote]
Hello Banzai
It is doing my head in, at one stage I managed to get the button on the chart, now it is nowhere to be found.
Like a challange but not getting this to work
I have used the day_seperator_2_2 code, one difference I noticed was the init and OnInit the start functions are the same and so the deinit, reading the MQL Help reference is just blowing my mind.
it compile without errors
I'll leave it to the pros.
When you have time thanks in advance.
JNS
-
- MTF_Fractal - Button_v2.mq4
- (27.09 KiB) Downloaded 174 times
Re: Coding Help
#1139We still have some problems with mtf
Here are the latest code releases on July 15th, 2020
If we use mtf, sometime the buttons disappear.
Sometime, not all the time.
So I think it's MT4 fault.
-
- High - low trend 3.01(mtf + alerts) button.mq4
- (16.02 KiB) Downloaded 138 times
-
- High - low trend 3.01(mtf + alerts).mq4
- (12.26 KiB) Downloaded 138 times
-
To Reduce CPU and RAM usage -- MT4 > Tools > Options > Chart --->> Decrease "max bars in history" and "max bars in chart" (My setting is 5000)
Re: Coding Help
#1140Thank you so much dearblonde wrote: ↑Thu Jul 09, 2020 7:28 amtry...ashish4forex wrote: ↑Wed Jul 08, 2020 12:01 amhello coder can u pls remove the alert i am attaching the mt4 he can alert constantly and also hang the mt4 pls help us fix this issue thank you
-
Similar Topics
-
1 Replies
374 Views -
0 Replies
493 Views
-