PureBytes Links
Trading Reference Links
|
--- Begin Message ---
thanks
this is what I looking for ....
On Feb 2, 2005, at 5:31 AM, P Umrysh wrote:
Two versions:
{over under zero}
X:= {your indicator here};
Green:=If(X>0,X,0);
Red:=If(X<0,X,0);
Green; Red;
{greater than less than}
X:= {your indicator here};
Green:=If(X>Ref(X,-1),X,0);
Red:=If(X<Ref(X,-1),X,0);
Green; Red;
enjoy,
Preston
Yahoo! Groups Links
• To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
• To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
• Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
----------------------------------------------------------
This email has been scanned for viruses by StarHub e.Scan. --- End Message ---
----------------------------------------------------------
This email has been scanned for viruses by StarHub e.Scan.
|