PureBytes Links
Trading Reference Links
|
Hello,
In order to analyse the REASON, not the result I need the file I am
asking for, not screenshots. Screenshot in that case is useless.
So again:
> Please click on this link (when QuoteTracker is running):
> http://127.0.0.1:16239/req?GetTimeSales(DELL,0,0)
>
> (replace DELL with the symbol you have problems with)
> and send me the output.
> This will allow me to see what volume numbers are reported by
> QuoteTracker
> on your machine.
Best regards,
Tomasz Janeczko
amibroker.com
--- In amibroker@xxxxxxxxxxxxxxx, "mroman59" <mroman59@xxxx> wrote:
>
> Tomasz
>
> I sent you email, I believe it is the version I am running. Beta
> 4.59. I also sent you a screen shot. My friend is using QT and
same
> broker for data and I sent him the code. We compared , and he sent
me
> screen shot. His program is reporting correct volume and no
negative
> numbers. Is there a file that you can send me that would repair
this
> situation or am I forced to upgrade. Volume is important and
should
> have been reported correctly in output box, just like the price or
> rate of change or other values created using price do.
>
> Thanks
> MR
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko"
<amibroker@xxxx>
> wrote:
> > Hello,
> >
> > I wrote you via support channel, and repeat here.
> > In order to check the problem:
> >
> > Please click on this link (when QuoteTracker is running):
> > http://127.0.0.1:16239/req?GetTimeSales(DELL,0,0)
> >
> > (replace DELL with the symbol you have problems with)
> > and send me the output.
> > This will allow me to see what volume numbers are reported by
> QuoteTracker
> > on your machine.
> >
> > Best regards,
> > Tomasz Janeczko
> > amibroker.com
> > ----- Original Message -----
> > From: "mroman59" <mroman59@xxxx>
> > To: <amibroker@xxxxxxxxxxxxxxx>
> > Sent: Friday, December 31, 2004 12:32 AM
> > Subject: [amibroker] Grahm help please or any guru
> >
> >
> > >
> > >
> > > The following code was given to me to use to filter for volume
> > > throughout the day to report volume in my alert output box. My
> source
> > > is QuoteTracker which receives data from Ameritrade. The
problem
> is
> > > that the code "DayVol" results in negative numbers and numbers
> that
> > > dont match in my platform i.e. QT, however it does report the
> correct
> > > price and matches that in QT. Volume is the only thing that
is
> never
> > > correct, therefore I can not filter out stocks for volume
> > > requirements. This makes no sense and AB has not offered me a
> > > solution as of this time. I have been complaining for over 6
> months
> > > or longer. If try to include ROC values it works, but anything
> with
> > > volume it does not. Can someone help. I am trying to figure
out
> if it
> > > is because I am still using beta version of AB 4.59
> > >
> > > Thank you
> > > MR
> > >
> > > //Volume Alert Scanner ... For Testing
> > >
> > > //volume
> > > bars = BarsSince(DateNum()>Ref( DateNum(),-1) ) + 1;
> > > DayVol = Sum(Volume,bars);
> > >
> > > //Alerts for todays date
> > > Cond = DateNum() == Now(3) ;
> > >
> > >
> > > // Scan for buy and sell conditions
> > > Buy = C>0 AND Cond;
> > > // AND DayVol > 200000;
> > > Sell = C > 0 AND Cond;
> > > // AND DayVol > 200000;
> > > Filter = Buy OR Sell;
> > >
> > > // Alert functions report to alert outputbox for buy conddtions
> > > AlertIf( Buy,"SOUND C:\\Windows\\Media\\Ding.wav",WriteIf
> (Buy,WriteVal
> > > (DayVol,1) + " " + WriteVal(C,1.2),""),1);
> > >
> > > // Alert functions report to alert outputbox for sell
conddtions
> > >
> > > AlertIf( Sell,"SOUND C:\\Windows\\Media\\Ding.wav",WriteIf
> > > (Sell,WriteVal(DayVol,1)+ " " + WriteVal(C,1.2),""),1);
> > > ,""),2);
> > >
> > >
> > > AddColumn(C,"Close",1.2);
> > > AddColumn(DayVol,"Volume",1.2);
> > >
> > >
> > >
> > >
> > >
> > >
> > > Check AmiBroker web page at:
> > > http://www.amibroker.com/
> > >
> > > Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
------------------------ Yahoo! Groups Sponsor --------------------~-->
$4.98 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/Q7_YsB/neXJAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|