Search found 546 matches

by Andry API support
Tue Dec 19, 2023 9:57 am
Forum: Bookmap API
Topic: Help Needed: Drawing Vertical Lines and Labels in Trading Data
Replies: 2
Views: 2944

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

Hi, the summary for APIs are here https://bookmap.com/knowledgebase/docs/API If you're a beginner you may want to start with Simplified API (Java) or Python API. https://bookmap.com/knowledgebase/docs/API#simplified-api https://bookmap.com/knowledgebase/docs/Addons-Python-API These will let you draw...
by Andry API support
Mon Dec 18, 2023 2:31 pm
Forum: New Features and Requests
Topic: Stock being halted the order book problem
Replies: 3
Views: 1925

Re: Stock being halted the order book problem

Hi, if you're talking about a cross, while market is closed, bid>ask. Thing is - at that point levels contain a mix of bids and asks. We do in fact not have separate coloring for a cross area on COB. We don't fully support crosses as those can't exist during active trading on high quality data, so i...
by Andry API support
Wed Dec 13, 2023 2:22 pm
Forum: General forum
Topic: Heatmap Issue,/layout.
Replies: 5
Views: 2898

Re: Heatmap Issue,/layout.

Those market makers are part of data, they are actual market participants, not something artificial.
Limiting the depth in heatmap settings would solve it, but it would just clip everything past certain level.
by Andry API support
Tue Dec 12, 2023 6:02 pm
Forum: General forum
Topic: Heatmap Issue,/layout.
Replies: 5
Views: 2898

Re: Heatmap Issue,/layout.

Hi Bruce,
to attach an image press "Full Editor & Preview" under the text box and then "Attachments" tab -> "Add files"
by Andry API support
Fri Dec 08, 2023 2:16 pm
Forum: General forum
Topic: Setups checklist addon
Replies: 2
Views: 2379

Re: Setups checklist addon

What is your Bookmap version? The addon is for Bookmap 7.4.
by Andry API support
Wed Dec 06, 2023 12:17 pm
Forum: General forum
Topic: dxFeed & Rithmic
Replies: 3
Views: 9232

Re: dxFeed & Rithmic

dxFeed and Rithmic are both providers of market data for CME futures: https://www.cmegroup.com/ and both support the full market depth. However, dxFeed offers historical market data and Rithmic focuses on low latency and high throughput trade execution software. Also, Rithmic supports the Market by ...
by Andry API support
Mon Nov 20, 2023 5:28 pm
Forum: General forum
Topic: ReConnect Issues
Replies: 7
Views: 3365

Re: ReConnect Issues

Hi, which data provider(exchange) you are having this issue with?
by Andry API support
Mon Nov 06, 2023 7:57 am
Forum: General forum
Topic: larger time frames and historical data
Replies: 6
Views: 5745

Re: larger time frames and historical data

If you have a Dxfeed or Omnifeed subscription by default you get up to 24 hours of historical/backfill data. If you use any other data feed like Rithmic, CQG etc you get 1 Hour of historical/backfill data. If you want to get more historical data then you have three options: 1. Subscribe to the dxFee...
by Andry API support
Thu Oct 19, 2023 12:47 pm
Forum: Bookmap API
Topic: Wrong close prices
Replies: 3
Views: 3774

Re: Wrong close prices

If you are plotting on main (primary) chart it will accept values in pips because there is the price axis on the right of the main chart. So it will multiply the passed value by pips.
But if you are plotting on the bottom chart it will plot exactly the passed value.
by Andry API support
Thu Oct 19, 2023 12:32 pm
Forum: Bookmap API
Topic: Wrong close prices
Replies: 3
Views: 3774

Re: Wrong close prices

in API price is measured in pips.
Here it must be equal to 0.25 because 17553 multiplied by 0.25 makes 4388.25
You can get pips values from the InstrumentInfo object which is passed to initialize method (if you are using Simplified API).