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

Notification

Icon
Error

Options
Go to last post Go to first unread
Satie  
#1 Posted : Tuesday, November 14, 2006 9:57:35 PM(UTC)
Satie

Rank: Newbie

Groups: Registered, Registered Users
Joined: 12/16/2005(UTC)
Posts: 5

Using Force Index formula I can only display one of the two periods at the time; can I display both in the same window? (with to different lines)

If the answer is yes, how can I do that?

FI:=(C-Ref(C,-1))*V;Mov(FI,3,E)
{Smoothed by 3 period exponential moving average}

FI:=(C-Ref(C,-1))*V;Mov(FI,13,E)
{Smoothed by 13 period exponential moving average}

Thank you

Regards

wabbit  
#2 Posted : Tuesday, November 14, 2006 10:46:08 PM(UTC)
wabbit

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 10/28/2004(UTC)
Posts: 3,111
Location: Perth, Western Australia

Was thanked: 16 time(s) in 16 post(s)
Just combine the codes into one indicator and plot this indicator in a new window, format each line as yuo require.

e.g.

Code:

FI3:=(C-Ref(C,-1))*V;Mov(FI,3,E);
FI13:=(C-Ref(C,-1))*V;Mov(FI,13,E);
{plot}
FI3;
FI13;


Hope this helps.

wabbit [:D]

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.