For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Trendline line object creation
-
Hi,
I would like to have a trendline in my strategy using as a backtrader line object. Is it possible to use it?
What I need: I have two price data (like BTC Monday daily close and Friday daily close) and my strategy would check if the current price (like daily close from Saturday) is still above my trendline or bellow it. I checked the documentation at indicators and lines but I couldn't find anything.
I'd imagine this creation: bt.createTrendline(self.data.close[-9], self.data.close[-2])
Many thanks in advance!