Search found 43 matches

by rickbarlow
Thu Jan 18, 2024 6:51 pm
Forum: Bookmap API
Topic: Layer1ApiSoundAlertMessage WARN message help
Replies: 5
Views: 2360

Re: Layer1ApiSoundAlertMessage WARN message help

I hadn't looked at the Readme. Sorry, thanks. You can close this item now.
by rickbarlow
Wed Jan 17, 2024 9:45 pm
Forum: Bookmap API
Topic: Layer1ApiSoundAlertMessage WARN message help
Replies: 5
Views: 2360

Re: Layer1ApiSoundAlertMessage WARN message help

Thank you, but is there any documentation on the group of API's that are used? I can cut and paste from the examples, and play around with modifying them to meet my needs, but I don't understand the calls in the example.
by rickbarlow
Fri Jan 12, 2024 5:43 pm
Forum: Bookmap API
Topic: Layer1ApiSoundAlertMessage WARN message help
Replies: 5
Views: 2360

Layer1ApiSoundAlertMessage WARN message help

Version 7.4.0 Build 16 Whenever I call the function below, it works as expected, with the exception that I get a WARN in the Bookmap Log. What do I need to do to get rid of the WARNing. I haven't found any documentation to help on this.  20240111 23:13:11.091(UTC) INFO: [SoundAlertsManager] Obtained...
by rickbarlow
Tue Jan 03, 2023 2:28 pm
Forum: New Features and Requests
Topic: Help avoid shutting down
Replies: 0
Views: 2188

Help avoid shutting down

I would like to keep bookmap running continuously. I am sure many others would as well. But if I leave it running more than a day, I start to see the slowdown due to lack of system resources since bookmap seems to cache it all in memory. So instead, I make an effort to shutdown and restart every day...
by rickbarlow
Fri Mar 11, 2022 1:27 pm
Forum: New Features and Requests
Topic: Start Bookmap automatically
Replies: 2
Views: 3453

Re: Start Bookmap automatically

are there any command line parameters that can be added so that it will automatically start in the live mode by default and not require you to select those settings in the initial pop-up dialog that loads now?
by rickbarlow
Thu Mar 10, 2022 5:07 pm
Forum: Bookmap API
Topic: Alert Table Filling Up - Need to delete rows
Replies: 1
Views: 9522

Alert Table Filling Up - Need to delete rows

Hi, My indicator uses alot of memory, and I'm trying to find ways to reduce it. I use alot of drawing functions, and some tables, and I also use the built in Sound Alerts, which dumps messages into the Alerts table. There are times where I sends alot of alerts, seems to be happening alot more becaus...
by rickbarlow
Tue Nov 09, 2021 10:37 pm
Forum: Bookmap API
Topic: Can I control the z-order of added shapes
Replies: 1
Views: 2210

Can I control the z-order of added shapes

I want to be able to draw lines and shapes on the screen and be able to control which of the shapes are on top vs. which are below. I am using addShape call, but I don't see a way to control which shape is visible. For instance, if I want to draw a line across the screen, and also want other shapes ...
by rickbarlow
Thu Nov 04, 2021 4:50 pm
Forum: Bookmap API
Topic: Sending an Interrupt (e.g. Interval Message) in Replay
Replies: 2
Views: 7887

Re: Sending an Interrupt (e.g. Interval Message) in Replay

Thank you for pointing me in a direction!!
by rickbarlow
Mon Nov 01, 2021 11:02 pm
Forum: Bookmap API
Topic: Drawing a horizontal or vertical line segment in past
Replies: 1
Views: 1633

Re: Drawing a horizontal or vertical line segment in past

Nevermind... I figured it out with the use of examples already there.         public void drawHorizontalLine(long t1, long t2, double price, Color color) {             CompositeHorizontalCoordinate x1 = new CompositeHorizontalCoordinate(CompositeCoordinateBase.DATA_ZERO, 0, t1);             Composit...
by rickbarlow
Mon Nov 01, 2021 9:12 pm
Forum: Bookmap API
Topic: Drawing a horizontal or vertical line segment in past
Replies: 1
Views: 1633

Drawing a horizontal or vertical line segment in past

I have a question about drawing a line between price points in the primary window that are in the past and future. Examples : 1) I want to draw a horizontal line from 9:00AM - 4:15PM today at price = 4500.00. The current time is 1:00PM 2) I want to draw a vertical line at 10:00AM from 4500.00 to 451...