﻿<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type='text/css' href='https://stocksharp.com/css/style.css'?>
<?xml-stylesheet type='text/css' href='https://stocksharp.com/css/bbeditor.css'?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title type="html">Forum. StockSharp</title>
  <id>https://stocksharp.com/handlers/atom.ashx?category=forum&amp;page=15</id>
  <rights type="text">Copyright @ StockSharp Platform LLC 2010 - 2025</rights>
  <updated>2026-05-06T09:04:18Z</updated>
  <logo>https://stocksharp.com/images/logo.png</logo>
  <link href="https://stocksharp.com/handlers/atom.ashx?category=forum&amp;page=15" rel="self" type="application/rss+xml" />
  <entry>
    <id>https://stocksharp.com/topic/4504/</id>
    <title type="text">Stock # Data  - English users</title>
    <published>2014-05-07T21:27:56Z</published>
    <updated>2014-05-07T21:27:56Z</updated>
    <author>
      <name>sunrising</name>
      <uri>https://stocksharp.com/users/50864/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Algorithmic trading" />
    <content type="html">Dear all,&lt;br /&gt;&lt;br /&gt;Please might you suggets us if Hydra is available with English interface?&lt;br /&gt;&lt;br /&gt;If not, how can we make it by ourself? Is there a xaml we might modify or we necessarily need source code?&lt;br /&gt;&lt;br /&gt;Thank you very much for your help.&lt;br /&gt;&lt;br /&gt;Best,&lt;br /&gt;A&amp;amp;A   &lt;br /&gt;</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4429/</id>
    <title type="text">Charting Candles (received from Quik)</title>
    <published>2014-03-23T11:44:07Z</published>
    <updated>2014-03-23T11:44:07Z</updated>
    <author>
      <name>sunrising</name>
      <uri>https://stocksharp.com/users/50864/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Algorithmic trading" />
    <content type="html">Dear Stock# community,&lt;br /&gt;&lt;br /&gt;We tried to lunch Sample SMA example with some minor personalization.&lt;br /&gt;&lt;br /&gt;The main problem we have is related to drawing candles received from quik real time.&lt;br /&gt;&lt;br /&gt;The code reported below is able to draw correctly history data but not the current one received from quik.(we report only a peace of code related to candle drawing, in case you need more information please tell us about it),&lt;br /&gt;&lt;br /&gt;Please might you suggest us where the error could be? (We have already set up permissions to administrator for both quik and C# project) &lt;br /&gt;&lt;br /&gt;Thank you very much for your help.&lt;br /&gt;&lt;br /&gt;Kind regards,&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="code"&gt;&lt;strong&gt;Code&lt;/strong&gt;&lt;div class="innercode"&gt;&lt;pre class="brush:csharp"&gt;
// Trader creation
_trader = new QuikTrader(this.Path.Text);


// CONNECTION
_trader.Connected += () =&amp;gt;
{
	_candleManager = new CandleManager(_trader);
	
	//WHEN A NEW CANDLE IS RECEIVED
	_candleManager.Processing += (series, candle) =&amp;gt;
	{
		if (candle.State == CandleStates.Finished)
			this.GuiAsync(() =&amp;gt; ProcessCandle(candle));
	};
	
	_trader.Connect();
}



private void Start_Click(object sender, RoutedEventArgs e)
{
	if (_strategy == null)
	{
		// register our security and timeframe
		var series = new CandleSeries(typeof(TimeFrameCandle), _lkoh, _timeFrame);

		/*CREATION OF CANDLES FROM HISTORY *.txt*/
		IEnumerable&amp;lt;Candle&amp;gt; candles = File.ReadAllLines(&amp;quot;LKOH_history.txt&amp;quot;).Select(line =&amp;gt;
		{
			var parts = line.Split(&amp;#39;,&amp;#39;);
			//Returns a string array that contains the substrings that are delimited by &amp;#39;,&amp;#39;.
			var time = (parts[0] + parts[1]).ToDateTime(&amp;quot;yyyyMMddHHmmss&amp;quot;);

			return (Candle)new TimeFrameCandle
			{
				OpenPrice = parts[2].To&amp;lt;decimal&amp;gt;(), //To&amp;lt;decimal&amp;gt;() is converter from string to decimal
				HighPrice = parts[3].To&amp;lt;decimal&amp;gt;(),
				LowPrice = parts[4].To&amp;lt;decimal&amp;gt;(),
				ClosePrice = parts[5].To&amp;lt;decimal&amp;gt;(),
				TimeFrame = _timeFrame,
				OpenTime = time,
				TotalVolume = parts[6].To&amp;lt;int&amp;gt;(),
				Security = _lkoh,
				State = CandleStates.Finished,
			};
		});

		var lastCandleTime = default(DateTime);
		
		// History candles drawing
		foreach (var candle in candles)
		{
			ProcessCandle(candle);
			lastCandleTime = candle.OpenTime;
		}
		
		/* now we try to get current data from quik */
		
		_candleManager.Start(series);

		// Calculation of time intervals of current candle
		var bounds = _timeFrame.GetCandleBounds(series.Security);

		// get candles from when quik started to the latest one
		candles = _candleManager.Container.GetCandles(series, new Range&amp;lt;DateTime&amp;gt;(lastCandleTime + _timeFrame, bounds.Min));

		// draw candles received from quik
		foreach (var candle in candles)
		{
			ProcessCandle(candle);
		}
	}
}&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4162/</id>
    <title type="text">Streaming Data</title>
    <published>2013-11-19T18:10:59Z</published>
    <updated>2013-11-19T18:10:59Z</updated>
    <author>
      <name>Валентин Мирошниченко</name>
      <uri>https://stocksharp.com/users/6156/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Edu" />
    <content type="html">&lt;iframe width="640" height="390" src="//www.youtube.com/embed/Are1w8HM-s4" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;div align="left"&gt;Subject of this video is streaming data. In specific, we will be talking about a quotes and transactions. We will analyse definition of the quotes  and principles of its work in S#. Similarly, for the transaction. After we will deal with the theoretical part, we have to implement a software solution.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:120%"&gt;Subjects:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Working with Streaming Data&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Creating a Market Depth class&lt;br /&gt;&lt;li&gt;Working with events and methods of Market Depth class&lt;br /&gt;&lt;li&gt;etc&lt;br /&gt;&lt;/ol&gt;</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4130/</id>
    <title type="text">Safe Connection</title>
    <published>2013-11-12T12:57:39Z</published>
    <updated>2013-11-12T12:57:39Z</updated>
    <author>
      <name>Валентин Мирошниченко</name>
      <uri>https://stocksharp.com/users/6156/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Edu" />
    <content type="html">&lt;iframe width="640" height="390" src="//www.youtube.com/embed/qMgnUM3to6w" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br /&gt;In this video, we will create helper modules, which will relieve us from the same type of action from project to project!&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:120%"&gt;Subjects:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Creation of a safe wrappers for different connectors&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Creating a safe version of the universal connection&lt;br /&gt;&lt;li&gt;Creating a visual WPF control, which will use our wrapper over the connector&lt;br /&gt;&lt;/ol&gt;</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4125/</id>
    <title type="text">lesson_faq</title>
    <published>2013-11-12T04:46:35Z</published>
    <updated>2013-11-12T04:46:35Z</updated>
    <author>
      <name>Lazyt3ch</name>
      <uri>https://stocksharp.com/users/39286/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Algorithmic trading" />
    <content type="html">&lt;span style="font-size:120%"&gt;Frequenly asked questions:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;b&gt;Are your training courses focused on &lt;a href="http://stocksharp.com/doc/?topic=html/769f74c8-6f8e-4312-a867-3dc6e8482636.htm" title="http://stocksharp.com/doc/?topic=html/769f74c8-6f8e-4312-a867-3dc6e8482636.htm"&gt;QUIK&lt;/a&gt;&lt;/b&gt; only?&lt;br /&gt;No, they are not. As a matter of fact, after completing our course, you will be able to create an algo strategy for any platform supported by S# (QUIK, Alfa-Direct, SmartCOM, etc.). That’s because you only need to modify a small portion of the source code to connect to a different trading terminal (&lt;a href="http://stocksharp.com/forum/yaf_postsm26662_Urok-1--Bystryi-start-StockSharp.aspx#post26662" title="http://stocksharp.com/forum/yaf_postsm26662_Urok-1--Bystryi-start-StockSharp.aspx#post26662"&gt;see Lesson One&lt;/a&gt;). More video lessons are available. Watch them to learn about working with less popular trading platforms and about their peculiarities.&lt;br /&gt;&lt;li&gt;&lt;b&gt;Can I get your video lessons on a DVD or other media?&lt;/b&gt;&lt;br /&gt;Sorry, we do not provide our lessons this way to prevent piracy.&lt;br /&gt;&lt;li&gt;&lt;b&gt;For how long will I be able to access the lessons?&lt;/b&gt;&lt;br /&gt;After paying for a training course, you can access the main video lessons literally forever! &lt;br /&gt;&lt;li&gt;&lt;b&gt;Can I buy a &lt;a href="http://stocksharp.com/lesson/wealth.aspx" title="http://stocksharp.com/lesson/wealth.aspx"&gt;S#.WealthLab&lt;/a&gt; adapter without buying any training courses?&lt;/b&gt;&lt;br /&gt;Yes, you can. In this case, you will get the adapter without any technical support or updates, with a 50 percent discount from the WealthLab main course’s regular price.&lt;br /&gt;&lt;li&gt;&lt;b&gt;Can I buy the C# course from you?&lt;/b&gt;&lt;br /&gt;We do not sell the C# course separately, but only as an addition to the S# or WealthLab courses.&lt;br /&gt;&lt;li&gt;&lt;b&gt;How long does it take to learn C#?&lt;/b&gt;&lt;br /&gt;By polling our students, we found out that it usually takes one or two months. You can always find a C# teacher at our &lt;a href="http://stocksharp.com/forum/yaf_forum10_Obuchieniie.aspx" title="http://stocksharp.com/forum/yaf_forum10_Obuchieniie.aspx"&gt;forum&lt;/a&gt; or in &lt;a href="http://stocksharp.com/forum/yaf_postst3722_Alghotrieidingh--TFS--proiekty--chaty--komandnaia-rabota.aspx" title="http://stocksharp.com/forum/yaf_postst3722_Alghotrieidingh--TFS--proiekty--chaty--komandnaia-rabota.aspx"&gt;online chats&lt;/a&gt;!&lt;br /&gt;&lt;li&gt;&lt;b&gt;Can I attend the S# or WealthLab courses if I have no programming skills at all?&lt;/b&gt;&lt;br /&gt;Surely you can! The first part of the S# and WealthLab courses is a C# course for beginners.&lt;br /&gt;&lt;li&gt;&lt;b&gt;There are some video lessons with restricted access on the forum. How can I watch them?&lt;/b&gt;&lt;br /&gt;You can access them as soon as you pay for the courses.&lt;br /&gt;&lt;li&gt;&lt;b&gt;&lt;span style="color:green"&gt;How can I pay for the courses?&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;Submit a request for attending a course of your choice, pay the specified sum, and we will open you access to the restricted resources (video lessons and software). You can pay via the &lt;a target="_blank" rel="nofollow" href="https://stocksharp.com/away/?u=AQAAAAAAAAAq7BmW8TjV6uMmN0cYx6-N_PlJYmxsQbrCJkl5IyVXtg" title="http://www.platron.ru/"&gt;Platron&lt;/a&gt; integrated system, which supports a lot of payment options.&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4123/</id>
    <title type="text">lesson_chat</title>
    <published>2013-11-12T04:40:55Z</published>
    <updated>2013-11-12T04:40:55Z</updated>
    <author>
      <name>Lazyt3ch</name>
      <uri>https://stocksharp.com/users/39286/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Edu" />
    <content type="html">&lt;span style="font-size:120%"&gt;&lt;div align="center"&gt;&lt;span style="color:green"&gt;TFS (teamwork, chats, updates)!&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;&lt;b&gt;Team Foundation Service/Server&lt;/b&gt; (TFS) is a Microsoft product that provides an all-in-one solution for teamwork. Its key feature is the cloud project repository. You can access projects via &lt;a href="http://stocksharp.com/forum/3475/Proghrammy-nieobkhodimyie-dlia-raboty/" title="http://stocksharp.com/forum/3475/Proghrammy-nieobkhodimyie-dlia-raboty/"&gt;Visual Studio&lt;/a&gt; (teamwork)&lt;/em&gt;.&lt;br /&gt;&lt;br /&gt;To use this service, you must subscribe to &lt;a href="http://stocksharp.com/lesson/bonus/" title="http://stocksharp.com/lesson/bonus/"&gt;&lt;span style="color:green"&gt;EduLive&lt;/span&gt;&lt;/a&gt; courses (S#, WealthLab)!&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;a href='https://stocksharp.com/file/102519/tfs.jpg' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102519/tfs.jpg?size=800x800" alt="http://" title="http://" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Primary objectives of TFS:&lt;/b&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Access to the main and extra projects (strategies, examples) of the S# and WealthLab training courses (watch for changes or additions).&lt;br /&gt;&lt;li&gt;Online technical support. Common chats for discussing interesting ideas.&lt;br /&gt;&lt;li&gt;Public repositories where any users can upload their source code. Upload your project to show the changes in the code to other students.&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How to join?&lt;/b&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Create a &lt;a target="_blank" rel="nofollow" href="https://stocksharp.com/away/?u=AQAAAAAAAAB74y5ioHhpB-qAsoGR49TssLTNWV5hoviyLHGsNIBRCQ" title="https://login.live.com/"&gt;Microsoft Live&lt;/a&gt; account. &lt;br /&gt;&lt;li&gt;Send your LiveID (e-mail address) to &lt;a href="mailto:lesson@stocksharp.com"&gt;lesson@stocksharp.com&lt;/a&gt;&lt;br /&gt;&lt;li&gt;Wait for our e-mail message! &lt;b&gt;Follow the &lt;a target="_blank" href="https://stocksharp.com/file/102522/%25D0%25A0%25D0%25B0%25D0%25B1%25D0%25BE%25D1%2582%25D0%25B0-%25D0%25B2-Team-Foundation-Service.pdf" title="https://stocksharp.com/file/102522/%25D0%25A0%25D0%25B0%25D0%25B1%25D0%25BE%25D1%2582%25D0%25B0-%25D0%25B2-Team-Foundation-Service.pdf"&gt;instructions&lt;/a&gt;.&lt;/b&gt; &lt;br /&gt;&lt;li&gt;Join our algo community! &lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;TFS lets you:&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Watch for updates in projects. Check what has changed and download the latest version of a project to your computer.&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;a href='https://stocksharp.com/file/102520/1.png' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102520/1.png?size=800x800" alt="http://" title="http://" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Add new features to your application, and share your code with other community members.&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;a href='https://stocksharp.com/file/102529/resource.jpg' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102529/resource.jpg?size=800x800" alt="http://" title="http://" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Discuss a project and changes to it in team chats. Share your opinion about the new changes, ask your colleagues for advice, and make suggestions to improve the project. Here you can also find technical support (C#, S#).&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;a href='https://stocksharp.com/file/102516/TFS-%D1%81hat.PNG' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102516/TFS-%D1%81hat.PNG?size=800x800" alt="http://" title="http://" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Version control for your application. A lot of features that you can use when developing your applications.&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;a href='https://stocksharp.com/file/102521/2.png' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102521/2.png?size=800x800" alt="http://" title="http://" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;StockSharp TFS repositories:&lt;/b&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Lessons — S# training course projects. &lt;br /&gt;&lt;li&gt;Extra Lessons — Additional projects and lessons.&lt;br /&gt;&lt;li&gt;Shell — The shell for additional algo strategies.&lt;br /&gt;&lt;li&gt;Public — Our students’ projects and our own training stuff. &lt;br /&gt;(You can upload your source code to share with other students, download other students’ projects, discuss projects, etc.)&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4121/</id>
    <title type="text">lesson</title>
    <published>2013-11-12T04:37:02Z</published>
    <updated>2013-11-12T04:37:02Z</updated>
    <author>
      <name>Lazyt3ch</name>
      <uri>https://stocksharp.com/users/39286/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Algorithmic trading" />
    <content type="html">&lt;div align="center"&gt;&lt;span style="font-size:120%"&gt;&lt;span style="color:green"&gt;Welcome to StockSharp training courses!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;em&gt;Send us an e-mail or call us: &lt;a href="mailto:lesson@stocksharp.com"&gt;lesson@stocksharp.com&lt;/a&gt; +7(499)653-82-24&lt;/em&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;iframe width="640" height="390" src="//www.youtube.com/embed/Cn4tdZgG4lo" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;We started training students in 2011, and we have already trained more than 300 people. We work together with our students, develop new projects, and have our algo community.&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:green"&gt;&lt;span style="font-size:120%"&gt;Main &lt;a href="http://stocksharp.com/lesson/bonus/" title="http://stocksharp.com/lesson/bonus/"&gt;bonuses&lt;/a&gt; for our students:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="float:left; padding:10px"&gt;&lt;a href='https://stocksharp.com/file/102929/1.png' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102929/1.png?size=100x100" style="width:100px;height=100px" alt="auto" title="auto" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;b&gt;Distance learning&lt;/b&gt;. Distance learning using video lessons. You can find our training courses in the special section of our &lt;a href="http://stocksharp.com/forum/tags/%D0%9E%D0%B1%D1%83%D1%87%D0%B5%D0%BD%D0%B8%D0%B5/" title="http://stocksharp.com/forum/tags/%D0%9E%D0%B1%D1%83%D1%87%D0%B5%D0%BD%D0%B8%D0%B5/"&gt;forum&lt;/a&gt;. There you can watch video lessons, ask questions, talk with other students, and solve interesting problems to better learn new things.&lt;br /&gt;&lt;br /&gt;&lt;span style="float:left; padding:10px"&gt;&lt;a href='https://stocksharp.com/file/102930/2.png' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102930/2.png?size=100x100" style="width:100px;height=100px" alt="auto" title="auto" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;b&gt;Algo strategy repository&lt;/b&gt;. We continue developing and improving our algo strategies. Together with our students, we make the strategies better. We already have more than 10 ready-to-use algo strategies.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="float:left; padding:10px"&gt;&lt;a href='https://stocksharp.com/file/102561/chat.png' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102561/chat.png?size=100x100" style="width:100px;height=100px" alt="auto" title="auto" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;b&gt;We are a team!&lt;/b&gt; Now our students can discuss algo trading with their colleagues in online chats and watch for changes in projects! They can find first-line support here, too. &lt;a href="http://stocksharp.com/lesson/chat/" title="http://stocksharp.com/lesson/chat/"&gt;Read more...&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="float:left; padding:10px"&gt;&lt;a href='https://stocksharp.com/file/102146/robot_testing.png' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102146/robot_testing.png?size=100x100" style="width:100px;height=100px" alt="auto" title="auto" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;b&gt;S#.Shell&lt;/b&gt; is a simplified version of S#.Studio that lets you edit source code. Use S#.Shell as a powerful, ready-made shell for your algo strategy! &lt;a href="http://stocksharp.com/products/shell/" title="http://stocksharp.com/products/shell/"&gt;Read more...&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="float:left; padding:10px"&gt;&lt;a href='https://stocksharp.com/file/102442/2.png' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102442/2.png?size=100x100" style="width:100px;height=100px" alt="auto" title="auto" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;b&gt;S#.WealthLab&lt;/b&gt;. By using our adapter, you can send signals from WealthLab to any S# connectors (Russia, the United States, or Forex). &lt;a href="http://stocksharp.com/products/wld/" title="http://stocksharp.com/products/wld/"&gt;Read more...&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:green"&gt;&lt;span style="font-size:120%"&gt;You don’t have to &lt;a href="http://stocksharp.com/lesson/feedback/" title="http://stocksharp.com/lesson/feedback/"&gt;take our word&lt;/a&gt;:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;span class="quotetitle"&gt;Quote:&lt;/span&gt;&lt;div class="innerquote"&gt;&lt;b&gt;PavelS:&lt;/b&gt; I completed the Advanced S# Course almost one year ago. From time to time, I watch the old webinars again, which always remind me how great was Artem at helping students.   I am still an amateur programmer, and my algo strategies are simple and primitive, but I have already tried arbitrage between MICEX and LSE (ADR), pairs trading, counter-trend strategies, and more. I did all that based on Artem’s course. I’m happy to see that the training course and the library are being extended and improved.&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="quote"&gt;&lt;span class="quotetitle"&gt;Quote:&lt;/span&gt;&lt;div class="innerquote"&gt;&lt;b&gt;Federigo:&lt;/b&gt; Good evening! The courses are AMAZING!!! Big thanks to the whole StockSharp team. I loved the course, which helped me a lot. I’ve been looking for a “launch pad” to start programming algo strategies for a year, and haven’t found an alternative to StockSharp. Special thanks to Artem!!! He explained everything in the smallest detail, and gave answers to all questions. It was very interesting :)&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;span style="font-size:120%"&gt;&lt;span style="color:green"&gt;&lt;a href="http://stocksharp.com/lesson/feedback/" title="http://stocksharp.com/lesson/feedback/"&gt;Corporate testimonials&lt;/a&gt;:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='https://stocksharp.com/file/101815/%D0%B1%D0%BB%D0%B0%D0%B3%D0%BE%D0%B4%D0%B0%D1%80%D0%BD%D0%BE%D1%81%D1%82%D1%8C.png' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/101815/%D0%B1%D0%BB%D0%B0%D0%B3%D0%BE%D0%B4%D0%B0%D1%80%D0%BD%D0%BE%D1%81%D1%82%D1%8C.png?size=150x150" style="width:150px;height=150px" alt="OAO Chelyabenergosbyt" title="OAO Chelyabenergosbyt" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='https://stocksharp.com/file/102435/290513-page-001.jpg' class='lightview' data-lightview-options="skin: 'mac'" data-lightview-group='mixed'&gt;&lt;img src="https://stocksharp.com/file/102435/290513-page-001.jpg?size=150x150" style="width:150px;height=150px" alt="OLMA investment firm" title="OLMA investment firm" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:120%"&gt;&lt;span style="color:green"&gt;Our training courses: &lt;a href="http://stocksharp.com/lesson/stocksharp/" title="http://stocksharp.com/lesson/stocksharp/"&gt;S#&lt;/a&gt;, &lt;a href="http://stocksharp.com/lesson/wealth/" title="http://stocksharp.com/lesson/wealth/"&gt;Wealth-Lab&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4105/</id>
    <title type="text">StockSharp Start</title>
    <published>2013-11-08T11:36:15Z</published>
    <updated>2013-11-08T11:36:15Z</updated>
    <author>
      <name>Валентин Мирошниченко</name>
      <uri>https://stocksharp.com/users/6156/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Edu" />
    <content type="html">&lt;iframe width="640" height="390" src="//www.youtube.com/embed/doiqm_Do0ds" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br /&gt;In this lesson.  We will set up S# and create the first automated trading strategies!&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&lt;span style="font-size:120%"&gt;Subjects:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Basic concepts of StockSharp&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Products of StockSharp&lt;br /&gt;&lt;li&gt;Architecture of StockSharp&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;Connectors&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Overview of connectors&lt;br /&gt;&lt;li&gt;Specificity of data transmission to connectors&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;Сreating a simple application using S# API&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Connection to the trading platform&lt;br /&gt;&lt;li&gt;Getting portfolios and Instruments&lt;br /&gt;&lt;li&gt;Sending orders to trading platform&lt;br /&gt;&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4021/</id>
    <title type="text">Information about development s#</title>
    <published>2013-10-02T07:34:29Z</published>
    <updated>2013-10-02T07:34:29Z</updated>
    <author>
      <name>auriou</name>
      <uri>https://stocksharp.com/users/50064/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Algorithmic trading" />
    <content type="html">Hello,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m French developer c # and I find your trading tool very well developed. I would like to understand how it works to develop an investment strategy in the Forex market.&lt;br /&gt;I have a few questions before I start in developing around your platform.&lt;br /&gt;- Is it expected you to translate your software S # studio in English?&lt;br /&gt;- Is it possible to use the Forex European market, there he was impossibilities that are related to the specifics of the Russian market?&lt;br /&gt;- Will it among the suppliers of data you have, a European broker that I began to educate myself on your platform (FxConnect, Dukascopy)?&lt;br /&gt;- I want to develop a strategy based on my analysis of indicators of several currencies (several graphs or instruments) with different time scales to trigger my orders to a value, is this possible?&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;&lt;br /&gt;Francais : &lt;br /&gt;&lt;br /&gt;Bonjour,&lt;br /&gt;&lt;br /&gt;Je suis fran&amp;#231;ais d&amp;#233;veloppeur c# et je trouve votre outil de trading tr&amp;#232;s bien d&amp;#233;velopp&amp;#233;. J’aimerais comprendre son fonctionnement pour d&amp;#233;velopper une strat&amp;#233;gie d’investissement sur le march&amp;#233; du Forex.&lt;br /&gt;J’ai quelques questions avant de me lancer dans le d&amp;#233;veloppement autour de votre plateforme.&lt;br /&gt;-	Est-il pr&amp;#233;vu que vous traduisiez votre logiciel S# studio en anglais ? &lt;br /&gt;-	Est-ce qu’il est possible de l’utiliser sur le march&amp;#233; du Forex Europ&amp;#233;en, y a-t-il des impossibilit&amp;#233;s qui seraient li&amp;#233;es aux sp&amp;#233;cificit&amp;#233;s du march&amp;#233; russe ?&lt;br /&gt;-	Y a-t-il parmi les fournisseurs de donn&amp;#233;es que vous avez, un broker europ&amp;#233;en pour que je commence a me former sur votre plateforme (FxConnect , Dukascopy ) ?&lt;br /&gt;-	Je souhaite d&amp;#233;velopper une strat&amp;#233;gie en me basant sur l’analyse d’indicateurs de plusieurs devises (plusieurs graphes ou instruments) avec diff&amp;#233;rentes &amp;#233;chelles de temps pour d&amp;#233;clencher mes ordres sur une valeur, est-ce possible ?&lt;br /&gt;&lt;br /&gt;Merci.</content>
  </entry>
  <entry>
    <id>https://stocksharp.com/topic/4019/</id>
    <title type="text">Trading FX with Interactive Brokers</title>
    <published>2013-10-01T22:33:20Z</published>
    <updated>2013-10-01T22:33:20Z</updated>
    <author>
      <name>ken123</name>
      <uri>https://stocksharp.com/users/49744/</uri>
      <email>info@stocksharp.com</email>
    </author>
    <category term="Algorithmic trading" />
    <content type="html">Hi,&lt;br /&gt;&lt;br /&gt;I don&amp;#39;t speak and read Russian, sorry. But I like this Stocksharp and want to trade Forex on Interactive Brokers.&lt;br /&gt;&lt;br /&gt;Could somebody help me and explain how to add Forex contracts in Hydra and Studio (in Russian is ok so I can translate) for broker IB?&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;</content>
  </entry>
</feed>