toksis
toksis
How to add Horizontal Line in make_addplot? make_addplot(rsi,panel='lower',color='g',hlines=[20,80])
oh nice! Thanks for the advice ill do it.
How to add Horizontal Line in make_addplot? make_addplot(rsi,panel='lower',color='g',hlines=[20,80])
Done it! woot! ```python apds = [mpf.make_addplot(buy_signal,scatter=True,markersize=100,marker='^'), mpf.make_addplot(sell_signal,scatter=True,markersize=100,marker='v'), mpf.make_addplot(close_signal,scatter=True,markersize=100,marker='o'), mpf.make_addplot(line80,panel='lower',color='r'), mpf.make_addplot(line20,panel='lower',color='g'), mpf.make_addplot(rsi,panel='lower',color='g') ] ``` 
How to add Horizontal Line in make_addplot? make_addplot(rsi,panel='lower',color='g',hlines=[20,80])
Perfect! I thought its a limitation 
Sadly no.. I changed it back to the default code.