From 44404e2f301e78500750937c786bb989390c74dc Mon Sep 17 00:00:00 2001
From: HojouFotytu <36724681+HojouFotytu@users.noreply.github.com>
Date: Fri, 12 Feb 2021 13:38:36 +0900
Subject: [PATCH 1/4] wording changes for clarity
---
Monitor/Pages/MarketAnalyzer.cshtml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Monitor/Pages/MarketAnalyzer.cshtml b/Monitor/Pages/MarketAnalyzer.cshtml
index 691e585..37a7ff2 100644
--- a/Monitor/Pages/MarketAnalyzer.cshtml
+++ b/Monitor/Pages/MarketAnalyzer.cshtml
@@ -155,7 +155,7 @@ else
-
+
@@ -280,7 +280,7 @@ else
string trendChangeOutput = mps.MarketTrendChanges[marketTrend.Name].ToString("#,#0.00", new System.Globalization.CultureInfo("en-US"));
if ((mps.MarketTrendChanges[marketTrend.Name] > marketTrend.TrendThreshold) || (mps.MarketTrendChanges[marketTrend.Name] > marketTrend.TrendThreshold) )
{
- @trendChangeOutput% |
+ @trendChangeOutput% |
}
else
{
From b5b0fc95a3f20d134b1dc637134f51988117c31c Mon Sep 17 00:00:00 2001
From: HojouFotytu <36724681+HojouFotytu@users.noreply.github.com>
Date: Thu, 18 Feb 2021 00:24:47 +0900
Subject: [PATCH 2/4] added icon for TSL
---
Core/ProfitTrailer/StrategyHelper.cs | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/Core/ProfitTrailer/StrategyHelper.cs b/Core/ProfitTrailer/StrategyHelper.cs
index db866e7..b211fe0 100644
--- a/Core/ProfitTrailer/StrategyHelper.cs
+++ b/Core/ProfitTrailer/StrategyHelper.cs
@@ -22,7 +22,14 @@ namespace Core.ProfitTrailer
// PT allows for "advanced_stats" to show details of the trailing logic and dynamic formulas.
if (result.Contains("STATS") || result.Contains("DYN"))
{
- result = "";
+ if (result.Contains("STATS-TSL") && (!result.Contains("TSL-STRAT")))
+ {
+ result = "TSL";
+ }
+ else
+ {
+ result = "";
+ }
}
// strategy labels with variable values
if (result.Contains("BUY TIMEOUT AS"))
@@ -411,7 +418,14 @@ namespace Core.ProfitTrailer
else if (strategy.Name.Contains("STATS"))
// Avoid displaying advanced buy stats and completed level formulas
{
- strategy.Name = "";
+ if (strategy.Name.Contains("STATS-TSL") && (!strategy.Name.Contains("TSL-STRAT")))
+ {
+ strategyText += "" + StrategyHelper.GetStrategyShortcut(strategy.Name, false) + " ";
+ }
+ else
+ {
+ strategy.Name = "";
+ }
}
else if (strategy.Name.Contains("FORMULA"))
// Avoid displaying formula details
From 89e7534e40bd9f755cb3151b6d4ccc6984134f33 Mon Sep 17 00:00:00 2001
From: JackTerok
Date: Wed, 17 Feb 2021 16:29:08 +0100
Subject: [PATCH 3/4] Remove unused download function.
---
Monitor/Pages/_get/DownloadFile.cshtml | 5 ----
Monitor/Pages/_get/DownloadFile.cshtml.cs | 36 -----------------------
2 files changed, 41 deletions(-)
delete mode 100644 Monitor/Pages/_get/DownloadFile.cshtml
delete mode 100644 Monitor/Pages/_get/DownloadFile.cshtml.cs
diff --git a/Monitor/Pages/_get/DownloadFile.cshtml b/Monitor/Pages/_get/DownloadFile.cshtml
deleted file mode 100644
index e47402b..0000000
--- a/Monitor/Pages/_get/DownloadFile.cshtml
+++ /dev/null
@@ -1,5 +0,0 @@
-@page
-@model DownloadFileModel
-@{
- Layout = null;
-}
\ No newline at end of file
diff --git a/Monitor/Pages/_get/DownloadFile.cshtml.cs b/Monitor/Pages/_get/DownloadFile.cshtml.cs
deleted file mode 100644
index 63498ca..0000000
--- a/Monitor/Pages/_get/DownloadFile.cshtml.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
-using Core.Main;
-using Core.Helper;
-using Core.Main.DataObjects.PTMagicData;
-using Core.MarketAnalyzer;
-
-namespace Monitor.Pages {
- public class DownloadFileModel : _Internal.BasePageModelSecure {
-
- public void OnGet() {
- // Initialize Config
- base.Init();
-
- InitializeDownload();
- }
-
- private void InitializeDownload() {
- string fileName = GetStringParameter("f", "");
- if (System.IO.File.Exists(PTMagicBasePath + fileName)) {
- if (!System.IO.Directory.Exists(PTMagicMonitorBasePath + "wwwroot" + System.IO.Path.DirectorySeparatorChar + "assets" + System.IO.Path.DirectorySeparatorChar + "tmp" + System.IO.Path.DirectorySeparatorChar)) {
- System.IO.Directory.CreateDirectory(PTMagicMonitorBasePath + "wwwroot" + System.IO.Path.DirectorySeparatorChar + "assets" + System.IO.Path.DirectorySeparatorChar + "tmp" + System.IO.Path.DirectorySeparatorChar);
- }
-
- string sourcefilePath = PTMagicBasePath + fileName;
- string destinationFilePath = PTMagicMonitorBasePath + "wwwroot" + System.IO.Path.DirectorySeparatorChar + "assets" + System.IO.Path.DirectorySeparatorChar + "tmp" + System.IO.Path.DirectorySeparatorChar + fileName + ".zip";
-
- ZIPHelper.CreateZipFile(new ArrayList() { sourcefilePath }, destinationFilePath);
-
- Response.Redirect(PTMagicConfiguration.GeneralSettings.Monitor.RootUrl + "assets/tmp/" + fileName + ".zip");
- }
- }
- }
-}
From 0d2ca8c28f1a0aa3b28d8844379ff83a4f95b2ad Mon Sep 17 00:00:00 2001
From: HojouFotytu <36724681+HojouFotytu@users.noreply.github.com>
Date: Thu, 18 Feb 2021 01:07:03 +0900
Subject: [PATCH 4/4] increment version
---
PTMagic/Program.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/PTMagic/Program.cs b/PTMagic/Program.cs
index dd9d492..ff6fbbd 100644
--- a/PTMagic/Program.cs
+++ b/PTMagic/Program.cs
@@ -6,7 +6,7 @@ using Core.Helper;
using Microsoft.Extensions.DependencyInjection;
-[assembly: AssemblyVersion("2.5.3")]
+[assembly: AssemblyVersion("2.5.4")]
[assembly: AssemblyProduct("PT Magic")]
namespace PTMagic