-
Beta Was this translation helpful? Give feedback.
Answered by
kernc
Jul 21, 2021
Replies: 1 comment 3 replies
-
To join line 1 and line 3 on the same indicator chart, you'd return a tuple of both series in the same indicator function. Something like: def init(self):
...
def sma_cross():
return SMA(self.data.bid_option_size, 1), SMA(self.data.bid_option_size, 20)
self.bid_option_size1, self.bid_option_size20 = self.I(sma_cross, color=['black', 'red']) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
j209177
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To join line 1 and line 3 on the same indicator chart, you'd return a tuple of both series in the same indicator function. Something like: