Rank: Newbie
Groups: Registered Users, Subscribers, Unverified Users Joined: 8/3/2014(UTC) Posts: 5
|
I am trying to replace one of my Exploration columns from one comparison to another. What I have now is basically recording how many weeks (weekly chart being used) the MACD has crossed over zero and is positive (or it shows a 0) If(MACD()>0,BarsSince(MACD()<=0),0) That works fine. But, I want to use one of my custom formulas so its function is: Fml("POWER Testing") If I change MACD to that it looks like: If(Fml("POWER Testing")()>0,BarsSince(Fml("POWER Testing")()<=0),0)
However every time I try that it says the function needs to be immediately followed by ( Any ideas how to format that right?
|
|
|
|
Rank: Advanced Member
Groups: Moderators, Registered, Registered Users, Subscribers Joined: 10/8/2010(UTC) Posts: 1,960
Thanks: 92 times Was thanked: 155 time(s) in 150 post(s)
|
Originally Posted by: markpc17 I am trying to replace one of my Exploration columns from one comparison to another. What I have now is basically recording how many weeks (weekly chart being used) the MACD has crossed over zero and is positive (or it shows a 0) If(MACD()>0,BarsSince(MACD()<=0),0) That works fine. But, I want to use one of my custom formulas so its function is: Fml("POWER Testing") If I change MACD to that it looks like: If(Fml("POWER Testing")()>0,BarsSince(Fml("POWER Testing")()<=0),0)
However every time I try that it says the function needs to be immediately followed by ( Any ideas how to format that right?
Hi, It looks like you'd probably want to get rid of both sets of ( ) at the end of your FML calls: Code:If(Fml("POWER Testing")>0,BarsSince(Fml("POWER Testing")<=0),0)
|
|
|
|
Rank: Newbie
Groups: Registered Users, Subscribers, Unverified Users Joined: 8/3/2014(UTC) Posts: 5
|
Thank you for the fast reply. That worked!
|
|
|
|
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.