Any way to get all list of available Symbol Codes?

Created at 18 Mar 2017, 01:37
AlgoCorner's avatar

AlgoCorner

Joined 12.05.2015

Any way to get all list of available Symbol Codes?
18 Mar 2017, 01:37


I'm not sure there's such thing in the API, but if so, I would like to know it.

Thanks.


@AlgoCorner
Replies

... Deleted by UFO ...

AlgoCorner
20 Mar 2017, 04:30

Thank you Lucian, 

I drop this in case someone else needs it,

        string[] _Codes = new string[] 
        {
            "EURUSD",
            "GBPUSD",
            "EURJPY",
            "USDJPY",
            "AUDUSD",
            "USDCHF",
            "GBPJPY",
            "USDCAD",
            "EURGBP",
            "EURCHF",
            "AUDJPY",
            "NZDUSD",
            "CHFJPY",
            "EURAUD",
            "CADJPY",
            "GBPAUD",
            "EURCAD",
            "AUDCAD",
            "GBPCAD",
            "USDNOK",
            "AUDCHF",
            "USDMXN",
            "GBPNZD",
            "CADCHF",
            "USDSEK",
            "GBPCHF",
            "EURRUB",
            "USDRUB",
            "USDCHN",
            "EURSEK",
            "GBPZAR",
            "USDTRY",
            "NZDCHF",
            "EURPLN",
            "USDZAR",
            "EURMXN",
            "EURDKK",
            "EURHUF",
            "SGDJPY",
            "EURNOK",
            "EURHKD",
            "GBPNOK",
            "USDHUF",
            "NZDCAD",
            "EURZAR",
            "EURCZK",
            "NZDSGD",
            "USDPLN",
            "EURNZD",
            "AUDNZD",
            "EURTRY",
            "USDDKK",
            "NZDJPY",
            "USDCZK",
            "USDSGD",
            "GBPSGD",
            "GBPSEK",
            "AUDDKK",
            "AUDSGD",
            "AUDZAR",
            "CADMXN",
            "CHFNOK",
            "CHFSGD",
            "CHFZAR",
            "DKKNOK",
            "DKKSEK",
            "EURCNH",
            "EURRON",
            "EURSGD",
            "GBPDKK",
            "GBPTRY",
            "HKDJPY",
            "NOKJPY",
            "NOKSEK",
            "NZDSEK",
            "USDRON",
            "ZARJPY",
            "SEKJPY"
        };

 


@AlgoCorner