PureBytes Links
Trading Reference Links
|
One way to use Mark's code is:
Inputs: Inpt(Xaverage(close,21));
VALUE1=Inpt;
if value1<>0 then
if value1[1]<VALUE1 then begin plot1(value1,"what+");END;
if value1[1]>VALUE1 then begin plot2(value1,"what-");END;
if value1=value1[1]then begin plot3(value1,"what");END;
bobr
----- Original Message -----
From: "Research Dept." <research@xxxxxxxxxxxxx>
To: <realtraders@xxxxxxxxxxxxxxx>
Sent: Wednesday, May 16, 2001 9:56 AM
Subject: [RT] Crude Code
> actually there are three states to the code a long (green) a
> short(magenta) and a yellow(flat) replace whatever with your choice
> of whatever, even astro stuff will go in there if you choose.
>
> VALUE1=whatever;
>
> if value1<>0 then
>
> if value1[1]<VALUE1 then begin plot1(value1,"what+");END;
> if value1[1]>VALUE1 then begin plot2(value2,"what-");END;
> if value1=value1[1]then begin plot3(value3,"what");END;
>
> please forgive the bad coding i know better but it works.
> To unsubscribe from this group, send an email to:
> realtraders-unsubscribe@xxxxxxxxxxxxxxx
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
To unsubscribe from this group, send an email to:
realtraders-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|