Performance tips, when creating custom indicators #1017
mgamache
started this conversation in
Help and support
Replies: 1 comment 7 replies
-
There’s quite a few aspects of your implementation that might have performance tuning opportunities. If you don’t know the source of slowness, the first step is to test each unit, with something like benchmarks.net or with other IDE profiler tools, so you can 1) see what part is slower, and 2) try different things to see how it affects performance. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am in the process of optimizing strategies with 2-3 indicators on five minute charts (so there are a lot of bars each day). Are there any best practices for optimizing the performance of the indicators? I am limiting the data to a list with 350 items and the values seem to match Trading View so it's enough data.
Indicators used (some as part of my own custom indicators): Stochastic VWMA, EMA, SMA.
any tips would be helpful.
thanks
Beta Was this translation helpful? Give feedback.
All reactions