File tree Expand file tree Collapse file tree 1 file changed +41
-4
lines changed
Expand file tree Collapse file tree 1 file changed +41
-4
lines changed Original file line number Diff line number Diff line change 22[ ![ ] ( https://jitpack.io/v/CodeCLS/Lemon-Markets-Java-SDK.svg )] ( https://jitpack.io/#CodeCLS/Lemon-Markets-Java-SDK )
33
44Hey there,
5- this SDK is not developed by lemon.markets and the company is not afiliated with me.
6- However, I enjoyed the API so much, that I decided to create a simple SDK for Java.
5+ I enjoyed the API so much, that I decided to create a simple SDK for Java.
76I hope you enjoy it.
87
8+ --Mentioned on their Website: https://docs.lemon.markets/resources/community-sdks --
9+
910
1011<H3 >build.gradle implementation(Jitpack):</H3 >
1112
13+ <H4 >Jitpack implementation</H4 >
14+
1215``` groovy
16+
17+ Gradle..
18+
1319allprojects {
1420repositories {
1521 maven { url 'https://jitpack.io' }
1622 }
1723}
24+ ```
25+
26+
27+
28+ ``` groovy
29+
30+ or...Maven...
31+
32+ <repositories>
33+ <repository>
34+ <id>jitpack.io</id>
35+ <url>https://jitpack.io</url>
36+ </repository>
37+ </repositories>
1838
1939```
2040
41+
42+ <H4 >Repo implementation</H4 >
43+
44+
2145``` groovy
46+ Gradle...
2247
2348dependencies {
2449 implementation 'com.github.CodeCLS:Lemon-Markets-Java-SDK:1.0.0.0'
2550}
51+ ```
52+
2653
54+ ``` groovy
55+
56+ or...Maven...
57+
58+ <dependency>
59+ <groupId>com.github.CodeCLS</groupId>
60+ <artifactId>Lemon-Markets-Java-SDK</artifactId>
61+ <version>Tag</version>
62+ </dependency>
2763```
28- <H3 >__Setup Environment & Token__</H3 >
64+
65+ <H3 >Setup Environment & Token</H3 >
2966
30671 . __ Choose your environment (Paper/Live)__
3168
@@ -38,7 +75,7 @@ TradingEnvironment.LIVE
38752 . __ Enter your token__
3976
4077``` java
41-
78+
4279TradingApplication tradingApplication = new TradingApplication .Builder ()
4380 .setEnvironment(TradingEnvironment . PAPER )
4481 .setToken(" <TOKEN>" );
You can’t perform that action at this time.
0 commit comments