I got the currency list to show by adding the Oanda nuget pkg, but I am not seeing the price of the security when i click on a currency.

I got the currency list to show by adding the Oanda nuget pkg, but I am not seeing the price of the security when i click on a currency.
Atom
02.09.2020


I got the currency list to show by adding the Oanda nuget pkg, but I am not seeing the price of the security when i click on a currency.

public partial class MainWindow : Window
{
private Connector _connector = new Connector();
private string _connectFile = "ConnectFile";

public MainWindow()
{
InitializeComponent();
if (File.Exists(_connectFile))
{
_connector.Load(new XmlSerializer<SettingsStorage>().Deserialize(_connectFile));
}
}

private void Setting_Click(object sender, RoutedEventArgs e)
{
if (_connector.Configure(this))
{
new XmlSerializer<SettingsStorage>().Serialize(_connector.Save(), _connectFile);
}
}

private void Connect_Click(object sender, RoutedEventArgs e)
{
SecurityPicker.SecurityProvider = _connector;
SecurityPicker.MarketDataProvider = _connector;
_connector.Connected += this.Connector_Connected;

_connector.Connect();
}

private void Connector_Connected()
{
_connector.LookupSecurities(new Security() { Code = "USD/JPY" });
}

private void SecurityPicker_SecuritySelected(Security security)
{
if (security == null) return;
_connector.SubscribeFilteredMarketDepth(security);
//_connector.RegisterSecurity(security);
}
}



Спасибо:


1 2  >
Support

Фотография
Дата: 02.09.2020
Ответить


Hello

Please use this method https://stocksharp.ru/posts/m/51282/
Спасибо:

Vladimir Vincent

Фотография
Дата: 02.09.2020
Ответить


Ref: Oanda.
I have used the function _connector.SubscribeMarketDepth(security); and its still does not work. It does not show the price of the currency see code below.
I have clicked on the currency, and the price do not show.
This is really frustrating, both the lesson video and documentation is lacking.
Please send a working code for the first lesson video.

public partial class MainWindow : Window
{
private Connector _connector = new Connector();
private string _connectFile = "ConnectFile";

public MainWindow()
{
InitializeComponent();
if (File.Exists(_connectFile))
{
_connector.Load(new XmlSerializer<SettingsStorage>().Deserialize(_connectFile));
}
}

private void Setting_Click(object sender, RoutedEventArgs e)
{
if (_connector.Configure(this))
{
new XmlSerializer<SettingsStorage>().Serialize(_connector.Save(), _connectFile);
}
}

private void Connect_Click(object sender, RoutedEventArgs e)
{
SecurityPicker.SecurityProvider = _connector;
SecurityPicker.MarketDataProvider = _connector;
_connector.Connected += this.Connector_Connected;

_connector.Connect();
}

private void Connector_Connected()
{
_connector.LookupSecurities(new Security() { Code = "USD/JPY" });
}

private void SecurityPicker_SecuritySelected(Security security)
{
if (security == null) return;
_connector.SubscribeMarketDepth(security);
}
}
image5905.png 71 KB (280)
Спасибо:

Support

Фотография
Дата: 02.09.2020
Ответить


In attach the whole project. Video - https://i.gyazo.com/60cb...aad928b43dda5dfbe57.mp4

Please try again the project.
Спасибо:

Support

Фотография
Дата: 03.09.2020
Ответить


Hello

Your codes works well https://i.gyazo.com/f27e...3911047fb5d9e76454e.mp4

1) Do you use demo account?
2) Do you use some VPN or firewalls?
Спасибо:

Vladimir Vincent

Фотография
Дата: 03.09.2020
Ответить



Yes, I am using a demo account on Oanda.
No, I do not use VPN or firewalls
Спасибо:

Support

Фотография
Дата: 03.09.2020
Ответить


Vladimir Vincent Перейти

Yes, I am using a demo account on Oanda.
No, I do not use VPN or firewalls


Send us to support@stocksharp.com your token, please. We will try it with your codes.
Спасибо:

Vladimir Vincent

Фотография
Дата: 03.09.2020
Ответить



Ok, I have sent the Oanda token via email.
Спасибо:

Support

Фотография
Дата: 03.09.2020
Ответить


Vladimir Vincent Перейти

Ok, I have sent the Oanda token via email.


Your account do not work as well. How long you use your demo account? It is newly created or your created many months ago?
Спасибо:

Vladimir Vincent

Фотография
Дата: 03.09.2020
Ответить


The Oanda account is newly created last week.
Спасибо:

Support

Фотография
Дата: 03.09.2020
Ответить


Vladimir Vincent Перейти
The Oanda account is newly created last week.


You can try this one deleted - it is create today. Do you have prices?
Спасибо:
1 2  >

Добавить файлы через драг-н-дроп, , или вставить из буфера обмена.

loading
clippy