For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Custom Indicator with custom value in Line series
-
Hi,
How can i store non-numeric values in the lines object within my indicator ? -
You cannot. That's not envisioned in the design of the platform. Lines contain floats and only floats.
What you could do: store a value which is a key to a dictionary containing the value you want to fetch somewhere else (or an index if you prefer to use a list/array-like structure)
-
Thank you.