[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Novice in EasyLanguage



PureBytes Links

Trading Reference Links

Dear Zoltan,

Thank you for your helping hand.

Victor

----- Original Message -----
From: <szzoltan@xxxxxxxxxxxx>
To: "Victor" <civico@xxxxxxxxxxxxxx>
Sent: Monday, April 17, 2000 10:24 PM
Subject: Re: Novice in EasyLanguage


>
>
> Victor:
>
> My suggestion:
> 1) + 2)
>
> Var: Hi(0),Lo(999999),MyRange(0);
>
> if Time=Sess1StartTime then begin Hi=0;Lo=999999;end;
> if Time>=Sess1StartTime and Time<
> MinutesToTime(TimeToMinutes(Sess1StartTime)+30) then begin
> if H>Hi then Hi=H;if L<Lo then Lo=L;MyRange=Hi-Lo;
> end;
>
> 3) In Symbol Setting, you can define Sess1StartTime as 12:00am and
> Sess1EndTime as 11:59pm.
>
> 4) If you are referring to the close of the day, you can define it as:
>
> Var: DayClose(0);
>
> if Time=Sess1EndTime then DayClose=C;
>
> (In this case you have to make sure that Sess1EndTime is compatible with
> your BarInterval on the chart. For example, if you have a BarInterval of 5
> minute, then you should set your Sess1EndTime to 11:55pm, or 11:00pm, or
> 10:00pm. etc., I mean a multiple minute time of 5 minute)
>
>
> Regards,
>
> Zoltan
>
>
>
> _________
> Dear All,
>
> I am a novice in Easy Language, can anyone tell me how to write the Easy
> Language in the following content:
>
> 1/ The High-Low of the 1st 30 min after the session starts,
>
> 2/ The range of the 1st 30 min after the session starts
>
> 3/ How you define sessions in Forex Trading as it is 24 hrs trading?
>
> 4/ How you define the closing price?
>
> Thanks in advance.
>
> Victor
>
>
>