in Search

Colouring the zone between two MA

Last post 11-29-2007, 11:16 by Maxforce. 2 replies.
Sort Posts: Previous Next
  •  11-28-2007, 7:18 25891

    Colouring the zone between two MA

    I would like to create two Moving Averages and color the zone between them.
    How do I do this in Metastock?

    Thanks!
  •  11-28-2007, 17:34 25900 in reply to 25891

    Re: Colouring the zone between two MA

    This idea comes from Jose Silva

    M1:=Mov(C,10,S);

    M2:=Mov(C,50,S);

    even:=Cum(1)/2=Int(Cum(1)/2);

    UM:=If (even,M1,M2);

    LM:=If (even,M2,M1);

    UM;LM;

  •  11-29-2007, 11:16 25902 in reply to 25900

    Re: Colouring the zone between two MA

    Perfect!
    Thank you Henry! Thank you Jose! :)


View as RSS news feed in XML