PureBytes Links
Trading Reference Links
|
Hi Graham,
thanks for your answer!
I checked this again in my program but without success.
So I wrote a simple test system to validate your answer and this
works well.
This means that the problem must be related to my program.
cheers
Ralf
--- In amibroker@xxxxxxxxxxxxxxx, Graham <kavemanperth@xxx> wrote:
>
> The signals will be shown correct in a scan, exploration and chart,
> only the backtest should be affected by settradedelays
>
> --
> Cheers
> Graham Kav
> AFL Writing Service
> http://www.aflwriting.com
>
>
>
> 2008/6/23 sidhartha70 <sidhartha70@xxx>:
> > Why not just SetTradeDelays(0,0,0,0) when generating signals for
live
> > trading at the end of the day....?
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "ralf.winkel" <rwinkel@> wrote:
> >>
> >> Hi,
> >>
> >> when I get a long or short signal from my system rules I'm
> >> using "SetTradeDelays( 1, 1, 1, 1 )" to enter trade next day.
> >>
> >> Problem: when I run scan or exploration then the signals will be
> >> shown next day and not today to enter the order for next day.
> >>
> >> How can I achive, that this signals will be shown today in my
scan or
> >> exploration list?
> >> I tried already a lot of things like
> >>
> >> Filter = Buy OR Sell OR Short OR Cover;
> >> TrSignal = WriteIf(Ref(Buy, 1), "Buy (t+1)", "");
> >> TrSignal = TrSignal + WriteIf(Ref(Sell, 1), "Sell
(t+1)", "");
> >> TrSignal = TrSignal + WriteIf(Ref(Short, 1), "Short
> >> (t+1)", "");
> >> TrSignal = TrSignal + WriteIf(Ref(Cover, 1), "Cover
> >> (t+1)", "");
> >>
> >> AddTextColumn(TrSignal, "Signal",50);
> >>
> >>
> >> Many thanks in advance,
> >>
> >> Ralf
> >>
> >
> >
> >
> > ------------------------------------
> >
> > 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
> >
> >
> >
> >
>
------------------------------------
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/
|