PureBytes Links
Trading Reference Links
|
At 9:23 PM -0500 3/16/99, Kenlow7@xxxxxxx wrote:
>Quick EL question: If I am building an opening range breakout
>system and I only want to allow 1 trade per day (i.e. the FIRST
>breakout of the opening range), how do I disallow subsequent
>trades later that same day? Thanks.
You could use the EntriesToday function:
if EntriesToday(Date) = 0 then begin
<trading statements>
...
end;
Bob Fulks
|