Replies

chernish2
03 Feb 2021, 08:29

RE:

OK, but still: are these things possible:

  • How to obtain a category for a symbol (in my example I want "US Equities (CFDs)" for stock symbols and "Forex" for forex symbols)?
  • Is it possible to obtain a list of categories ("US Equities (CFDs)", "Forex", ...) and all symbols for specific category?

Since this broker definitely set categories I would like to access them from code.

 

 

PanagiotisCharalampous said:

Hi chernish2,

It seems this broker has not set any descriptions for these symbols.

Best Regards,

Panagiotis 

Join us on Telegram 

 


@chernish2

chernish2
02 Feb 2021, 19:56 ( Updated at: 21 Dec 2023, 09:22 )

RE:

Here we go.

 

 

 

PanagiotisCharalampous said:

Hi chernish2,

You did not answer my question. Who is your broker? I cannot see stocks on ICMarkets.

Best Regards,

Panagiotis 

Join us on Telegram 

 


@chernish2

chernish2
02 Feb 2021, 15:29 ( Updated at: 21 Dec 2023, 09:22 )

RE:

I'm interested in CFD for stocks, not Forex.

So I would like to see MSFT for Microsoft, AAPL for Apple etc.

Is it possible?

 

PanagiotisCharalampous said:

Hi chernish2,

Are you using IC Markets? It looks fine to me.

Best Regards,

Panagiotis 

Join us on Telegram 

 

 


@chernish2

chernish2
01 Feb 2021, 09:02

RE:

Yes, but this is definitely not the full list.

 

PanagiotisCharalampous said:

Hi chernish2,

You can find some brokers here.

Best Regards,

Panagiotis 

Join us on Telegram

 


@chernish2

chernish2
18 Mar 2020, 10:59 ( Updated at: 21 Dec 2023, 09:21 )

RE:

I'm sorry but this seem to be hard for understanding.

Can you provide more details please? How exactly this function should work?

And are there any other means to make it simple?

Thank you in advance.

 

PanagiotisCharalampous said:

Hi chernish2,

You can use Linked Charts and link the chart with the Active Symbol Panel. If the chart is linked, then the symbol in the Active Symbol Panel will also change. See below

Best Regards,

Panagiotis 

Join us on Telegram

 

 


@chernish2

chernish2
01 Dec 2019, 10:44

RE:

PanagiotisCharalampous said:

Hi chernish2,

It is not possible at the moment but new methods will be introduced in 3.7 that will allow you to do that.

Best Regards,

Panagiotis

Can I kindly ask when 3.7 will be released?


@chernish2

chernish2
07 Nov 2019, 13:15

RE:

Panagiotis Charalampous said:

Hi chernish2,

Thanks for posting in our forum. Try the below

        var symbol = Symbols.GetSymbol("EURUSD");
        var askPrice = symbol.Ask;

Ok, this is perfectly fine! But I have some more questions.

1. When I'm doing 

Symbols.GetSymbols()

I'm getting a list of all available symbols like Forex, Metals, Indicies etc. How can I filter out only Forex (fiat) pairs?

2. I'm drawing a rectangle like this:

var rect = Chart.DrawRectangle("rect", MarketSeries.OpenTime[5], y1, MarketSeries.OpenTime.LastValue, y2, color);
rect.IsFilled = true;
rect.ZIndex = 1000;
rect.Color = Color.Chocolate;

How can I change its opacity and Z-Index? With any valy assigned to rect.ZIndex the thing still staying on top of everything.

Thank you!

 


@chernish2