PureBytes Links
Trading Reference Links
|
Hello,
Yes the code provided is compatible with either ApplyStops and
stops set in the settings.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "omar_ait_2000" <omar_ait_2000@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, May 30, 2003 11:20 AM
Subject: [amibroker] Re: Cannot get backfill for stocks from MyTrack.
> Thomas,
>
> Thank you for your fast reply, you are really the best!
>
> Does the code bellow for skipping Buys apply (hold) for sells that are
> triggered by stops???
>
> Thanks again.
> Omar.
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <amibroker@xxxx>
> wrote:
> > Hello,
> >
> > 1. "combining" data delivered by plugins is generally not supported
> > as plugin is supposed to deliver both current and backfill quotes
> > (QuoteTracker supports backfill so QT plugins fills the PREVIOUS
> > quotes too). You can experiment however turning ON this setting:
> >
> > a.. Use optimized routine for intraday data retrieval - turning this
> on (default, recommended) significantly speeds-up data
> > retrieval in intraday modes. If this option is enabled and AmiBroker
> already has partial intraday data for today AmiBroker asks QT
> > just for a few last time and sales records that occurred since last
> update upto current time, if this option is disabled AmiBroker
> > always asks QT for time&sales records from entire day.
> >
> >
> > However it is NOT intended to be used to 'combine' different quotes.
> >
> > 2. A sample for longs:
> >
> > buy = your rule
> > sell = your rule
> >
> > e = Equity( 1 );
> >
> > LastTradeProfit = ValueWhen( sell, e ) - ValueWhen( buy, e );
> >
> > buy = buy AND Nz( LastTradeProfit ) <= 0;
> >
> > Best regards,
> > Tomasz Janeczko
> > amibroker.com
> > ----- Original Message -----
> > From: "omar_ait_2000" <omar_ait_2000@xxxx>
> > To: <amibroker@xxxxxxxxxxxxxxx>
> > Sent: Friday, May 30, 2003 10:41 AM
> > Subject: [amibroker] Cannot get backfill for stocks from MyTrack.
> >
> >
> > > Hi there,
> > >
> > > I have two questions; thankx in advance for your kind reply:
> > >
> > > 1) I cannot get backfills for stocks from Mytrack. For futures there
> > > is no problem, but no stocks. Any idea why this is happening? I have
> > > the basic service from MyTrack; and I am trying to combine backfills
> > > from it with real-time from IB and QuoteTracker. It seems that
> > > Amibroker once plugged into QuoteTracker is losing all data you
> get from
> > > MyTrack, any input on that would be very appreciated too.
> > >
> > > 2) How is it possible to code the following in AFL: If the previous
> > > trade was successfull then don't take this trade (skip this one)
> > > otherwise take it (the turtles' stuff ...).
> > >
> > > Thanks you very much for your help.
> > >
> > > Omar.
> > >
> > >
> > >
> > > Send BUG REPORTS to bugs@xxxx
> > > Send SUGGESTIONS to suggest@xxxx
> > > -----------------------------------------
> > > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > > --------------------------------------------
> > > Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> > >
> > > Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
> > >
> > >
> > >
>
>
>
> Send BUG REPORTS to bugs@xxxxxxxxxxxxx
> Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/ySSFAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|