2018-05-22 10:11:50 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Net;
|
|
|
|
|
using System.Net.Security;
|
|
|
|
|
using System.Security.Cryptography.X509Certificates;
|
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Core.Main;
|
|
|
|
|
using Core.Helper;
|
|
|
|
|
using Core.Main.DataObjects.PTMagicData;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace Core.ProfitTrailer {
|
|
|
|
|
public static class SettingsHandler {
|
|
|
|
|
public static string GetMainMarket(PTMagicConfiguration systemConfiguration, List<string> pairsLines, LogHelper log) {
|
|
|
|
|
string result = "";
|
|
|
|
|
|
|
|
|
|
foreach (string line in pairsLines) {
|
|
|
|
|
if (line.Replace(" ", "").StartsWith("MARKET", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
result = line.Replace("MARKET", "", StringComparison.InvariantCultureIgnoreCase);
|
|
|
|
|
result = result.Replace("#", "");
|
|
|
|
|
result = result.Replace("=", "").Trim();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetMarketPairs(PTMagicConfiguration systemConfiguration, List<string> pairsLines, LogHelper log) {
|
|
|
|
|
string result = "";
|
|
|
|
|
|
|
|
|
|
foreach (string line in pairsLines) {
|
|
|
|
|
if (line.Replace(" ", "").StartsWith("ALL_enabled_pairs", StringComparison.InvariantCultureIgnoreCase) || line.Replace(" ", "").StartsWith("enabled_pairs", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
result = line.Replace("ALL_enabled_pairs", "", StringComparison.InvariantCultureIgnoreCase);
|
|
|
|
|
result = result.Replace("enabled_pairs", "", StringComparison.InvariantCultureIgnoreCase);
|
|
|
|
|
result = result.Replace("#", "");
|
|
|
|
|
result = result.Replace("=", "").Trim();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 06:23:10 +02:00
|
|
|
|
public static string GetActiveSetting(PTMagic ptmagicInstance, ref bool headerLinesAdded) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
string result = "";
|
|
|
|
|
|
2018-05-23 06:23:10 +02:00
|
|
|
|
foreach (string line in ptmagicInstance.PairsLines) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (line.IndexOf("PTMagic_ActiveSetting", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
result = line.Replace("PTMagic_ActiveSetting", "", StringComparison.InvariantCultureIgnoreCase);
|
|
|
|
|
result = result.Replace("#", "");
|
|
|
|
|
result = result.Replace("=", "").Trim();
|
|
|
|
|
result = SystemHelper.StripBadCode(result, Constants.WhiteListProperties);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 08:02:25 +02:00
|
|
|
|
if (result.Equals("")) {
|
2018-05-23 06:23:10 +02:00
|
|
|
|
SettingsHandler.WriteHeaderLines("Pairs", ptmagicInstance);
|
|
|
|
|
SettingsHandler.WriteHeaderLines("DCA", ptmagicInstance);
|
|
|
|
|
SettingsHandler.WriteHeaderLines("Indicators", ptmagicInstance);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
headerLinesAdded = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 06:23:10 +02:00
|
|
|
|
public static void WriteHeaderLines(string fileType, PTMagic ptmagicInstance) {
|
|
|
|
|
List<string> fileLines = (List<string>)ptmagicInstance.GetType().GetProperty(fileType + "Lines").GetValue(ptmagicInstance, null);
|
|
|
|
|
|
2018-05-22 10:11:50 +02:00
|
|
|
|
// Writing Header lines
|
2018-05-23 06:23:10 +02:00
|
|
|
|
fileLines.Insert(0, "");
|
|
|
|
|
fileLines.Insert(0, "# ####################################");
|
|
|
|
|
fileLines.Insert(0, "# PTMagic_LastChanged = " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString());
|
|
|
|
|
fileLines.Insert(0, "# PTMagic_ActiveSetting = " + SystemHelper.StripBadCode(ptmagicInstance.DefaultSettingName, Constants.WhiteListProperties));
|
|
|
|
|
fileLines.Insert(0, "# ####### PTMagic Current Setting ########");
|
|
|
|
|
fileLines.Insert(0, "# ####################################");
|
2018-05-23 07:44:31 +02:00
|
|
|
|
|
|
|
|
|
ptmagicInstance.GetType().GetProperty(fileType + "Lines").SetValue(ptmagicInstance, fileLines);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Dictionary<string, string> GetPropertiesAsDictionary(List<string> propertyLines) {
|
|
|
|
|
Dictionary<string, string> result = new Dictionary<string, string>();
|
|
|
|
|
|
|
|
|
|
foreach (string line in propertyLines) {
|
|
|
|
|
if (!line.StartsWith("#", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
string[] lineContentArray = line.Split("=");
|
|
|
|
|
if (lineContentArray.Length == 2) {
|
|
|
|
|
if (!result.ContainsKey(lineContentArray[0].Trim())) {
|
|
|
|
|
result.Add(lineContentArray[0].Trim(), lineContentArray[1].Trim());
|
|
|
|
|
} else {
|
|
|
|
|
result[lineContentArray[0].Trim()] = lineContentArray[1].Trim();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetCurrentPropertyValue(Dictionary<string, string> properties, string propertyKey, string fallbackPropertyKey) {
|
|
|
|
|
string result = "";
|
|
|
|
|
|
|
|
|
|
if (properties.ContainsKey(propertyKey)) {
|
|
|
|
|
result = properties[propertyKey];
|
|
|
|
|
} else if (!fallbackPropertyKey.Equals("") && properties.ContainsKey(fallbackPropertyKey)) {
|
|
|
|
|
result = properties[fallbackPropertyKey];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 07:44:31 +02:00
|
|
|
|
public static void CompileProperties(PTMagic ptmagicInstance, GlobalSetting setting) {
|
|
|
|
|
SettingsHandler.BuildPropertyLines("Pairs", ptmagicInstance, setting);
|
|
|
|
|
SettingsHandler.BuildPropertyLines("DCA", ptmagicInstance, setting);
|
|
|
|
|
SettingsHandler.BuildPropertyLines("Indicators", ptmagicInstance, setting);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 07:44:31 +02:00
|
|
|
|
public static void BuildPropertyLines(string fileType, PTMagic ptmagicInstance, GlobalSetting setting) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
List<string> result = new List<string>();
|
|
|
|
|
|
2018-05-23 07:44:31 +02:00
|
|
|
|
List<string> fileLines = (List<string>)ptmagicInstance.GetType().GetProperty(fileType + "Lines").GetValue(ptmagicInstance, null);
|
|
|
|
|
|
|
|
|
|
Dictionary<string, object> properties = (Dictionary<string, object>)setting.GetType().GetProperty(fileType + "Properties").GetValue(setting, null);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (properties != null) {
|
|
|
|
|
|
|
|
|
|
// Building Properties
|
2018-05-23 07:44:31 +02:00
|
|
|
|
if (!setting.SettingName.Equals(ptmagicInstance.DefaultSettingName, StringComparison.InvariantCultureIgnoreCase) && ptmagicInstance.PTMagicConfiguration.GeneralSettings.Application.AlwaysLoadDefaultBeforeSwitch && !properties.ContainsKey("File")) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
|
|
|
|
|
// Load default settings as basis for the switch
|
2018-05-23 07:44:31 +02:00
|
|
|
|
GlobalSetting defaultSetting = ptmagicInstance.PTMagicConfiguration.AnalyzerSettings.GlobalSettings.Find(a => a.SettingName.Equals(ptmagicInstance.DefaultSettingName, StringComparison.InvariantCultureIgnoreCase));
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (defaultSetting != null) {
|
|
|
|
|
|
|
|
|
|
Dictionary<string, object> defaultProperties = new Dictionary<string, object>();
|
2018-05-23 07:44:31 +02:00
|
|
|
|
switch (fileType.ToLower()) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
case "pairs":
|
|
|
|
|
defaultProperties = defaultSetting.PairsProperties;
|
|
|
|
|
break;
|
|
|
|
|
case "dca":
|
|
|
|
|
defaultProperties = defaultSetting.DCAProperties;
|
|
|
|
|
break;
|
|
|
|
|
case "inidcators":
|
|
|
|
|
defaultProperties = defaultSetting.IndicatorsProperties;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (defaultProperties.ContainsKey("File")) {
|
2018-05-23 07:44:31 +02:00
|
|
|
|
fileLines = SettingsFiles.GetPresetFileLinesAsList(defaultSetting.SettingName, defaultProperties["File"].ToString(), ptmagicInstance.PTMagicConfiguration);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
// Check if settings are configured in a seperate file
|
|
|
|
|
if (properties.ContainsKey("File")) {
|
2018-05-23 07:44:31 +02:00
|
|
|
|
fileLines = SettingsFiles.GetPresetFileLinesAsList(setting.SettingName, properties["File"].ToString(), ptmagicInstance.PTMagicConfiguration);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 07:44:31 +02:00
|
|
|
|
foreach (string line in fileLines) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (line.IndexOf("PTMagic_ActiveSetting", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Setting current active setting
|
|
|
|
|
result.Add("# PTMagic_ActiveSetting = " + setting.SettingName);
|
|
|
|
|
|
|
|
|
|
} else if (line.IndexOf("PTMagic_LastChanged", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Setting last change datetime
|
|
|
|
|
result.Add("# PTMagic_LastChanged = " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString());
|
|
|
|
|
|
|
|
|
|
} else if (line.IndexOf("PTMagic_SingleMarketSettings", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Single Market Settings will get overwritten every single run => crop the lines
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
// Writing property items
|
|
|
|
|
int oldResultCount = result.Count;
|
|
|
|
|
if (properties != null) {
|
|
|
|
|
foreach (string settingProperty in properties.Keys) {
|
|
|
|
|
result = SettingsHandler.BuildPropertyLine(result, setting.SettingName, line, properties, settingProperty);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (oldResultCount == result.Count) result.Add(line);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 07:44:31 +02:00
|
|
|
|
ptmagicInstance.GetType().GetProperty(fileType + "Lines").SetValue(ptmagicInstance, result);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static List<string> BuildPropertyLine(List<string> result, string settingName, string line, Dictionary<string, object> properties, string settingProperty) {
|
|
|
|
|
int valueMode = Constants.ValueModeDefault;
|
|
|
|
|
string propertyKey = settingProperty;
|
|
|
|
|
|
|
|
|
|
// Check for offset values
|
|
|
|
|
if (propertyKey.IndexOf("_OFFSETPERCENT") > -1) {
|
|
|
|
|
valueMode = Constants.ValueModeOffsetPercent;
|
|
|
|
|
propertyKey = propertyKey.Replace("_OFFSETPERCENT", "");
|
|
|
|
|
} else if (propertyKey.IndexOf("_OFFSET") > -1) {
|
|
|
|
|
valueMode = Constants.ValueModeOffset;
|
|
|
|
|
propertyKey = propertyKey.Replace("_OFFSET", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (line.StartsWith(propertyKey + " ", StringComparison.InvariantCultureIgnoreCase) || line.StartsWith(propertyKey + "=", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
string newValueString = SystemHelper.PropertyToString(properties[settingProperty]);
|
|
|
|
|
if (newValueString.ToLower().Equals("true") || newValueString.ToLower().Equals("false")) {
|
|
|
|
|
newValueString = newValueString.ToLower();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string oldValueString = line.Replace(propertyKey, "").Replace("=", "").Trim();
|
|
|
|
|
|
|
|
|
|
switch (valueMode) {
|
|
|
|
|
case Constants.ValueModeOffset:
|
|
|
|
|
// Offset value by a fixed amount
|
|
|
|
|
double offsetValue = SystemHelper.TextToDouble(newValueString, 0, "en-US");
|
|
|
|
|
if (offsetValue != 0) {
|
|
|
|
|
double oldValue = SystemHelper.TextToDouble(oldValueString, 0, "en-US");
|
|
|
|
|
newValueString = Math.Round((oldValue + offsetValue), 8).ToString(new System.Globalization.CultureInfo("en-US"));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case Constants.ValueModeOffsetPercent:
|
|
|
|
|
// Offset value by percentage
|
|
|
|
|
double offsetValuePercent = SystemHelper.TextToDouble(newValueString, 0, "en-US");
|
|
|
|
|
if (offsetValuePercent != 0) {
|
|
|
|
|
double oldValue = SystemHelper.TextToDouble(oldValueString, 0, "en-US");
|
|
|
|
|
if (oldValue < 0) offsetValuePercent = offsetValuePercent * -1;
|
|
|
|
|
double oldValueOffset = (oldValue * (offsetValuePercent / 100));
|
|
|
|
|
newValueString = Math.Round((oldValue + oldValueOffset), 8).ToString(new System.Globalization.CultureInfo("en-US"));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
line = propertyKey + " = " + newValueString;
|
|
|
|
|
|
|
|
|
|
string previousLine = result.Last();
|
|
|
|
|
if (previousLine.IndexOf("PTMagic Changed Line", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
previousLine = "# PTMagic changed line for setting '" + settingName + "' on " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString();
|
|
|
|
|
|
|
|
|
|
result.RemoveAt(result.Count - 1);
|
|
|
|
|
result.Add(previousLine);
|
|
|
|
|
} else {
|
|
|
|
|
string editLine = "# PTMagic changed line for setting '" + settingName + "' on " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString();
|
|
|
|
|
result.Add(editLine);
|
|
|
|
|
}
|
|
|
|
|
result.Add(line);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
public static void CompileSingleMarketProperties(PTMagic ptmagicInstance, Dictionary<string, List<string>> matchedTriggers) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
try {
|
|
|
|
|
List<string> globalPairsLines = new List<string>();
|
|
|
|
|
List<string> globalDCALines = new List<string>();
|
|
|
|
|
List<string> globalIndicatorsLines = new List<string>();
|
|
|
|
|
|
|
|
|
|
List<string> newPairsLines = new List<string>();
|
|
|
|
|
List<string> newDCALines = new List<string>();
|
|
|
|
|
List<string> newIndicatorsLines = new List<string>();
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
foreach (string pairsLine in ptmagicInstance.PairsLines) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (pairsLine.IndexOf("PTMagic_SingleMarketSettings", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Single Market Settings will get overwritten every single run => crop the lines
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
string globalPairsLine = pairsLine;
|
|
|
|
|
|
|
|
|
|
globalPairsLines.Add(globalPairsLine);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
newPairsLines.Add("# PTMagic_SingleMarketSettings - Written on " + DateTime.Now.ToString());
|
|
|
|
|
newPairsLines.Add("# ########################################################################");
|
|
|
|
|
newPairsLines.Add("");
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
foreach (string dcaLine in ptmagicInstance.DCALines) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (dcaLine.IndexOf("PTMagic_SingleMarketSettings", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Single Market Settings will get overwritten every single run => crop the lines
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
string globalDCALine = dcaLine;
|
|
|
|
|
|
|
|
|
|
globalDCALines.Add(globalDCALine);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
newDCALines.Add("# PTMagic_SingleMarketSettings - Written on " + DateTime.Now.ToString());
|
|
|
|
|
newDCALines.Add("# ########################################################################");
|
|
|
|
|
newDCALines.Add("");
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
foreach (string indicatorsLine in ptmagicInstance.IndicatorsLines) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (indicatorsLine.IndexOf("PTMagic_SingleMarketSettings", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Single Market Settings will get overwritten every single run => crop the lines
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
string globalIndicatorsLine = indicatorsLine;
|
|
|
|
|
|
|
|
|
|
globalIndicatorsLines.Add(globalIndicatorsLine);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Dictionary<string, string> globalPairsProperties = SettingsHandler.GetPropertiesAsDictionary(globalPairsLines);
|
|
|
|
|
Dictionary<string, string> globalDCAProperties = SettingsHandler.GetPropertiesAsDictionary(globalDCALines);
|
|
|
|
|
Dictionary<string, string> globalIndicatorsProperties = SettingsHandler.GetPropertiesAsDictionary(globalIndicatorsLines);
|
|
|
|
|
|
|
|
|
|
newIndicatorsLines.Add("# PTMagic_SingleMarketSettings - Written on " + DateTime.Now.ToString());
|
|
|
|
|
newIndicatorsLines.Add("# ########################################################################");
|
|
|
|
|
newIndicatorsLines.Add("");
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
foreach (string marketPair in ptmagicInstance.TriggeredSingleMarketSettings.Keys.OrderBy(k => k)) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
Dictionary<string, object> pairsPropertiesToApply = new Dictionary<string, object>();
|
|
|
|
|
Dictionary<string, object> dcaPropertiesToApply = new Dictionary<string, object>();
|
|
|
|
|
Dictionary<string, object> indicatorsPropertiesToApply = new Dictionary<string, object>();
|
|
|
|
|
|
|
|
|
|
// Build Properties as a whole list so that a single coin also has only one block with single market settings applied to it
|
2018-05-22 13:04:53 +02:00
|
|
|
|
foreach (SingleMarketSetting setting in ptmagicInstance.TriggeredSingleMarketSettings[marketPair]) {
|
|
|
|
|
ptmagicInstance.Log.DoLogInfo("Building single market settings '" + setting.SettingName + "' for '" + marketPair + "'...");
|
2018-05-22 10:11:50 +02:00
|
|
|
|
|
|
|
|
|
foreach (string settingPairsProperty in setting.PairsProperties.Keys) {
|
|
|
|
|
if (!pairsPropertiesToApply.ContainsKey(settingPairsProperty)) {
|
|
|
|
|
pairsPropertiesToApply.Add(settingPairsProperty, setting.PairsProperties[settingPairsProperty]);
|
|
|
|
|
} else {
|
|
|
|
|
pairsPropertiesToApply[settingPairsProperty] = setting.PairsProperties[settingPairsProperty];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (string settingDCAProperty in setting.DCAProperties.Keys) {
|
|
|
|
|
if (!dcaPropertiesToApply.ContainsKey(settingDCAProperty)) {
|
|
|
|
|
dcaPropertiesToApply.Add(settingDCAProperty, setting.DCAProperties[settingDCAProperty]);
|
|
|
|
|
} else {
|
|
|
|
|
dcaPropertiesToApply[settingDCAProperty] = setting.DCAProperties[settingDCAProperty];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (string settingIndicatorsProperty in setting.IndicatorsProperties.Keys) {
|
|
|
|
|
if (!indicatorsPropertiesToApply.ContainsKey(settingIndicatorsProperty)) {
|
|
|
|
|
indicatorsPropertiesToApply.Add(settingIndicatorsProperty, setting.IndicatorsProperties[settingIndicatorsProperty]);
|
|
|
|
|
} else {
|
|
|
|
|
indicatorsPropertiesToApply[settingIndicatorsProperty] = setting.IndicatorsProperties[settingIndicatorsProperty];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
ptmagicInstance.Log.DoLogInfo("Built single market settings '" + setting.SettingName + "' for '" + marketPair + "'.");
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
newPairsLines = SettingsHandler.BuildPropertyLinesForSingleMarketSetting(ptmagicInstance.ProfitTrailerMajorVersion, ptmagicInstance.LastRuntimeSummary.MainMarket, marketPair, ptmagicInstance.TriggeredSingleMarketSettings[marketPair], pairsPropertiesToApply, matchedTriggers, globalPairsProperties, newPairsLines, ptmagicInstance.PTMagicConfiguration, ptmagicInstance.Log);
|
|
|
|
|
newDCALines = SettingsHandler.BuildPropertyLinesForSingleMarketSetting(ptmagicInstance.ProfitTrailerMajorVersion, ptmagicInstance.LastRuntimeSummary.MainMarket, marketPair, ptmagicInstance.TriggeredSingleMarketSettings[marketPair], dcaPropertiesToApply, matchedTriggers, globalDCAProperties, newDCALines, ptmagicInstance.PTMagicConfiguration, ptmagicInstance.Log);
|
|
|
|
|
newIndicatorsLines = SettingsHandler.BuildPropertyLinesForSingleMarketSetting(ptmagicInstance.ProfitTrailerMajorVersion, ptmagicInstance.LastRuntimeSummary.MainMarket, marketPair, ptmagicInstance.TriggeredSingleMarketSettings[marketPair], indicatorsPropertiesToApply, matchedTriggers, globalIndicatorsProperties, newIndicatorsLines, ptmagicInstance.PTMagicConfiguration, ptmagicInstance.Log);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Combine global settings lines with single market settings lines
|
|
|
|
|
globalPairsLines.AddRange(newPairsLines);
|
|
|
|
|
globalDCALines.AddRange(newDCALines);
|
|
|
|
|
globalIndicatorsLines.AddRange(newIndicatorsLines);
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
ptmagicInstance.PairsLines = globalPairsLines;
|
|
|
|
|
ptmagicInstance.DCALines = globalDCALines;
|
|
|
|
|
ptmagicInstance.IndicatorsLines = globalIndicatorsLines;
|
2018-05-22 10:11:50 +02:00
|
|
|
|
} catch (Exception ex) {
|
2018-05-22 13:04:53 +02:00
|
|
|
|
ptmagicInstance.Log.DoLogCritical("Critical error while writing settings!", ex);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
throw (ex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static List<string> BuildPropertyLinesForSingleMarketSetting(int ptMajorVersion, string mainMarket, string marketPair, List<SingleMarketSetting> appliedSettings, Dictionary<string, object> properties, Dictionary<string, List<string>> matchedTriggers, Dictionary<string, string> fullProperties, List<string> newPropertyLines, PTMagicConfiguration systemConfiguration, LogHelper log) {
|
|
|
|
|
if (properties.Keys.Count > 0) {
|
|
|
|
|
string appliedSettingsStringList = "";
|
|
|
|
|
foreach (SingleMarketSetting sms in appliedSettings) {
|
|
|
|
|
if (!appliedSettingsStringList.Equals("")) appliedSettingsStringList += ", ";
|
|
|
|
|
appliedSettingsStringList += sms.SettingName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
newPropertyLines.Add("# " + marketPair + " - Current active settings: " + appliedSettingsStringList);
|
|
|
|
|
newPropertyLines.Add("# Matching triggers:");
|
|
|
|
|
foreach (string matchingTrigger in matchedTriggers[marketPair]) {
|
|
|
|
|
newPropertyLines.Add("# " + matchingTrigger);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (string settingProperty in properties.Keys) {
|
|
|
|
|
int valueMode = Constants.ValueModeDefault;
|
|
|
|
|
string propertyKey = settingProperty;
|
|
|
|
|
|
|
|
|
|
// Check for offset values
|
|
|
|
|
if (propertyKey.IndexOf("_OFFSETPERCENT") > -1) {
|
|
|
|
|
valueMode = Constants.ValueModeOffsetPercent;
|
|
|
|
|
propertyKey = propertyKey.Replace("_OFFSETPERCENT", "");
|
|
|
|
|
} else if (propertyKey.IndexOf("_OFFSET") > -1) {
|
|
|
|
|
valueMode = Constants.ValueModeOffset;
|
|
|
|
|
propertyKey = propertyKey.Replace("_OFFSET", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string newValueString = SystemHelper.PropertyToString(properties[settingProperty]);
|
|
|
|
|
if (newValueString.ToLower().Equals("true") || newValueString.ToLower().Equals("false")) {
|
|
|
|
|
newValueString = newValueString.ToLower();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string propertyMarketName = marketPair;
|
|
|
|
|
if (ptMajorVersion > 1) {
|
|
|
|
|
// Adjust market pair name for PT 2.0 and above
|
|
|
|
|
propertyMarketName = propertyMarketName.Replace(mainMarket, "").Replace("_", "").Replace("-", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string propertyKeyString = "";
|
|
|
|
|
if (propertyKey.StartsWith("ALL", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
propertyKeyString = propertyKey.Replace("ALL", propertyMarketName, StringComparison.InvariantCultureIgnoreCase);
|
|
|
|
|
} else if (propertyKey.StartsWith("DEFAULT", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
propertyKeyString = propertyKey.Replace("DEFAULT", propertyMarketName, StringComparison.InvariantCultureIgnoreCase);
|
|
|
|
|
} else {
|
|
|
|
|
if (propertyKey.StartsWith("_", StringComparison.InvariantCultureIgnoreCase)) {
|
|
|
|
|
propertyKeyString = propertyMarketName + propertyKey;
|
|
|
|
|
} else {
|
|
|
|
|
propertyKeyString = propertyMarketName + "_" + propertyKey;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (valueMode) {
|
|
|
|
|
case Constants.ValueModeOffset:
|
|
|
|
|
// Offset value by a fixed amount
|
|
|
|
|
double offsetValue = SystemHelper.TextToDouble(newValueString, 0, "en-US");
|
|
|
|
|
if (offsetValue != 0) {
|
|
|
|
|
double oldValue = SystemHelper.TextToDouble(SettingsHandler.GetCurrentPropertyValue(fullProperties, propertyKey, propertyKey.Replace("ALL_", "DEFAULT_")), 0, "en-US");
|
|
|
|
|
newValueString = Math.Round((oldValue + offsetValue), 8).ToString(new System.Globalization.CultureInfo("en-US"));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case Constants.ValueModeOffsetPercent:
|
|
|
|
|
// Offset value by percentage
|
|
|
|
|
double offsetValuePercent = SystemHelper.TextToDouble(newValueString, 0, "en-US");
|
|
|
|
|
if (offsetValuePercent != 0) {
|
|
|
|
|
double oldValue = SystemHelper.TextToDouble(SettingsHandler.GetCurrentPropertyValue(fullProperties, propertyKey, propertyKey.Replace("ALL_", "DEFAULT_")), 0, "en-US");
|
|
|
|
|
if (oldValue < 0) offsetValuePercent = offsetValuePercent * -1;
|
|
|
|
|
double oldValueOffset = (oldValue * (offsetValuePercent / 100));
|
|
|
|
|
newValueString = Math.Round((oldValue + oldValueOffset), 8).ToString(new System.Globalization.CultureInfo("en-US"));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
newPropertyLines.Add(propertyKeyString + " = " + newValueString);
|
|
|
|
|
}
|
|
|
|
|
newPropertyLines.Add("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return newPropertyLines;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
public static bool RemoveSingleMarketSettings(PTMagic ptmagicInstance) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
bool result = false;
|
|
|
|
|
try {
|
|
|
|
|
List<string> cleanedUpPairsLines = new List<string>();
|
|
|
|
|
List<string> cleanedUpDCALines = new List<string>();
|
|
|
|
|
List<string> cleanedUpIndicatorsLines = new List<string>();
|
|
|
|
|
|
|
|
|
|
bool removedPairsSingleMarketSettings = false;
|
2018-05-22 13:04:53 +02:00
|
|
|
|
foreach (string pairsLine in ptmagicInstance.PairsLines) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (pairsLine.IndexOf("PTMagic_SingleMarketSettings", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Single Market Settings will get overwritten every single run => crop the lines
|
|
|
|
|
removedPairsSingleMarketSettings = true;
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
string newPairsLine = pairsLine;
|
|
|
|
|
|
|
|
|
|
cleanedUpPairsLines.Add(newPairsLine);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool removedDCASingleMarketSettings = false;
|
2018-05-22 13:04:53 +02:00
|
|
|
|
foreach (string dcaLine in ptmagicInstance.DCALines) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (dcaLine.IndexOf("PTMagic_SingleMarketSettings", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Single Market Settings will get overwritten every single run => crop the lines
|
|
|
|
|
removedDCASingleMarketSettings = true;
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
string newDCALine = dcaLine;
|
|
|
|
|
|
|
|
|
|
cleanedUpDCALines.Add(newDCALine);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool removedIndicatorsSingleMarketSettings = false;
|
2018-05-22 13:04:53 +02:00
|
|
|
|
foreach (string indicatorsLine in ptmagicInstance.IndicatorsLines) {
|
2018-05-22 10:11:50 +02:00
|
|
|
|
if (indicatorsLine.IndexOf("PTMagic_SingleMarketSettings", StringComparison.InvariantCultureIgnoreCase) > -1) {
|
|
|
|
|
|
|
|
|
|
// Single Market Settings will get overwritten every single run => crop the lines
|
|
|
|
|
removedIndicatorsSingleMarketSettings = true;
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
string newIndicatorsLine = indicatorsLine;
|
|
|
|
|
|
|
|
|
|
cleanedUpIndicatorsLines.Add(newIndicatorsLine);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-22 13:04:53 +02:00
|
|
|
|
ptmagicInstance.PairsLines = cleanedUpPairsLines;
|
|
|
|
|
ptmagicInstance.DCALines = cleanedUpDCALines;
|
|
|
|
|
ptmagicInstance.IndicatorsLines = cleanedUpIndicatorsLines;
|
2018-05-22 10:11:50 +02:00
|
|
|
|
|
|
|
|
|
result = removedPairsSingleMarketSettings && removedDCASingleMarketSettings && removedIndicatorsSingleMarketSettings;
|
|
|
|
|
} catch (Exception ex) {
|
2018-05-22 13:04:53 +02:00
|
|
|
|
ptmagicInstance.Log.DoLogCritical("Critical error while writing settings!", ex);
|
2018-05-22 10:11:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|