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

Notification

Icon
Error

Options
Go to last post Go to first unread
Ploufplouf  
#1 Posted : Tuesday, February 16, 2010 5:05:28 AM(UTC)
Ploufplouf

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 9/19/2009(UTC)
Posts: 27

In my formula, I call the ExtFml function.
Ex: Period := ExtFml("MSTradingSystem.Blu", "Blu");

In my case, Period will be an array with only one value.

Now I would like to call the RSI function:
RSIValue = RSI(Close, Period);

Is it possible because Period is an array with one value and the function wait for an integer... ?

vienna  
#2 Posted : Tuesday, February 16, 2010 7:58:08 AM(UTC)
vienna

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 12/14/2009(UTC)
Posts: 140
Location: Austria

try:

p:=lastvalue(Period);

RSIValue = RSI(Close, p);
Ploufplouf  
#3 Posted : Tuesday, February 16, 2010 8:04:31 AM(UTC)
Ploufplouf

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 9/19/2009(UTC)
Posts: 27

I will try this evening!
Thanks, I didn't know this function =)
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.