Search found 550 matches

by Andry API support
Tue Mar 12, 2024 3:03 pm
Forum: Bookmap API
Topic: Large Trade Alert
Replies: 10
Views: 1943

Re: Large Trade Alert

Please see the quick guide to demo strategies https://github.com/BookmapAPI/DemoStrategies Then, please take a look at this example https://github.com/BookmapAPI/DemoStrategies/blob/master/Strategies/src/main/java/velox/api/layer1/simplified/demo/LastTradeDemoNoHistory.java This addon has onTrade me...
by Andry API support
Tue Mar 12, 2024 2:51 pm
Forum: Bookmap API
Topic: Capture ADD-ON Signals
Replies: 3
Views: 786

Re: Capture ADD-ON Signals

Currently not. But this year Bookmap will implement access from API to some addon's values.
by Andry API support
Fri Mar 08, 2024 9:58 am
Forum: Bookmap API
Topic: Large Trade Alert
Replies: 10
Views: 1943

Re: Large Trade Alert

A large trade may involve multiple executions. Please keep an eye on
TradeInfo#isExecutionStart and isExecutionEnd and then join all of those together.
by Andry API support
Mon Mar 04, 2024 4:17 pm
Forum: General forum
Topic: Buy or Sell
Replies: 10
Views: 2088

Re: Buy or Sell

Please use this link for orderbook and data types description https://bookmap.com/knowledgebase/docs/KB-Bookmap-Wiki-Market-Mechanics#order-book Please note, only CoinbasePro (crypto) and Rithmic (futures) supply MBO data. CoinbasePro is in the Digital (free) package but Rithmic is only in some paid...
by Andry API support
Fri Mar 01, 2024 7:00 am
Forum: General forum
Topic: Buy or Sell
Replies: 10
Views: 2088

Re: Buy or Sell

TradeInfo#passiveOrderId is a limit order's id.
TradeInfo#aggressorOrderId is a market order's id.
These values will be null if the data is not MBO.
by Andry API support
Thu Feb 29, 2024 3:40 pm
Forum: General forum
Topic: Buy or Sell
Replies: 10
Views: 2088

Re: Buy or Sell

For non-MBO data, DepthDataListener#onDepth deals with limit orders, right. But it does show changes to price levels volume rather than individual orders. For MBO data you may use MboDataListener which deals with each order individually. But when these orders limit sell or buy are launched, they go ...
by Andry API support
Wed Feb 28, 2024 5:18 pm
Forum: General forum
Topic: Buy or Sell
Replies: 10
Views: 2088

Re: Buy or Sell

`tradeInfo.isBidAggressor` a bid is a buyer, an ask is a seller. An aggressor here is a (typically) market order that gets executed against a limit order. So if tradeInfo.isBidAggressor == true , it means a market buy order has been executed to a limit sell order. onTrade gets triggered with trades ...
by Andry API support
Wed Feb 28, 2024 5:12 pm
Forum: General forum
Topic: Deprecated Gradle
Replies: 4
Views: 1170

Re: Deprecated Gradle

Hi, please follow the steps in this answer. You will need to run gradle outside IDEA to figure what is wrong
https://stackoverflow.com/a/70120647/15539205
by Andry API support
Tue Feb 27, 2024 6:58 am
Forum: General forum
Topic: Buy or Sell
Replies: 10
Views: 2088

Re: Buy or Sell

Hi, if your question has to do with Bookmap API and MBO data, you can use MarketByOrderDepthDataListener in Simplified API which has isBid flag in its `send` method.
If not, please give more details about your case.