PureBytes Links
Trading Reference Links
|
IF time = Sess1EndTime {check your GS settings} then
buy{or sell} at market;
OR
Input: Time_trigger = 16:00;
IF time = Time_trigger then
buy{or sell} market;
OR
Input: Time_trigger = 16:00;
IF time = Time_trigger then begin
IF Open Of Next Bar {your conditions} then
buy at market
else
sell at market;
end;
janusz
----- Original Message -----
From: "Todd Hanson" <todd@xxxxxxxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Thursday, January 03, 2002 12:50 PM
Subject: Easylanguage help please
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Could someone help me out with some Easylanguage? I am trying to
> generate a trade based on the 1st bar of the day on a 1 min chart. For
> some reason I can not access this bar via easylanguage. I have tried
> sess1starttime and also using time =. Could anyone help me out with
> this? Thanks.
|