I've created a MACD (8,17,9) indicator in MSWIN using the following formula I picked up from one of the posts.
period1:=8; period2:=17; period3:=9; Mov(C,period1,E) - Mov(C,period2,E); Mov((Mov(C,period1,E) - Mov(C,period2,E)),period3,E)
When I display this formula in a window, it appears as two red lines crossing over one another (I assume its a MACD line with a 9-period signal).
I would like to display the signal line in a different color but the properties box doesn't offer this option.
Could I change the signal line color by adding instructions to the above formula? If so, could someone help me write the code since I have very little code-writing skills.
Thanks to all,
Mikeman |