Search found 20 matches

by DanyloL
Sun Jan 17, 2021 7:12 am
Forum: Bookmap API
Topic: Using QuotesDelta example class
Replies: 3
Views: 1663

Re: Using QuotesDelta example class

AndreyR wrote:
Fri Jan 15, 2021 2:36 pm
It is a part of the demo indicators package which are OK to be reused.

Thanks, Andrey!
by DanyloL
Fri Jan 15, 2021 12:34 pm
Forum: Bookmap API
Topic: Using QuotesDelta example class
Replies: 3
Views: 1663

Re: Using QuotesDelta example class

Also, using this class I tried to replicate the Quotes Delta right-side indicator that Bookmap provides (as a table near COB). I hope, it's legally acceptable. 
by DanyloL
Fri Jan 15, 2021 8:20 am
Forum: Bookmap API
Topic: Using QuotesDelta example class
Replies: 3
Views: 1663

Using QuotesDelta example class

Hi. I want to clarify if I can use the example class QuotesDelta as a basis upon which I will make an indicator for my client (commercial personal project). We want to extend its functionality to visualize that data more conveniently.
Thank you.
by DanyloL
Tue Dec 22, 2020 9:08 am
Forum: Bookmap API
Topic: Get Bookmap zoom level through Bookmap API
Replies: 1
Views: 1364

Get Bookmap zoom level through Bookmap API

Hi. Is it possible to get a zoom level of the current Bookmap view (screenshots attached) through Bookmap API, while developing an indicator? If not, is there a way to get a similar information to implement a feature like the Bookmap Volume Dots aggregation, which are combined if you zoom out and di...
by DanyloL
Sun Dec 20, 2020 10:36 am
Forum: Bookmap API
Topic: Custom horizontal bar builder
Replies: 4
Views: 9713

Re: Custom horizontal bar builder

Thanks
by DanyloL
Tue Dec 15, 2020 6:38 am
Forum: Bookmap API
Topic: Custom horizontal bar builder
Replies: 4
Views: 9713

Custom horizontal bar builder

Hi. I'm developing a custom indicator for my client and I want to find out if I can build horizontal bars (like in a picture below). If it's possible, are there any code samples implementing them? If it's not, what are the alternatives? As I've only made lines such as  GraphType.PRIMARY and GraphTyp...
by DanyloL
Tue Nov 03, 2020 7:41 am
Forum: Bookmap API
Topic: MarketByOrderDepthDataListener
Replies: 3
Views: 2161

Re: MarketByOrderDepthDataListener

Thank you for helping via email.
The thing was that you need to turn off the 'aggregate data' and it starts to work on each of the above markets correctly.
by DanyloL
Mon Nov 02, 2020 11:04 am
Forum: Bookmap API
Topic: MarketByOrderDepthDataListener
Replies: 3
Views: 2161

Re: MarketByOrderDepthDataListener

Hi, Currenly it is not possible to check MBO data availability with API. MBO is supported with Rithmic (CME, CBOT, NYMEX, COMEX). Pls check ESZ0 one more time. I tested my indicator on ESZ0 record and the methods (like send() ) from the interface didn't send anything, as the indicator didn't show u...
by DanyloL
Sun Nov 01, 2020 7:11 am
Forum: Bookmap API
Topic: MarketByOrderDepthDataListener
Replies: 3
Views: 2161

MarketByOrderDepthDataListener

Hi. I have a new question. How to determine which markets does  MarketByOrderDepthDataListener interface support? It looks like it does support ESH0.CME@RITHMIC but doesn't support ESZ0.CME@RITHMIC nor NQZ0.CME@RITHMIC. Is there a way to determine this without testing on different markets? Maybe I d...
by DanyloL
Sat Oct 31, 2020 7:17 am
Forum: Bookmap API
Topic: Bookmap API price getting process
Replies: 13
Views: 6393

Re: Bookmap API price getting process

Hi! the price you're getting is measured in pips. You need to multiply it by pips value to get the readable price. You can get it from InstrumentInfo object in initialize method. @Override public void initialize(String alias, InstrumentInfo info, Api api, InitialState initialState) { You can draw l...