Oanda had 193 last time I checked...
Check also Tickmill and Hotforex. They should definitely have 150+ instruments since apart from currencies they support bonds, indices, stocks commodities as well.Hello,
I wonder which broker offers the most symbols that can be accessed via MT4 in realtime? I know fxpro has quite a lot of symbols - maybe there is any other broker offering even more ??? like 200-300 symbols?
thanks - how did you count??))
I trade with algoritms, so it is as easy as writing len(instruments) and I get the answer 193. My code gets all the tickers to scan each individually for opportunities
sounds interesting - maybe you have seen a code which can download the data for all instruments (eg daily data) at once as batch code? 0 just run it once and you have the folder full of all csv files with the latest daily data for all instruments in MT4?
accountID = your_account
token = your_token
client = oandapyV20.API(access_token=token)
params = {'count': 5000,'granularity': 'S5', 'from':'1971-01-01'}
r = v20instruments.InstrumentsCandles(instrument='USD_NOK', params=params)
client.request(r)
r.response['candles']