logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
kkrishna79  
#1 Posted : Monday, July 1, 2019 11:01:13 AM(UTC)
kkrishna79

Rank: Member

Groups: Registered, Registered Users, Unverified Users
Joined: 1/31/2009(UTC)
Posts: 16
Location: Mumbai

Thanks: 2 times

Hello All,

I am looking to code how to plot yearly high & low of a particular period

======================================    

Sd:=Input("Start day" ,1,31,1);

Sm:=Input("Start month",1,12,1);

Sy:=Input("Start year" ,1980,2020,2019);

Ed:=Input("End day" ,1,31,31);

Em:=Input("End month" ,1,12,12);

Ey:=Input("End year" ,1980,2020,2019);

Start:=(DayOfMonth()>=Sd AND Month()=Sm AND

Year()=Sy) OR Year()>Sy OR (Year()=Sy AND

Month()>Sm);

End:=(DayOfMonth()<=Ed AND Month()=Em AND

Year()=Ey) OR Year()<Ey OR (Year()=Ey AND

Month()<Em);

Start AND (End OR (Start AND Alert(Start=0,2)));

======================================

date range i am able to get but how to get Highest High and Lowest Low of the given Range period mention in above code.

Kindly help.

Thank You

Krishna

Edited by user Monday, July 1, 2019 11:03:06 AM(UTC)  | Reason: Not specified

Users browsing this topic
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.