Search found 547 matches

by Andry API support
Mon Mar 01, 2021 10:52 am
Forum: Bookmap API
Topic: DarkPool / isOTC
Replies: 3
Views: 3110

Re: DarkPool / isOTC

Currently isOtc may be always false for external modules. I have added a feature request. Encourage other traders to leave their feedback in the request topic. Currently, it is the only way to increase the feature request priority.
by Andry API support
Mon Mar 01, 2021 10:49 am
Forum: New Features and Requests
Topic: TradeInfo#isOtc always false for external modules
Replies: 0
Views: 7036

TradeInfo#isOtc always false for external modules

I am looking to differentiate retail/algo trades vs. darkpool trades. I'm currently only looking at the ES, but hoped to apply the logic to other instruments. I've tracked all the trades coming thru on the onTrade() call, and thus far, I have not seen any trades where the isOTC flag is set to true....
by Andry API support
Mon Mar 01, 2021 10:29 am
Forum: General forum
Topic: Lines in Bookmap chart could show in Ninjatrader?
Replies: 1
Views: 11304

Re: Lines in Bookmap chart could show in Ninjatrader?

hi drakomaass, althoughit is techically possible it requires some software development skills and efforts: 1) MBO iceberg tracker has no API to expose data so you'll need to write your own iceberg detector to get the data. 2) use the data to draw lines in Bookmap ( example ). 3) create a Ninja indic...
by Andry API support
Mon Mar 01, 2021 10:20 am
Forum: General forum
Topic: Bracket orders in replay mode
Replies: 1
Views: 3528

Re: Bracket orders in replay mode

Hi, we need some screenshots and send you log please.
by Andry API support
Mon Mar 01, 2021 9:37 am
Forum: Bookmap API
Topic: Screen Space Painter Tools / APIs
Replies: 8
Views: 3548

Re: Screen Space Painter Tools / APIs

Hi, here is the demo for Simplified API (SimpleAttachable) providing the same feature as Layer1ApiCanvasColorsDemo (Core API/Attachable).
by Andry API support
Thu Feb 25, 2021 9:31 am
Forum: Bookmap API
Topic: Screen Space Painter Tools / APIs
Replies: 8
Views: 3548

Re: Screen Space Painter Tools / APIs

We have javadoc online now. Please use this url
http://javadoc.bookmap.com/maven2/relea ... /7.1.0.65/
You can scroll the classes on the left bottom to ScreenSpace classes.
by Andry API support
Tue Feb 23, 2021 8:06 am
Forum: Bookmap API
Topic: Screen Space Painter Tools / APIs
Replies: 8
Views: 3548

Re: Screen Space Painter Tools / APIs

There are some examples and some info in the javadoc. Examples: https://github.com/BookmapAPI/DemoStrategies/tree/7.1/Strategies/src/main/java/velox/api/layer1/simpledemo/screenspacepainter Javadoc: There is bm-l1api-javadoc.jar in your Bookmap program folder. Rename it to zip, extract and open the ...
by Andry API support
Tue Feb 23, 2021 7:02 am
Forum: Bookmap API
Topic: Using HistoricalDataModeListener
Replies: 5
Views: 2674

Re: Using HistoricalDataModeListener

Simplified API library must be outdated. The latest version is 7.1.0.65 so the dependency in your build.gradle should look like this

Code: Select all

    compileOnly group: 'com.bookmap.api', name: 'api-simplified', version: '7.1.0.65'
If this is the case rebuild your project.
by Andry API support
Sat Feb 20, 2021 7:22 am
Forum: Bookmap API
Topic: Using HistoricalDataModeListener
Replies: 5
Views: 2674

Re: Using HistoricalDataModeListener

Instead of HistoricalDataListener implement BackfilledDataListener (it extends HistoricalDataListener) so your indicator can plot over cloud historical data.
by Andry API support
Wed Feb 17, 2021 10:36 am
Forum: Bookmap API
Topic: Indicator recalculation
Replies: 4
Views: 2350

Re: Indicator recalculation

Does you module implement HistoricalDataListener or HistoricalModeListener?