diff --git a/Core/Helper/SystemHelper.cs b/Core/Helper/SystemHelper.cs index da10013..c315e50 100644 --- a/Core/Helper/SystemHelper.cs +++ b/Core/Helper/SystemHelper.cs @@ -536,16 +536,7 @@ namespace Core.Helper string result = "#"; if (platform.Equals("TradingView")) { - result = "https://www.tradingview.com/chart/?symbol=" + exchange.ToUpper() + ":"; - - string pairName = SystemHelper.StripBadCode(market, Constants.WhiteListMinimal); - - if (pairName.StartsWith(mainMarket)) - { - pairName = pairName.Replace(mainMarket, "") + mainMarket; - } - - result += pairName; + result = "https://www.tradingview.com/symbols/" + market.ToUpper() + "/?exchange=" + exchange.ToUpper(); } else if (platform.Equals("TradingViewFutures")) { 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 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
-

Market Trends at @Model.PTMagicConfiguration.GeneralSettings.Application.Exchange

+

Market Trend Averages at @Model.PTMagicConfiguration.GeneralSettings.Application.Exchange

@@ -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) ) { - + } else { diff --git a/Monitor/Pages/SalesAnalyzer.cshtml.cs b/Monitor/Pages/SalesAnalyzer.cshtml.cs index 9f74924..37725f3 100644 --- a/Monitor/Pages/SalesAnalyzer.cshtml.cs +++ b/Monitor/Pages/SalesAnalyzer.cshtml.cs @@ -161,7 +161,7 @@ namespace Monitor.Pages double AvailableBalance = PTData.GetCurrentBalance(); foreach (Core.Main.DataObjects.PTMagicData.DCALogData dcaLogEntry in PTData.DCALog) { - totalCurrentValue = totalCurrentValue + ((dcaLogEntry.Amount * dcaLogEntry.CurrentPrice) / dcaLogEntry.Leverage); + totalCurrentValue = totalCurrentValue + ((dcaLogEntry.Amount * dcaLogEntry.CurrentPrice) / dcaLogEntry.Leverage != 0 ? dcaLogEntry.Leverage : 1); } totalCurrentValue = totalCurrentValue + AvailableBalance; } diff --git a/Monitor/Pages/_get/BagDetails.cshtml b/Monitor/Pages/_get/BagDetails.cshtml index 88f2a35..087a4e1 100644 --- a/Monitor/Pages/_get/BagDetails.cshtml +++ b/Monitor/Pages/_get/BagDetails.cshtml @@ -102,7 +102,10 @@ diff --git a/Monitor/Pages/_get/DashboardBottom.cshtml.cs b/Monitor/Pages/_get/DashboardBottom.cshtml.cs index eeb3004..96bc581 100644 --- a/Monitor/Pages/_get/DashboardBottom.cshtml.cs +++ b/Monitor/Pages/_get/DashboardBottom.cshtml.cs @@ -196,15 +196,15 @@ namespace Monitor.Pages { if (sellStrategyText.Contains("PENDING")) { - PendingBalance = PendingBalance + ((dcaLogEntry.Amount * dcaLogEntry.CurrentPrice) / dcaLogEntry.Leverage); + PendingBalance = PendingBalance + ((dcaLogEntry.Amount * dcaLogEntry.CurrentPrice) / dcaLogEntry.Leverage != 0 ? dcaLogEntry.Leverage : 1); } else if (dcaLogEntry.BuyStrategies.Count > 0) { - DCABalance = DCABalance + ((dcaLogEntry.Amount * dcaLogEntry.CurrentPrice) / dcaLogEntry.Leverage); + DCABalance = DCABalance + ((dcaLogEntry.Amount * dcaLogEntry.CurrentPrice) / dcaLogEntry.Leverage != 0 ? dcaLogEntry.Leverage : 1); } else { - PairsBalance = PairsBalance + ((dcaLogEntry.Amount * dcaLogEntry.CurrentPrice) / dcaLogEntry.Leverage); + PairsBalance = PairsBalance + ((dcaLogEntry.Amount * dcaLogEntry.CurrentPrice) / dcaLogEntry.Leverage != 0 ? dcaLogEntry.Leverage : 1); } } } 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"); - } - } - } -} diff --git a/Monitor/wwwroot/assets/css/custom.css b/Monitor/wwwroot/assets/css/custom.css index 165ca0a..dbdce4a 100644 --- a/Monitor/wwwroot/assets/css/custom.css +++ b/Monitor/wwwroot/assets/css/custom.css @@ -132,13 +132,13 @@ a:active { .table { color : white; font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size : 12px; + font-size : 11px; } /* If the screen size is 400px wide or less, set the font-size of
to 30px */ @media screen and (max-width: 400px) { .table { - font-size: 10px; + font-size: 9px; } } 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 diff --git a/PTMagic/_defaults/_linux/PTMUpdate.sh b/PTMagic/_auto_updater/PTMUpdate.sh similarity index 100% rename from PTMagic/_defaults/_linux/PTMUpdate.sh rename to PTMagic/_auto_updater/PTMUpdate.sh diff --git a/_Development/CreateRelease.cmd b/_Development/CreateRelease.cmd index 612a331..f35624e 100644 --- a/_Development/CreateRelease.cmd +++ b/_Development/CreateRelease.cmd @@ -15,6 +15,7 @@ DEL /F /S /Q * REM Copy release files MD PTMagic XCOPY /Y /S ..\..\PTMagic\_defaults\* .\ +XCOPY /Y /S ..\..\PTMagic\_auto_updater\* .\PTMagic XCOPY /Y /S ..\..\PTMagic\bin\Release\PublishOutput .\PTMagic CD .\PTMagic DEL /F /S /Q _presets
  @trendChangeOutput%  @trendChangeOutput%