Optex Bands

Hello

How can I put a horizantal ligne in the optex bands in the axe zero? Can you help me? And also in the RSI in the axe fifty?
Thanks by advance for your help.
Best Regards
Bruno Freitas

Hi,

If you mean the tool itself you can apply a Horzintal line directly to the Optex window, and adjust the properties to the position at 0…

Ex4

If you are manually plotting the Optex value as a script, and want to add a line at zero, you can use a multi plot script

https://help.optuma.com/kb/faq.php?id=722

For an example with the Optex / Zero Line combo you could use:

V1 = OPTEX().Ratio ;
V2 = 0;
plot1=v1;
plot2=v2;
plot2.Colour = Black;
plot2.Linestyle = Dash;

Which would look like this on a Show View:

Ex5