For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
whats the difference between a line delay and negative lookup
-
just reading through the documentation and i get the impression i can get yesterdays close for example two ways
data.lines.close[-1]
or
data.lines.close(-1)
one being a delay and the other backwards lookup, i wonder if there is any difference in performance. I'm guessing that the delay isnt actually calculated until later and the negative lookup is precalculated in which case perhaps the delay runs faster. your thoughts please
-
@greg-nwosu said in whats the difference between a line delay and negative lookup:
your thoughts please
Run a speed test and use the syntax which better suits you.