[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[amibroker] Re: Trading system to trade only ONCE per day



PureBytes Links

Trading Reference Links

Hi,

put this at the end of your code

// ****************** ONLY ONE TRADE EVERY DIRECTION *******************

L_trade = 0;
firstBarOfTheDay = DateNum()!=Ref(DateNum(),-1);
for (i=0;i<BarCount;i++)
 {
    if (firstBarOfTheDay[ i ] ) L_trade = 0;
    if(L_trade==1 AND Buy[ i ]  )
    {
       Buy[ i ] = 0;
    }
    if(L_trade==0 AND Buy[ i ]) L_trade = 1;
 }

S_trade = 0;
firstBarOfTheDay = DateNum()!=Ref(DateNum(),-1);
for (i=0;i<BarCount;i++)
 {
    if (firstBarOfTheDay[ i ] ) S_trade = 0;
    if(S_trade==1 AND Short[ i ] )
    {
       Short[ i ] = 0;
    }
    if(S_trade==0 AND Short[ i ] ) S_trade = 1;



--- In amibroker@xxxxxxxxxxxxxxx, "Dorothy" <dora_phuki@xxx> wrote:
>
> Hello,
> 
> Can anyone help me?
> 
> 1. Is it possible to code a intra day trading system that takes a
> trade only ONCE per day? If this trade is over (stopped out, profit
> target reached etc), the system will not take any signal for that day.
> 
> 2. Is it possible to get the high and low based on time, that is high
> and low between 10:15 am to 12:15 pm?
> 
> Thank you,
> Dor
>



------------------------------------

Please note that this group is for discussion between users only.

To get support from AmiBroker please send an e-mail directly to 
SUPPORT {at} amibroker.com

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/

For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/amibroker/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/amibroker/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:amibroker-digest@xxxxxxxxxxxxxxx 
    mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx

<*> To unsubscribe from this group, send an email to:
    amibroker-unsubscribe@xxxxxxxxxxxxxxx

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/