logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
minnamor  
#1 Posted : Thursday, July 21, 2005 5:27:29 PM(UTC)
minnamor

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 4/27/2005(UTC)
Posts: 126
Location: Italy

I have come across some oscillators with two or three signal lines like the two examples below: CMO with 2 WMA: Per1:=Input("Length of CMO",1,100,13); Per2:=Input("Length of fast WMA",1,100,3); Per3:=Input("Length of slow WMA",1,100,13); Per4:=60; Perc1:=.95; Perc2:=1.05; A1:=CMO(C,Per1); A2:=Mov(A1,Per2,W); A3:=Mov(A1,Per3,W); UB:=(HHV(Ref(A1,-1),Per4)*Perc1); LB:=(LLV(Ref(A1,-1),Per4)*Perc2); MB:=(UB+LB)*.5; UB;MB;LB; A1;A2;A3; MACD Multiple Indicator: A1:= Mov(C,11,E)-Mov(C,30,E); A2:= Mov(Mov(C,11,E)-Mov(C,30,E),12,E); A3:= Mov(Mov(C,11,E)-Mov(C,30,E),25,E); A4:= Mov(Mov(C,11,E)-Mov(C,30,E),50,E); 0;A1;A2;A3;A4 I am not sure about the interpretation of such indices and their use in a trading system. Can anybody help? Thanks.
Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.