Hello Mikhail and hi all! This StockSharp project looks very-very exciting and I started to look through some source codes and I tried some examples. Unfortunately I cannot find the way, how can I get details about the active (opened) positions? For example I made a connection to FXCM (by the SampleFxcm project) and I subscribed to the NewPosition event with a new function: Trader_NewPosition(Position pos) Trader.NewPosition += position =\u003e Trader_NewPosition(position); Trader.NewPosition += position =\u003e _portfoliosWindow.PortfolioGrid.Positions.Add(position); ... private void Trader_NewPosition(Position pos) { MessageBox.Show(\"cval: \" + pos.CurrentValue.ToString() + \" | desc: \" + pos.Description + \" | Currency: \" + pos.Currency.ToString() + \" | RealizedPnL: \" + pos.RealizedPnL.ToString() + \" | BlockedValue: \" + pos.BlockedValue.ToString()); } Kind of every values in the Position object are null, so I could not get the entry price and the direction values. Or this limited data problem is only related to the FXCM connections? ...because in fact I plan to use the CQG and/or the Rithmic connections. Please help me, how can I get the existing positions details after a new connection? Thanks in advance! Jose
Hi! I didn\u0027t take any modification yet in \"Rithmic sample application\" and I would like to connect with it but I don\u0027t know what certificate file should I use!? I just have a username and password for my account and nowadays I use it with Ninjatrader well. I have found a certificate (*.pk12) file in NT\u0027s folder but then I got a \"bad input\" error message which is understandable :) I should request a valid certificate file from my futures broker or what file do I have to use there? Regards, Jose