When using the configuration with the parameter:
endpoint_api_type=live
The following error message is generated:
net.jacobpeterson.alpaca.rest.AlpacaClientException: java.net.UnknownHostException: No such host is known (live.alpaca.markets)
I believe this is being caused by line 134 of main/java/net/jacobpeterson/alpaca/AlpacaAPI.java
brokerHostSubdomain = "live";
This should probably be:
brokerHostSubdomain = "api";
When using the configuration with the parameter: endpoint_api_type=live
The following error message is generated: net.jacobpeterson.alpaca.rest.AlpacaClientException: java.net.UnknownHostException: No such host is known (live.alpaca.markets)
I believe this is being caused by line 134 of main/java/net/jacobpeterson/alpaca/AlpacaAPI.java brokerHostSubdomain = "live";
This should probably be: brokerHostSubdomain = "api";
Thank you for all of your effort in this project!