File tree Expand file tree Collapse file tree 13 files changed +23
-18
lines changed
trading-bot-spring-boot-autoconfigure
src/test/java/tech/cassandre/trading/bot/test/batch
trading-bot-spring-boot-starter-archetype
trading-bot-spring-boot-starter
technical_analysis/ta4j-strategy Expand file tree Collapse file tree 13 files changed +23
-18
lines changed Original file line number Diff line number Diff line change 11# Cassandre
2- [ Complete documentation is available here ] ( https://trading-bot. cassandre. tech/ )
2+ ![ Continuous integration ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre- trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content= cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/ tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
33
4- ![ ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content=cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/tech.cassandre. trading.bot/cassandre-trading- bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech. cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
4+ [ Complete documentation is available here ] ( https://trading- bot. cassandre.tech/ )
Original file line number Diff line number Diff line change 88 <!-- Project information -->
99 <groupId >tech.cassandre.trading.bot</groupId >
1010 <artifactId >cassandre-trading-bot-project</artifactId >
11- <version >0.0.11 </version >
11+ <version >0.0.12 </version >
1212 <packaging >pom</packaging >
1313 <name >Cassandre trading bot</name >
1414 <url >https://github.com/cassandre-tech/cassandre-trading-bot</url >
Original file line number Diff line number Diff line change 11# Cassandre
2- [ Complete documentation is available here ] ( https://trading-bot. cassandre. tech/ )
2+ ![ Continuous integration ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre- trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content= cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/ tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
33
4- ![ ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content=cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/tech.cassandre. trading.bot/cassandre-trading- bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech. cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
4+ [ Complete documentation is available here ] ( https://trading- bot. cassandre.tech/ )
Original file line number Diff line number Diff line change 255255 <parent >
256256 <groupId >tech.cassandre.trading.bot</groupId >
257257 <artifactId >cassandre-trading-bot-project</artifactId >
258- <version >0.0.11 </version >
258+ <version >0.0.12 </version >
259259 </parent >
260260 <!-- =========================================================================================================== -->
261261
Original file line number Diff line number Diff line change 3434
3535import static org .awaitility .Awaitility .with ;
3636import static org .junit .jupiter .api .Assertions .assertEquals ;
37+ import static org .junit .jupiter .api .Assertions .assertTrue ;
3738import static org .mockito .BDDMockito .given ;
3839import static org .mockito .Mockito .mock ;
3940import static tech .cassandre .trading .bot .test .util .BaseTest .PARAMETER_INVALID_STRATEGY_DEFAULT_VALUE ;
@@ -91,8 +92,8 @@ public void multiThreadTest() {
9192 with ().await ().untilAsserted (() -> assertEquals (numberOfValuesExpected , testableStrategy .getOrdersUpdateReceived ().size ()));
9293
9394 // Checking that all other data have been received.
94- assertEquals ( numberOfValuesExpected , testableStrategy .getTickersUpdateReceived ().size ());
95- assertEquals ( numberOfValuesExpected , testableStrategy .getAccountsUpdatesReceived ().size ());
95+ assertTrue ( testableStrategy .getTickersUpdateReceived ().size () > 1 );
96+ assertTrue ( testableStrategy .getAccountsUpdatesReceived ().size () > 1 );
9697 }
9798
9899 /**
Original file line number Diff line number Diff line change 11# Cassandre
2- [ Complete documentation is available here ] ( https://trading-bot. cassandre. tech/ )
2+ ![ Continuous integration ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre- trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content= cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/ tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
33
4- ![ ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content=cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/tech.cassandre. trading.bot/cassandre-trading- bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech. cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
4+ [ Complete documentation is available here ] ( https://trading- bot. cassandre.tech/ )
Original file line number Diff line number Diff line change 103103 <parent >
104104 <groupId >tech.cassandre.trading.bot</groupId >
105105 <artifactId >cassandre-trading-bot-project</artifactId >
106- <version >0.0.11 </version >
106+ <version >0.0.12 </version >
107107 </parent >
108108 <!-- =========================================================================================================== -->
109109
Original file line number Diff line number Diff line change 11# Cassandre
2- [ Complete documentation is available here ] ( https://trading-bot. cassandre. tech/ )
2+ ![ Continuous integration ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre- trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content= cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/ tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
33
4- ![ ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content=cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/tech.cassandre. trading.bot/cassandre-trading- bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech. cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
4+ [ Complete documentation is available here ] ( https://trading- bot. cassandre.tech/ )
Original file line number Diff line number Diff line change 111111 <parent >
112112 <groupId >tech.cassandre.trading.bot</groupId >
113113 <artifactId >cassandre-trading-bot-project</artifactId >
114- <version >0.0.11 </version >
114+ <version >0.0.12 </version >
115115 </parent >
116116 <!-- =========================================================================================================== -->
117117
Original file line number Diff line number Diff line change 11# Cassandre
2- [ Complete documentation is available here ] ( https://trading-bot. cassandre. tech/ )
2+ ![ Continuous integration ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre- trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content= cassandre-tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade ) [ ![ Maven Central ] ( https://img.shields.io/maven-central/v/ tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central )] ( https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22 )
33
4- ![ ] ( https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg ) [ ![ Codacy Badge ] ( https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8 )] ( https://www.codacy.com/gh/cassandre-tech/cassandre- trading-bot?utm_source=github.com & amp ; utm_medium=referral & amp ; utm_content= cassandre- tech/cassandre-trading-bot & amp ; utm_campaign=Badge_Grade )
4+ [ Complete documentation is available here ] ( https://trading-bot. cassandre. tech/ )
You can’t perform that action at this time.
0 commit comments