Bitstamp Trade Connector
Features
crypto-bitstampConnector Key✗
Order Status Request
✗
Cancel On Disconnect
✓
Commission
✓
Post Only
✗
Fast Cancel
✗
Fast Replace
Notes
Request Limits
As standard, all clients can make 400 requests per second. There is a default limit threshold of 10,000 requests per 10 minutes in place. The rate limits mentioned above can be increased upon request and the client entering a bespoke agreement with Bitstamp.
Subscription
Bitstamp does not reject subscription for an instrument even if the symbol is wrong. Double-check that exchange symbols are properly specified.
Rejection with reason Not found indicates that symbol is invalid/unknown.
PostOnly
note
PostOnly flag (18=6) is applied only for GTC orders.
Bitstamp does not allow to mix moc_order (aka PostOnly) and TIF options (like daily_order etc.).
Symbology
https://www.bitstamp.net/api/v2/trading-pairs-info/
Configuration
Connector settings
| Parameter | Default Value | Description |
|---|---|---|
| marginType | CROSS | Margin type. Valid values: ISOLATED, CROSS. |
| leverage | 1 | Valid values for leverage are decimal numbers greater than, or equal to 1. |
Supported order attributes
| Key | Description |
|---|---|
| 18 | ExecInst(18). Valid values: 6 for PostOnly orders. |
| 6030 | Margin Type. Valid values: ISOLATED, CROSS. |
| 6031 | Leverage. Valid values: decimal numbers greater than, or equal to 1. |
Config sample
connectors {
BITSTAMP: ${template.connector.crypto.bitstamp} {
settings {
restUrl = "https://www.bitstamp.net"
websocketUrl = "wss://ws.bitstamp.net"
apiKeys: [
{
apiKey = "<API_KEY>"
apiSecret = "<API_SECRET>"
}
]
}
}
}