PureBytes Links
Trading Reference Links
|
---------
> From: A.J. Carisse <carisse@xxxxxxxxxxx>
> To: Omega List <omega-list@xxxxxxxxxx>
> Subject: Re: Multiple Data
Anyone know
> what's going on here? I wouldn't need the daily data if I could only
> reference the opening bar from each day on the intraday (Data1) - I'm
> not sure how this would be written, though.
>
> Thanks,
> A.J.
>
Hi A.J.
Well, I have been able to pull the open of the intra-day bar by coding:
If Time=1630 then flag=0; {When markets are all closed down}
If (Flag=0) and (Time=935) then {use whatever time of the first bar,
make a user input}
begin
OpenTick=Open of Data1;
Flag=1;
end;
{OpenTick is your man!}
Good Luck,
Tom Cathey
|