
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 Mladen - thank you for your prompt response. I do not have the knowledge to answer you directly...so I will attach what I have. Both of these seem to do the same thing but have been named differently.
kduncan
Both are decompiled versions of a repainting version of sidus indicator. If you want to use non-repainting sidus use the one from this post : https://www.mql5.com/en/forum/180648/page331 (it already has alerts built in)
Hi Mladen - thank you for your prompt response. I do not have the knowledge to answer you directly...so I will attach what I have. Both of these seem to do the same thing but have been named differently.
PS: the multi time frame version (alerts included) of a correctly coded sidus indicator you can find at this post : https://www.mql5.com/en/forum/173574/page280
Is it possible to add this function. I find it very useful. Regards!
/ ------------------------------------------------- ----------------------------
/ / Function: NextHigherTF ()
/ / Description: Select the next higher time-frame.
/ / Note: M15 and M30 both select H1 as next higher TF.
/ / ------------------------------------------------ -----------------------------
NextHigherTF int (int iPeriod) {
if (iPeriod == 0) iPeriod = Period ();
switch (iPeriod) {
PERIOD_M1 houses: return (PERIOD_M5);
PERIOD_M5 houses: return (PERIOD_M15);
PERIOD_M15 houses: return (PERIOD_H1);
PERIOD_M30 houses: return (PERIOD_H1);
PERIOD_H1 houses: return (PERIOD_H4);
PERIOD_H4 houses: return (PERIOD_D1);
PERIOD_D1 houses: return (PERIOD_W1);
PERIOD_W1 houses: return (PERIOD_MN1);
PERIOD_MN1 houses: return (PERIOD_MN1);
default: return (Period ());
}
}
It's about this indicator. This function MTF is needed to built it a .ea.
Is it possible to add this function. I find it very useful. Regards!
/ ------------------------------------------------- ----------------------------
/ / Function: NextHigherTF ()
/ / Description: Select the next higher time-frame.
/ / Note: M15 and M30 both select H1 as next higher TF.
/ / ------------------------------------------------ -----------------------------
NextHigherTF int (int iPeriod) {
if (iPeriod == 0) iPeriod = Period ();
switch (iPeriod) {
PERIOD_M1 houses: return (PERIOD_M5);
PERIOD_M5 houses: return (PERIOD_M15);
PERIOD_M15 houses: return (PERIOD_H1);
PERIOD_M30 houses: return (PERIOD_H1);
PERIOD_H1 houses: return (PERIOD_H4);
PERIOD_H4 houses: return (PERIOD_D1);
PERIOD_D1 houses: return (PERIOD_W1);
PERIOD_W1 houses: return (PERIOD_MN1);
PERIOD_MN1 houses: return (PERIOD_MN1);
default: return (Period ());
}
}dacian21
Add it to what ?
Hello, can someone program an "alertoncurrent" type of alert on teh attached indicator?
EMA 5 10 34 Crossoverl - Download - 4shared
I can't find cyber cycle indicator who can help me and add alert? thank you
I find it ,who can help me add alert,thank you
Hello, can someone program an "alertoncurrent" type of alert on teh attached indicator? EMA 5 10 34 Crossoverl - Download - 4shared
Camisa, think this one here https://www.mql5.com/en/forum/general has that option
I can't find cyber cycle indicator who can help me and add alert? thank you
Hello Nbasuperstar, added the alerts