| 
 PureBytes Links 
Trading Reference Links 
 | 
Yes, because you haven't programmed anything to be displayed.
 
Trying adding B as the last line. Example,
 
<code>
B;
 
Kind regards
 
Dave
 
 
  _____  
From: equismetastock@xxxxxxxxxxxxxxx [mailto:equismetastock@xxxxxxxxxxxxxxx]
On Behalf Of hcour
Sent: Thursday, 22 February 2007 5:49 PM
To: equismetastock@xxxxxxxxxxxxxxx
Subject: [EquisMetaStock Group] Indicator Won't Display
 
I'm trying to use an old indicator I wrote but it won't show up in the
window. I don't get any error msgs, it's just not there. I had used it
in the past, though I think I was using MS 7.1 then, I'm now using
7.2. This is the indicator, UDPC is Up Day, Positive Close and HVWS is
Higher Volume, Wider Spread, etc:
UDPC:=(C>((H-L)*.5)+L) and C>Ref(C,-1);
UDNC:=(C<((H-L)*.5)+L) and C>Ref(C,-1);
DDPC:=(C>((H-L)*.5)+L) and C<Ref(C,-1);
DDNC:=(C<((H-L)*.5)+L) and C<Ref(C,-1);
HVWS:=((H-L)>Ref((H-L),-1)) and V>Ref(V,-1);
HVNS:=((H-L)<Ref((H-L),-1)) and V>Ref(V,-1);
LVWS:=((H-L)>Ref((H-L),-1)) and V<Ref(V,-1);
LVNS:=((H-L)<Ref((H-L),-1)) and V<Ref(V,-1);
B:=If(UDPC and HVWS,8,If(UDPC and HVNS,7,If(UDPC and LVWS,6,If(UDPC
and LVNS,5, If(UDNC and HVWS,4,If(UDNC and HVNS,3,If(UDNC and
LVWS,2,If(UDNC and LVNS,1, If(DDPC and HVWS,-8,If(DDPC and
HVNS,-7,If(DDPC and LVWS,-6,If(DDPC and LVNS,-5, If(DDNC and
HVWS,-4,If(DDNC and HVNS,-3,If(DDNC and LVWS,-2,If(DDNC and
LVNS,-1,0))))))))))))))));
Any ideas why this won't display?
Thanks,
Harold
 
[Non-text portions of this message have been removed]
 
Yahoo! Groups - Join or create groups, clubs, forums & communities. Links
<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
    Individual Email | Traditional
<*> To change settings online go to:
    http://groups.yahoo.com/group/equismetastock/join
    (Yahoo! ID required)
<*> To change settings via email:
    mailto:equismetastock-digest@xxxxxxxxxxxxxxx 
    mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
    equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups - Join or create groups, clubs, forums & communities. is subject to:
    http://docs.yahoo.com/info/terms/
 
 |