PureBytes Links
Trading Reference Links
|
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
|