RSS
Elrenee Elrenee
👁 960 💬 1

IG account

Is it possible to link S# Designer with IG account and retrieve data from the broker?

cliff cliff
👁 1,198 💬 2

Vanguard account

Can algo trading be done from a Vanguard or etrade account?

Sam Sam
👁 1,015 💬 1

how does quoting work?

Could you point me to more information related to how quoting works, or answer some questions? If I wanted to send an order for a large volume, can it break up the volume into smaller sequential order...

Marek Marek
👁 897 💬 1

Rithmic data

Hello. How is StockSharp working with Rithmic data? Is there somthing what should I aisk my broker? Thank you

ctmb520 ctmb520
👁 752 💬 0

Problems with local updates

Hello, I registered my account and downloaded it locally. There was a problem. Error trying to save file "C:\Users\Tom\AppData\Local\Temp\w3055\stocksharpdata.all.to.4.4.16.wyu": Unable to read data f...

Jason Jason
👁 1,733 💬 10

Support for brackets/OCO/OCA

Is there any functionality provided in the S#.API for creating conditional orders? I want to generate an OCO, but don't see anything documented about this. I'm setting up using Rithmic, so I assume th...

Max Rossi Max Rossi
👁 887 💬 0

Crypto exchanges

Hello, I would like to know if with a paid crypto exchange DLL (e.g BitMEX) it's possible to use native orders and specific features of the exchange, to be able to exploit every aspect of the API of t...

vsmt vsmt
👁 1,609 💬 5 ▲ 1

BitMEX invalid argument clOrdID

Hi, I get an invalid argument error for the BitMEX connector when the MarketQuotingStrategy tries to requote: Error "Order 53343094 (0x7BB32E) was not cancelled because System.InvalidOperationExceptio...

William B William B
👁 916 💬 0

INFORMATION ABOUT HOW WE USE COOKIES

Our website uses cookies. A cookie is a small file of letters and numbers that we put on your computer if you agree. These cookies allow us to distinguish you from other users of our website, which he...

jaykop@wp.pl jaykop@wp.pl
👁 785 💬 0

Get BID side from DukasCopyHistorySource

var history = new DukasCopyHistorySource(new CsvNativeIdStorage("C:\test\asd.csv"), new InMemoryExchangeInfoProvider()); var security = new Security() { Id = "EURUSD", }; var timeFrame = TimeSpan.From...

jaykop@wp.pl jaykop@wp.pl
👁 921 💬 0

Unable to calculate WilderMovingAverage

Hi, I`m trying to calculate ATR using Wilder Moving Average. Here is my code: var atr = new WilderMovingAverage() { Length = 2, }; foreach (var candle in candles.Take(10)) { atr.Process(candle); } var...