PureBytes Links
Trading Reference Links
|
vars: CanTrade(0),MP(0);
MP = MarketPosition;
if Date <> Date[1] then
CanTrade = 1;
if MP <> MP[1] then
CanTrade = 0;
{Enter your trading code below and demand that CanTrade = 1 for a trade to
be signaled}
----------------------------------------------------------
Stefan Johansson
President, CTA
Bors Analys AB
BA International Futures Fund, L.L.C.
http://www.baiff.com
stefan@xxxxxxxxxxxxxxx
----- Original Message -----
From: "Shraga(Feivi-Philip)" <shraga@xxxxxxxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Monday, April 29, 2002 4:18 PM
Subject: Trade only once a day code
> Hi everyone,
>
> Can anyone help me code a line that will tell the system to trade only
once
> a day?
>
> TIA
>
> Philip
>
>
|