Category of Symbols

Created at 18 Oct 2024, 23:04
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
VIZAINT's avatar

VIZAINT

Joined 18.09.2024

Category of Symbols
18 Oct 2024, 23:04


This loop shows all the symbols that exist, my question is if it is possible to know which group it belongs to, for example: "Forex" or "Share"

for (int a = 0; a < Symbols.Count(); a++)
            {
                var sym = Symbols[a];
                Print(sym);
            }

I have read the documentation, it is obsolete


@VIZAINT
Replies

PanagiotisCharalampous
19 Oct 2024, 05:09

Hi there,

Unfortunately there is no such information available in the API at the moment.

Best regards,

Panagiotis


@PanagiotisCharalampous