openfastdotnet-users Mailing List for OpenFAST.NET
Brought to you by:
shariqkudcs
You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <260...@qq...> - 2020-01-02 08:35:34
|
您好, 在使用openfast解析传递过来的stream时,有个地方一直不明白,UnsignedInteger.cs中的这个方法 public override ScalarValue Decode(Stream inStream) { long value = 0; uint byt; try { do { byt = (uint) inStream.ReadByte(); value = (value << 7) | (byt & 0x7f); ----此处就代表单元格内容长度么,即由多少bit组成的,请问为什么要这么写,看不明白... } while ((byt & StopBit) == 0); } catch (IOException e) { throw new RuntimeException(e); } return CreateValue(value); } 如能回复,不甚感激。 |
From: Karthik Y. <Kar...@pr...> - 2011-09-16 16:35:37
|
Hi sir, I am karthik. I'm working in Pravega Financial Technology ,Actually I'm new to FIX FAST Stuff.I have downloaded openFAST .net Library.I want to read market data using openFAST. I don't know how to encode and decode a fix message with OpenFAST.NET library? and how do I connect to market data provider's using open fast library. please guide me sir with an sample example.Hope you ill response to my mail. Thanks Karthik. |
From: shariq m. <sha...@gm...> - 2010-12-14 20:28:34
|
Yes, we usually convert it from java version but now we are working on optimization so it is changing now. their are a few areas which need attention to optimize the context object. About multicast class, that is not functional but this is something which can be implemented without need of too much coding but when it was ported, those classes were their, in actual; implementations have variations in different scenarios in contrast to java version. Some feeds skip 5 bytes as preamble data and some dont do that. Anyways we would add a few exchange specific samples this week which will clarify the implementation. 2010/12/14 <ope...@li...> > > > ---------- Forwarded message ---------- > From: "Henry Conceição" <hen...@gm...> > To: ope...@li... > Date: Tue, 14 Dec 2010 15:39:52 -0200 > Subject: MulticastInputStream and ByteBuffer > Hi, > > It looks like that these two classes are half implemented only. What > is the approach that you guys usually follow on those situations? Just > port from java source? > > Cheers, > Henry Conceição > > > > -- * Shariq * |
From: Henry C. <hen...@gm...> - 2010-12-14 17:39:59
|
Hi, It looks like that these two classes are half implemented only. What is the approach that you guys usually follow on those situations? Just port from java source? Cheers, Henry Conceição |
From: shariq m. <sha...@gm...> - 2010-12-07 14:40:04
|
Hi, Yeah currently no examples are their, but i would look into BATS specification. They are decode able through FIXProtocol reference implementations as well. I will work on it and let you know. I dont have BATS data currently when i will have access to it i'll publish the samples. Sorry for a delayed response as i was occupied in some regular work. -- * Shariq * |
From: anonymous g. <ano...@gm...> - 2010-12-06 21:11:26
|
Hi OpenFAST .NET team, You don't happen to have an example of how to connect and use your .NET FastFIX library when retrieving quotes from oh, say, BATS do you? Thanks for any help, AM |