PureBytes Links
Trading Reference Links
|
Zvi,
yes. After inserting security data, you can command Metalib to sort the
incoming data by date. This would look like this:
Dim Writer As New MLWriter
Writer.OpenDirectory “C:\Test”
Writer.AppendSecurity “TestSymbol”, “TestName”, Daily
Writer.AppendDataRecArray Dat, Time, Op, High, Low, Cl, Volume, Openint
Writer.Sort
Writer.CloseDirectory
If you need to re-sort data, the routines would be:
OpenDirectory, ReadSecurity, DeleteSecurity, AppendSecurity, AppendData,
Sort, CloseDirectory
Hope this helps,
Andreas
> -----Ursprüngliche Nachricht-----
> Von: owner-metastock@xxxxxxxxxxxxx
> [mailto:owner-metastock@xxxxxxxxxxxxx]Im Auftrag von Zvi Oren
> Gesendet: Sonntag, 27. Januar 2002 21:35
> An: metastock@xxxxxxxxxxxxx
> Betreff: Re: Question again: how to read metastock file?
>
>
> Andreas,
> Does MetaLib allows sorting MetaStock data by date (i.e. First Date)?
>
> TIA,
> Zvi
>
> ----- Original Message -----
> From: "Andreas Grau" <agrau@xxxxxxxxxxxxxxxxxxxx>
> To: <metastock@xxxxxxxxxxxxx>
> Sent: Sunday, January 27, 2002 5:15 PM
> Subject: AW: Question again: how to read metastock file?
>
>
> I wonder why you want to code Metastock acess on your own. There is
> the
> "Metastock File Library" sold by Equis and "Metalib" to be found at
> www.trading-tools.com. I have tried both and sticked with Metalib:
> Easy and
> comfortable to use. Ok, both cost money, but how do you value your
> time
> implementing the routines yourself?
>
> Regards,
>
> Andreas
>
> > -----Ursprüngliche Nachricht-----
> > Von: owner-metastock@xxxxxxxxxxxxx
> > [mailto:owner-metastock@xxxxxxxxxxxxx]Im Auftrag von Sherwood Hu
> > Gesendet: Samstag, 26. Januar 2002 17:04
> > An: metastock@xxxxxxxxxxxxx
> > Betreff: Re: Question again: how to read metastock file?
> >
> >
> > Thank Jeff. But it can only read 255 securities.
> > ----- Original Message -----
> > From: "Jeff Haferman" <Jeff_Haferman@xxxxxxxxx>
> > To: <metastock@xxxxxxxxxxxxx>
> > Sent: Friday, January 25, 2002 6:37 PM
> > Subject: Re: Question again: how to read metastock file?
> >
> >
> > > Check out http://www.wotsit.org/default.asp
> > > search on "Metastock".
> > >
> > > Seek and ye shall find...
> > >
> > >
> > > Sherwood Hu wrote:
> > > >I am thinking to design a trade software, but anyone
> > > >can tell me the structure of metastock file? I mean
> > > >the new file format.
> > > >
> > > >Thanx.
> > > >
> > > >__________________________________________________
> > > >Do You Yahoo!?
> > > >Great stuff seeking new owners in Yahoo! Auctions!
> > > >http://auctions.yahoo.com
> > > >
> > >
> >
> >
> >
>
>
>
|