PureBytes Links
Trading Reference Links
|
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@xxx> 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
<*> 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/
|