Unable to connect to FXCM with Terminal
I cannot connect to FXCM with the terminal. I select FXCM and try to verify and get an Unexpected DisConnection Exception.
I cannot connect to FXCM with the terminal. I select FXCM and try to verify and get an Unexpected DisConnection Exception.
I purchased the complete education but have not received details to access the content.
Hello! I want to use the api for backtesting in an C# console application. I want to make and wrapper to it, in order to use it as application.login ; application.addItem ; etc. Is that possible? Can ...
Is it possible to link S# Designer with IG account and retrieve data from the broker?
Can algo trading be done from a Vanguard or etrade account?
We want to perform strategy backtesting on history data stored in txt file. As we understand from the samples, the txt file should be converted to S# format before we can run strategy and testing on t...
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...
Hello. How is StockSharp working with Rithmic data? Is there somthing what should I aisk my broker? Thank you
Hi Mikhail, I used the download link to download the source files of your program, but apparently only the API is available on GitHub. Unfortunately, none of your .sln files are being complied. I ende...
Hello, I am an organization, but I need a Chinese version. I suggest you add a Chinese version.
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...
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...
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...
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...
When S# Shell uses the SMA policy for real-time transactions, an error occurs that does not specify the date on which data must be received. Will this error be caused by the message adapter, because w...
I tried the Designer application and also created a new project following the instructions here https://www.youtube.com/watch?v=O8ucIQA829w but whenever I try to verify the sterling connection i get t...
what is this?
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...
var history = new DukasCopyHistorySource(new CsvNativeIdStorage("C:\test\asd.csv"), new InMemoryExchangeInfoProvider()); var security = new Security() { Id = "EURUSD", }; var timeFrame = TimeSpan.From...
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...