PureBytes Links
Trading Reference Links
|
Colin,
Here's yours corrected and another you may want to look at. Two
problems with yours...a missing ; at the end of a variable name and
the final variable call for the a variable.
Preston
{ Input for the following date }
Day2 := Input("Following date: Day",1,31,4);
Month2 := Input("Following date: Month",1,12,1);
Year2 := Input("Following date: Year",1900,2400,2007);
{ Input for preceding date }
Day1 := Input("Preceding date: Day",1,31,4);
Month1 := Input("Preceding date: Month",1,12,1);
Year1 := Input("Preceding date: Year",1900,2400,2007);
{ Variable assignment }
x:=ValueWhen( 1, DayOfMonth() = Day2 AND Month() = Month2 AND Year()
= Year2, CLOSE );
y:=ValueWhen( 1, DayOfMonth() = Day1 AND Month() = Month1 AND Year()
= Year1, CLOSE );
{ % Rate of change - price }
a:=100*(x-y)/y; a; {end}
Day1 := Input("Day",1,31,4);
Month1 := Input("Month",1,12,1);
Year1 := Input("Year",1900,2400,2007);
date:=Year()>Year1 OR (Year()=Year1 AND (Month()>Month1 OR Month()
=Month1 AND DayOfMonth()>=Day1));
mark:=Alert(date=0,2) AND date;
X:=ValueWhen(1,mark,CLOSE);
100*((CLOSE-X)/X); {end}
--- In equismetastock@xxxxxxxxxxxxxxx, "colinchan69" <colin103@xxx>
wrote:
>
> Hi,
> Can someone help me to solve this indicator?
> Many thanks in advance.
>
> Regards
> Colin
> { Input for the followig date }
>
> Day2 := Input("Following date: Day",1,31,4);
> Month2 := Input("Following date: Month",1,12,1);
> Year2 := Input("Following date: Year",1900,2400,2007);
>
> { Input for preceding date }
>
> Day1 := Input("Preceding date: Day",1,31,4);
> Month1 := Input("Preceding date: Month",1,12,1);
> Year1 := Input("Preceding date: Year",1900,2400,2007)
>
> { Variable assignment }
>
> x:=ValueWhen( 1, DayOfMonth() = Day2 AND Month() = Month2 AND Year
()
> = Year2, CLOSE );
> y:=ValueWhen( 1, DayOfMonth() = Day1 AND Month() = Month1 AND Year
()
> = Year1, CLOSE );
>
> { % Rate of change - price }
>
> a:=100*(x-y)/y;
>
> { Plot in own window }
>
Yahoo! Groups 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 is subject to:
http://docs.yahoo.com/info/terms/
|