For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
How to check candle highest value
-
Hello,
i'm already able to check a specific candle opening and closing value:
self.datas[0].open self.datas[0].close
but i didn't find a similar way to see the candle highest and lowest value, can someone give me hint?
Sorry for the noob question! =S
Thanks!
-
for low and high, you can access it with:
self.datas[0].low self.datas[0].high