Search found 546 matches

by Andry API support
Thu Apr 04, 2024 12:09 pm
Forum: New Features and Requests
Topic: Camarilla Pivot Points
Replies: 1
Views: 134

Re: Camarilla Pivot Points

Thank you for your request.
by Andry API support
Wed Apr 03, 2024 10:39 am
Forum: General forum
Topic: Java Simplified API: Question regarding accessing Orderbook data
Replies: 3
Views: 188

Re: Java Simplified API: Question regarding accessing Orderbook data

Order book can be null if depth data starts a bit late which may be at the very beginning of data feed. Please check if it is null before accessing it.

Code: Select all

    @Override
    public void onBar(OrderBook ob, Bar bar) {
        if (ob != null) {
            //your code here
by Andry API support
Wed Apr 03, 2024 6:29 am
Forum: General forum
Topic: Java Simplified API: Question regarding accessing Orderbook data
Replies: 3
Views: 188

Re: Java Simplified API: Question regarding accessing Orderbook data

Thx for your question, we will figure that out. API should work correctly for any Bookmap package.
by Andry API support
Wed Mar 20, 2024 1:34 pm
Forum: Bookmap API
Topic: Large Trade Alert
Replies: 10
Views: 744

Re: Large Trade Alert

Sure, here it is package velox.api.layer1.simplified.demo; import velox.api.layer1.annotations.Layer1ApiVersion; import velox.api.layer1.annotations.Layer1ApiVersionValue; import velox.api.layer1.annotations.Layer1SimpleAttachable; import velox.api.layer1.annotations.Layer1StrategyName; import velox...
by Andry API support
Tue Mar 19, 2024 2:46 pm
Forum: Bookmap API
Topic: Large Trade Alert
Replies: 10
Views: 744

Re: Large Trade Alert

Hi, I subscribed to Winj24 and what I got were trades, 2 lines per trade (these are small trades) 20240318 12:30:28.324(UTC) INFO: .aggressorOrderId 1618@@@ .passiveOrderId 120@@@783016205145 .isExecutionStart true .isExecutionEnd false 20240318 12:30:28.325(UTC) INFO: .aggressorOrderId null .passiv...
by Andry API support
Mon Mar 18, 2024 7:51 am
Forum: Bookmap API
Topic: Large Trade Alert
Replies: 10
Views: 744

Re: Large Trade Alert

Sorry for a delayed response, we are checking it and will let you know.
by Andry API support
Tue Mar 12, 2024 3:03 pm
Forum: Bookmap API
Topic: Large Trade Alert
Replies: 10
Views: 744

Re: Large Trade Alert

Please see the quick guide to demo strategies https://github.com/BookmapAPI/DemoStrategies Then, please take a look at this example https://github.com/BookmapAPI/DemoStrategies/blob/master/Strategies/src/main/java/velox/api/layer1/simplified/demo/LastTradeDemoNoHistory.java This addon has onTrade me...
by Andry API support
Tue Mar 12, 2024 2:51 pm
Forum: Bookmap API
Topic: Capture ADD-ON Signals
Replies: 3
Views: 257

Re: Capture ADD-ON Signals

Currently not. But this year Bookmap will implement access from API to some addon's values.
by Andry API support
Fri Mar 08, 2024 9:58 am
Forum: Bookmap API
Topic: Large Trade Alert
Replies: 10
Views: 744

Re: Large Trade Alert

A large trade may involve multiple executions. Please keep an eye on
TradeInfo#isExecutionStart and isExecutionEnd and then join all of those together.