Questions from Beginners MQL5 MT5 MetaTrader 5 - page 873
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
I couldn't find it on YouTube. The documentation is just for the clever ones.
Youtube is our thing? You know where north-south is on YouTube too?
When the EA is started, two moving averages are added to the chart ( ChartIndicatorAdd function). Both moving averages are drawn in red. How can I colour them programmatically?
When the EA is started, two moving averages are added to the chart ( ChartIndicatorAdd function). Both moving averages are drawn in red. How to paint them programmatically in other colours?
The help is very clear:
When you create a handle for the indicator you're working with, you can specify a parameter on the line:
indicator_handle=iMACD(symbol,period,fast_ema_period,slow_ema_period,signal_period,apr);
Is YouTube our everything? Do you know where north-south is from YouTube videos too?
Of course you're smart.
When the EA is started, two moving averages are added to the chart ( ChartIndicatorAdd function). Both moving averages are drawn in red. How to paint them programmatically in other colours?
Use custom indicator that has a special setting: colour.
Example in theCustom Moving Average Input Color code:
Using theCrossing of two iMAs as an example, the call of the three indicators is now visually distinct in the visual strategy tester:
Use a custom indicator that has a special setting: colour.
Example in theCustom Moving Average Input Color code:
Using theCrossing of two iMAs as an example, the call of the three indicators is now visually distinct in the visual strategy tester:
I can't get the lot multiplication factor right.
Previously in codebase EA it was multiplying the previous lot by 2.
I changed it to
I get wrong lot volume
I can't get the lot multiplication factor right.
Previously in codebase EA it was multiplying the previous lot by 2.
I changed it to
I get the wrong lot volume
After doing the arithmetic, you should adjust the lot volume to the lot volume step for that symbol.
Example:Coin Flip lot calculation and check for BUY
hello such a question:
is it possible to dynamically change the number of buffers/lines in an indicator?
hello such a question:
Is it possible to dynamically change the number of buffers/lines in an indicator?
You can't.