Search found 546 matches

by Andry API support
Mon Mar 04, 2024 4:17 pm
Forum: General forum
Topic: Buy or Sell
Replies: 10
Views: 1000

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: 1000

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: 1000

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: 1000

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: 496

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: 1000

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.
by Andry API support
Mon Feb 26, 2024 9:20 am
Forum: New Features and Requests
Topic: FIBONACCI
Replies: 1
Views: 250

Re: FIBONACCI

We are working on addons library that will include this indicator.
by Andry API support
Thu Jan 18, 2024 10:02 am
Forum: Bookmap API
Topic: Layer1ApiSoundAlertMessage WARN message help
Replies: 5
Views: 2360

Re: Layer1ApiSoundAlertMessage WARN message help

You can unzip the javadoc from "C:\Program Files\Bookmap\lib\bm-l1api-javadoc.jar" (this is the location for Windows) and find some info there. If you have questions about API you may also ask them in the Discord Bookmap API channel.
https://discord.com/channels/7965002039 ... 9483396147
by Andry API support
Wed Dec 27, 2023 10:00 am
Forum: General forum
Topic: bookmap data
Replies: 1
Views: 1861

Re: bookmap data

No, Ninja Trader does not allow it. But we recommend that you contact them directly to make sure.
by Andry API support
Tue Dec 19, 2023 9:59 am
Forum: Bookmap API
Topic: Help Needed: Drawing Vertical Lines and Labels in Trading Data
Replies: 2
Views: 2963

Re: Help Needed: Drawing Vertical Lines and Labels in Trading Data

For vertical lines you will need to use Core API, please take a look at these examples
https://github.com/BookmapAPI/DemoStrat ... acepainter