[docs]defset_aroon_down_line_color(self,color:str):"""Sets the color of the Aroon Down line. Args: color (str): New line color as string, should be in HEX format e.g. #FFFFFF. """self.instance.send(self.id,'setAroonDownLineColor',{'color':color})returnself
[docs]defset_aroon_up_line_color(self,color:str):"""Sets the color of the Aroon Up line. Args: color (str): New line color as string, should be in HEX format e.g. #FFFFFF. """self.instance.send(self.id,'setAroonUpLineColor',{'color':color})returnself