- Search Crypto Craft
-
jblanked replied Sep 27, 2024Yes it recalculates and no it's not a big issue. I made an edit to that here: url
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024That concept is MT5 only, and a "7-Minute" timeframe doesn't exist in MT5. I'm sure a developer could code a custom timeframe though for MT4
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024I definitely agree that MT5 has a steeper learning curve, but the rest largely depends on your experience and current knowledge. Some features I appreciate in MT5 include: - Input groups - OpenCL - True object-oriented programming (OOP) principles - ...
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024The ping is also much faster on MT5 (unless you're right next do the data centers, then it would be the same more than likely)
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024Glad to have your input as I know you're also an experienced coder. I'd agree that this is an advantage. The MT4 strategy tester results should not be trusted, as there's a mess with downloading the correct historical data for your broker. MT5 ...
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024In a constantly changing market, you don’t want to remain static.
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024I think people are afraid of change. It's like switching from Windows 7 to Windows 10; you can still use Windows 7, but why lol What computer do you have? MT5 works smoothly, even on my 2015 iMac.
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024Honestly, I can't think of a single advantage that MT4 has over MT5, and the same goes for MQL4 compared to MQL5.
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024That was: - TMA-CG-2024 with 56 period: url - Guppy with 25 period: file file - EMA with 20 period (default MT4/MT5 indicator)
Simple Guppy Cap Reversals
-
jblanked replied Sep 27, 2024ChartSetInteger(0, CHART_COLOR_BACKGROUND, clrLavender) will set the background color of the current chart as Lavender. You can change it within a loop but only the last background color change will be displayed. Instead of changing the background ...
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 27, 2024https://www.mql5.com/en/code/mt5/indicators
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 25, 2024Use the "code" option when pasting code or supply the source file (you can use .txt for Pinescript)
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 25, 2024I fixed the compiler warnings and errors, but there are more issues that need to be addressed.
I will code your EAs and Indicators for no charge
-
jblanked replied Sep 24, 2024As soon as you posted the equation, I looked it up. It's just an equation so yes it can be applied directly, but we still need some components (as suggested by TimeTells and ChatGPT): "In the context of Forex trading, the given equation could be ...
Flying Dutchman
-
jblanked replied Sep 23, 2024Create a pointer of the class using the .mqh file (like I did with the indicator) instead of using iCustom with the indicator file.
TMA-CG-2024
-
jblanked replied Sep 23, 2024Thanks for looking into it!! It’s not a “bug”; on the first chart load, MT5 will load the candle history required by indicators. That is why when you load that timeframe a second time, everything is back to normal. Let me know if you have any other ...
TMA-CG-2024
-
jblanked replied Sep 22, 2024Here you go friend Now it will delete all objects created by the indicator when it is removed from the chart void OnDeinit(const int reason) { ObjectsDeleteAll(0, "T1"); ObjectsDeleteAll(0, "T2"); ObjectsDeleteAll(0, "T3"); ObjectsDeleteAll(0, ...
Indicator that draws vertical line at certain time?