DiDi:
I have an imaginary code -
First question :
I have to get just "bid" and "ask" value for each tick, it's faster with the "MqlTick" structure, or "SymbolInfoDouble" ?
Second question :
I have (for example) 3 indicator : a moving average "MA" - an average true range "ATR" - an average directional movement index "ADX", it's faster to use the handle "iMA" -"iATR" - "iADX", or write their codes to my program [it's possible to write their code in just one program?] ?
Third question :
I have 1 or more custom indicators : it's faster to use the handle "iCustom", or write their codes to my program?
I hope you can understand what I mean. I'm not so good with english.
Thanks whoever aswer in advise.
I have an imaginary code -
First question :
I have to get just "bid" and "ask" value for each tick, it's faster with the "MqlTick" structure, or "SymbolInfoDouble" ?
Second question :
I have (for example) 3 indicator : a moving average "MA" - an average true range "ATR" - an average directional movement index "ADX", it's faster to use the handle "iMA" -"iATR" - "iADX", or write their codes to my program [it's possible to write their code in just one program?] ?
Third question :
I have 1 or more custom indicators : it's faster to use the handle "iCustom", or write their codes to my program?
I hope you can understand what I mean. I'm not so good with english.
Thanks whoever aswer in advise.
Faster than what?? speed of light?
- https://docs.mql4.com/predefined // Predefined variable
- https://docs.mql4.com/indicators // Pre programmed custom indicator
- Depend, if you have the mql file for custom indicator, and it's favorable to transfer into your program.
otherwise if you don't, just use iCustom.

Documentation on MQL5: Technical Indicators
- www.mql5.com
Technical Indicators - Reference on algorithmic/automated trading language for MetaTrader 5

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
First question :
I have to get just "bid" and "ask" value for each tick, it's faster with the "MqlTick" structure, or "SymbolInfoDouble" ?
Second question :
I have (for example) 3 indicator : a moving average "MA" - an average true range "ATR" - an average directional movement index "ADX", it's faster to use the handle "iMA" -"iATR" - "iADX", or write their codes to my program [it's possible to write their code in just one program?] ?
Third question :
I have 1 or more custom indicators : it's faster to use the handle "iCustom", or write their codes to my program?
I hope you can understand what I mean. I'm not so good with english.
Thanks whoever aswer in advise.