This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.ruin.model.world.messages.friends.chat; | |
| import io.ruin.model.entity.player.Player; | |
| import io.ruin.model.entity.player.friends.FriendsChat; | |
| import io.ruin.model.world.WorldMessage; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SKIP: { | |
| "time": "2022-02-17 | 18:30 (UTC)", | |
| "candle": { | |
| "color": "red", | |
| "open": 41002.5, | |
| "high": 41078.83, | |
| "low": 40928.08, | |
| "close": 40938.31, | |
| "change": "-65.04 (-0.16%)", | |
| "volume": "140.16" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.discrypto.client.screens.main; | |
| import com.discrypto.client.Client; | |
| import com.discrypto.client.scenes.StrategyScene; | |
| import com.discrypto.client.screens.Screen; | |
| import javafx.scene.input.MouseButton; | |
| import javafx.stage.Modality; | |
| public class StrategyScreen extends Screen<StrategyScene> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.discrypto.client.scenes; | |
| import javafx.fxml.FXML; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.layout.Pane; | |
| public class StrategyScene { | |
| @FXML public Pane pane; | |
| @FXML public Button backtest_button; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.discrypto.client.scenes; | |
| import javafx.fxml.FXML; | |
| import javafx.scene.control.Accordion; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Hyperlink; | |
| import javafx.scene.control.ScrollPane; | |
| import javafx.scene.layout.AnchorPane; | |
| import javafx.scene.layout.Pane; | |
| import javafx.scene.web.WebView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.discrypto.client; | |
| import com.discrypto.client.screens.Screen; | |
| import com.discrypto.client.screens.main.MainScreen; | |
| import javafx.application.Application; | |
| import javafx.fxml.FXMLLoader; | |
| import javafx.scene.Scene; | |
| import javafx.stage.Stage; | |
| import java.io.IOException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>org.discrypto</groupId> | |
| <artifactId>trading-client</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <packaging>jar</packaging> | |
| <name>trading-client</name> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.discrypto.client; | |
| import javafx.application.Platform; | |
| import javafx.scene.control.ButtonBar; | |
| import javafx.scene.control.ButtonType; | |
| import javafx.scene.control.Dialog; | |
| import lombok.Getter; | |
| import lombok.Setter; | |
| import org.discrypto.client.model.User; | |
| import org.discrypto.client.screens.Screen; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.discrypto.client; | |
| import javafx.application.Platform; | |
| import javafx.scene.control.ButtonBar; | |
| import javafx.scene.control.ButtonType; | |
| import javafx.scene.control.Dialog; | |
| import lombok.Getter; | |
| import lombok.Setter; | |
| import org.discrypto.client.model.User; | |
| import org.discrypto.client.screens.Screen; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.discrypto.client; | |
| import javafx.application.Platform; | |
| import javafx.scene.control.ButtonBar; | |
| import javafx.scene.control.ButtonType; | |
| import javafx.scene.control.Dialog; | |
| import lombok.Getter; | |
| import lombok.Setter; | |
| import org.discrypto.client.model.User; | |
| import org.discrypto.client.screens.Screen; |
OlderNewer