Safety orders online displayed on details

This commit is contained in:
Nicolás Sánchez 2025-09-05 16:11:22 -03:00
parent 94137f57e6
commit ab82f95a03
1 changed files with 1 additions and 0 deletions

View File

@ -1145,6 +1145,7 @@ public class WorkerInterface {
"Next safety order price: " + String.format(Locale.ROOT, numberFormat,result.getNextSoPrice()) + "\n" +
"Take profit order ID: " + result.getTpOrderId() + "\n" +
"Safety order ID: " + result.getSoOrderId() + "\n" +
"Safety orders online: " + result.getSafetyOrders().size() + "\n" +
"Short: " + result.getIsShort() + "\n" +
"Boosted: " + result.getIsBoosted() + "\n" +
"Paused: " + result.getIsPaused() + "\n" + isPausedExtraString +