EA Speed best practices
-
I would be interested on opinions as to which method is better to ensure a faster EA:-
Which is faster ?
a) A single "OncePerTick" followed by a long string of blocks to work through
or break the blocks down and use multiple "Once per Tick" blocks ?
I appreciate "it depends" but any insights as to best practice would be appreciated.
Many thanks
-
@mantadiver Once per bar at top as this will only allow blocks beneath to act once per bar.
-
Thanks jstap, so are you saying just use a single instance of Once per bar ? Does using multiple instances of Once per Bar cause slow down ?
-
@mantadiver Possibly would do, if logically once per bar has limited all blocks beneath there is no point in adding another as the one above will stop the ones below from acting until the next bar.