io.github.mainstringargs.alpaca.rest.positions.GetOpenPositionsRequestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alpaca-java Show documentation
Show all versions of alpaca-java Show documentation
Java API for Alpaca trading
package io.github.mainstringargs.alpaca.rest.positions;
/**
* The Class GetOpenPositionsRequestBuilder.
*/
public class GetOpenPositionsRequestBuilder extends PositionsRequestBuilder {
/**
* Instantiates a new gets the open positions request builder.
*
* @param baseUrl the base url
*/
public GetOpenPositionsRequestBuilder(String baseUrl) {
super(baseUrl);
}
}