More math to Custom Indicator
-
Hi
I think need to add some more math calculations to the HL Custom Indicator. All of the current individual calculations is gonna need to be in broader steps. It would take ages for the Strategy Optimizer to go through thousands of iterations before producing results
Whats the best way to do this? Just add code?
Thanks and best regards /danerius


-
if you want speed up tester, set value in barsLimit to about 200 or 300 or more and try with that values ... it should speed up tester (it should avoid calculation of whole history bars, maybe
... ) ...as next step you can place block "once per bar" before this calculation and under "More settings" in blocks give 1 for Candle ID (original is 0) ... it will take value from first candle (not the current one, and it should be faster) ..
-
next, you should avoid checking these input parameters ... you should give there parameter Constants ... for more blocks the same constants ...
https://fxdreema.com/tutorial/builder/constants-and-variables
-
Thanks for the input Miro
Checking this asap
/danerius