Hi guys
I have a coding that could show high time frame value (like H1) on lower time frame (M5), the attached file is xx.mq4, but it is just made for IMA, I could like to chage it to make it work for the indicator "UltradeFX - Master Entry.ex4", but I don't know how to do that. I am not good at coding, if anyone could help, it will be appreciated.
thanks
Read the H1 with iCustom.
Help you with what? You haven't stated a problem, you stated a want. Show us your attempt (using the CODE button) and state the nature of your difficulty.
How To Ask Questions The Smart Way. (2004)
Prune pointless queries.
You have only four choices:
-
Search for it (CodeBase or Market). Do you expect us to do your research for you?
- Try asking at:
- Coding help - MQL4 programming forum
- Requests & Ideas - MQL4 programming forum
- Make It No Repaint Please! - MQL4 programming forum
- MT4 to MT5 code converter - MQL5 programming forum
- Please fix this indicator or EA - General - MQL5 programming forum
- Requests & Ideas (MQL5 only!) - Expert Advisors and Automated Trading - MQL5 programming forum
- Indicator to EA Free Service - General - MQL5 programming forum
- I will write an advisor free of charge - Expert Advisors and Automated Trading - MQL5 programming forum
- I will write you an advisor for free - Trading Systems - MQL5 programming forum
- I will write the indicator for free - MQL4 programming forum
-
MT4: Learn to code it.
MT5: Begin learning to code it.If you don't learn MQL4/5, there is no common language for us to communicate. If we tell you what you need, you can't code it. If we give you the code, you don't know how to integrate it into your code.
I need HEEEELP, please, it's URGENT...really ! - General - MQL5 programming forum (2017) -
Or pay (Freelance) someone to code it. Top of every page is the link Freelance.
Hiring to write script - General - MQL5 programming forum (2019)
We're not going to code it for you (although it could happen if you are lucky or the problem is interesting.) We are willing to help you when you post your attempt (using CODE button) and state the nature of your problem.
No free help (2017)
Hi
You need to set 4 buffer - like the indicator has. So instead of BufferMA set those:
#property indicator_buffers 4 double Buffer1[]; double Buffer2[]; double Buffer3[]; double Buffer4[]; Then in the OnInit set indices for each buffer: SetIndexBuffer(0,Buffer1); SetIndexBuffer(1,Buffer2); SetIndexBuffer(2,Buffer3); SetIndexBuffer(3,Buffer4)
And then you can set values in the OnCalculate as (here default parameters of the indicator would be used – if you want to use some other parameters – write them in the i|Custom function after the name of the indicator – check the documentation how to use iCustom):
int mtfBar = iBarShift(Symbol(),InpTimeframe,time[i],false); BufferMA[i]= iMA(Symbol (),InpTimeframe,InpMAPeriod,0, InpMethod, InpAppliedPrice,mtfBar); Buffer1[i] = iCustom(Symbol(),InpTimeframe, "UltradeFX_-_Master_Entry", 0, mtfBar); Buffer2[i] = iCustom(Symbol(),InpTimeframe, "UltradeFX_-_Master_Entry", 1, mtfBar); Buffer3[i] = iCustom(Symbol(),InpTimeframe, "UltradeFX_-_Master_Entry", 2, mtfBar); Buffer4[i] = iCustom(Symbol(),InpTimeframe, "UltradeFX_-_Master_Entry", 3, mtfBar);
Best Regards

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi guys
I have a coding that could show high time frame value (like H1) on lower time frame (M5), the attached file is xx.mq4, but it is just made for IMA, I could like to chage it to make it work for the indicator "UltradeFX - Master Entry.ex4", but I don't know how to do that. I am not good at coding, if anyone could help, it will be appreciated.
thanks