PureBytes Links
Trading Reference Links
|
You might aswell try
if Time CROSSES ABOVE BTime and time < Stime then begin
put in whatever system you like
end
that will put your system on alert during a certain time of day ONLY - and yes
CROSS ABOVE sounds silly BUT it works......
rgds hans
> At 10:11 AM +0200 6/26/98, Massimo Ciarafoni wrote:
>
> >I would have a quick question if I would like to optimize the time of
> >entry for an intraday system how can I do so? Let' s say I have a 5min
> >chart how can I tell the system to buy/sell if the time is X and optimize
> >X?
>
>
> Try something like this:
>
> ------
>
> Input: BTime(0940), STime(1530);
> if Time = BTime then Buy next bar at market;
> if Time = STime then Sell next bar at market;
>
> -------
>
> Then optimize for BTime and STime.
>
> Bob
>
>
>
|