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);
}
}
Kommentare (12)
Anmelden oder Konto erstellen, Melden Sie sich an oder registrieren Sie sich, um einen Kommentar zu hinterlassen
Hello
Please use this method https://stocksharp.com/posts/m/51282/
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";
In attach the whole project. Video - https://i.gyazo.com/60cb49b0e7b0eaad928b43dda5dfbe57.mp4
Please try again the project.
Hello
Your codes works well https://i.gyazo.com/f27e838824e6e3911047fb5d9e76454e.mp4
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.
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?
The Oanda account is newly created last week.
You can try this one deleted - it is create today. Do you have prices?
Yes, the price are showing for the key you provided. I am not sure why my key is not working.
I have contacted Oanda, They told me my account was on an old server, I had to re-recreate the account again. So, my new API key is working properly. I am seeing price for all currency pair. Now, I can continue with the lessons.
Thank you for your patient and help.