PureBytes Links
Trading Reference Links
|
Hello,
It is possible to get in and out the market the same day.
For example:
buy = sell = cross( open, ema( open, 15 ) );
buyprice = open;
sellprice = close;
If you are using ApplyStop there is however one
caveat that they are activated the next day.
See the following message for the details:
http://www.amibroker.net/boards/viewtopic.php?t=37
The example you have given however, is in fact
managing 2 different positions in the same stock
on the very same day which is not supported yet.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: <tchan95014@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, November 30, 2001 1:37 AM
Subject: [amibroker] In and out the same day
> Hi, Tomasz and All,
>
> Is it possible to get in and out of the market the same day?
>
> For example,
>
> Day 0: Signal day, H = 10, L = 9,
> long stop order: 10.1, loss stop: 8.9
> Both orders placed at night before market open.
> Day 1: H = 10.5, L = 8.5
>
> Regardless H or L comes first, both orders would be executed, so at
> the end of the Day 1, I would come out flat.
>
> In using exploration, it seems to me that there has to be at least
> ONE (1) day between in and exit.
>
> Please clarify for me. Thanks.
>
> Thomas
>
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
|