PTMagic/Core/DataObjects/PTMagicData.cs

504 lines
17 KiB
C#
Raw Normal View History

2018-05-22 10:11:50 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Core.Main.DataObjects.PTMagicData
{
2018-05-22 10:11:50 +02:00
#region Settings Objects
public class GeneralSettingsWrapper
{
2018-05-22 10:11:50 +02:00
public GeneralSettings GeneralSettings { get; set; }
}
public class AnalyzerSettingsWrapper
{
2018-05-22 10:11:50 +02:00
public AnalyzerSettings AnalyzerSettings { get; set; }
}
public class SecureSettingsWrapper
{
2018-05-22 10:11:50 +02:00
public SecureSettings SecureSettings { get; set; }
}
#region GeneralSettings
public class GeneralSettings
{
2018-05-22 10:11:50 +02:00
public Application Application { get; set; }
public Monitor Monitor { get; set; }
public Backup Backup { get; set; }
public Telegram Telegram { get; set; }
}
public class Application
{
2018-05-22 10:11:50 +02:00
public bool IsEnabled { get; set; } = true;
public bool TestMode { get; set; } = true;
public bool EnableBetaFeatures { get; set; } = false;
public string ProfitTrailerPath { get; set; }
public string ProfitTrailerLicense { get; set; } = "";
2019-01-07 15:33:02 +01:00
public string ProfitTrailerServerAPIToken { get; set; }
2018-05-22 10:11:50 +02:00
public string ProfitTrailerMonitorURL { get; set; } = "http://localhost:8081/";
public string ProfitTrailerDefaultSettingName { get; set; } = "default";
public int FloodProtectionMinutes { get; set; } = 15;
public string Exchange { get; set; }
public double StartBalance { get; set; } = 0;
2018-05-22 10:11:50 +02:00
public string InstanceName { get; set; } = "PT Magic";
2018-12-29 04:58:40 +01:00
public string TimezoneOffset { get; set; } = "+0:00";
2018-05-22 10:11:50 +02:00
public string MainFiatCurrency { get; set; } = "USD";
2018-12-01 15:05:35 +01:00
public string CoinMarketCapAPIKey { get; set; }
public string FreeCurrencyConverterAPIKey { get; set; }
2018-05-22 10:11:50 +02:00
}
public class Monitor
{
2018-05-22 10:11:50 +02:00
private string _rootUrl = "/";
public bool IsPasswordProtected { get; set; } = true;
public bool OpenBrowserOnStart { get; set; } = false;
public int Port { get; set; } = 5000;
2020-01-16 12:50:42 +01:00
public string AnalyzerChart { get; set; } = "";
2018-05-22 10:11:50 +02:00
public int GraphIntervalMinutes { get; set; } = 60;
public int GraphMaxTimeframeHours { get; set; } = 24;
public int RefreshSeconds { get; set; } = 30;
public int BagAnalyzerRefreshSeconds { get; set; } = 5;
public int BuyAnalyzerRefreshSeconds { get; set; } = 5;
public int MaxTopMarkets { get; set; } = 20;
public int MaxDailySummaries { get; set; } = 10;
public int MaxMonthlySummaries { get; set; } = 10;
public int MaxDashboardBuyEntries { get; set; } = 10;
public int MaxDashboardBagEntries { get; set; } = 10;
public int MaxDCAPairs { get; set; } = 24;
public int MaxSettingsLogEntries { get; set; } = 20;
public string LinkPlatform { get; set; } = "TradingView";
public string DefaultDCAMode { get; set; } = "Simple";
2019-01-14 04:21:30 +01:00
public string TvStudyA { get; set; } = "";
public string TvStudyB { get; set; } = "";
public string TvStudyC { get; set; } = "";
public string TvStudyD { get; set; } = "";
public string RootUrl
{
get
{
2018-05-22 10:11:50 +02:00
if (!_rootUrl.EndsWith("/")) _rootUrl += "/";
return _rootUrl;
}
set
{
2018-05-22 10:11:50 +02:00
_rootUrl = value;
}
}
}
public class Backup
{
2018-05-22 10:11:50 +02:00
public bool IsEnabled { get; set; } = true;
public int MaxHours { get; set; } = 48;
}
public class Telegram
{
2018-05-22 10:11:50 +02:00
public bool IsEnabled { get; set; } = false;
public string BotToken { get; set; }
public Int64 ChatId { get; set; }
public bool SilentMode { get; set; } = false;
}
#endregion
#region AnalyzerSettings
public class AnalyzerSettings
{
2018-05-22 10:11:50 +02:00
public MarketAnalyzer MarketAnalyzer { get; set; }
public List<GlobalSetting> GlobalSettings { get; set; }
public List<SingleMarketSetting> SingleMarketSettings { get; set; }
}
public class MarketAnalyzer
{
2018-05-22 10:11:50 +02:00
public int StoreDataMaxHours { get; set; }
public int IntervalMinutes { get; set; } = 5;
public bool ExcludeMainCurrency { get; set; } = true;
public List<MarketTrend> MarketTrends { get; set; }
}
public class MarketTrend
{
2018-05-22 10:11:50 +02:00
public string Name { get; set; }
public string Platform { get; set; } = "Exchange";
[DefaultValue("Market")]
public string TrendCurrency { get; set; } = "Market";
[DefaultValue(0)]
public int MaxMarkets { get; set; } = 0;
public int TrendMinutes { get; set; } = 0;
[DefaultValue(true)]
public bool DisplayGraph { get; set; } = true;
[DefaultValue(true)]
public bool DisplayOnMarketAnalyzerList { get; set; } = true;
[DefaultValue("")]
public string IgnoredMarkets { get; set; } = "";
[DefaultValue("")]
public string AllowedMarkets { get; set; } = "";
[DefaultValue(true)]
public bool ExcludeMainCurrency { get; set; } = true;
}
public class GlobalSetting
{
2018-05-22 10:11:50 +02:00
public string SettingName { get; set; }
public string TriggerConnection { get; set; } = "AND";
public List<Trigger> Triggers { get; set; } = new List<Trigger>();
public Dictionary<string, object> PairsProperties { get; set; } = new Dictionary<string, object>();
public Dictionary<string, object> DCAProperties { get; set; } = new Dictionary<string, object>();
public Dictionary<string, object> IndicatorsProperties { get; set; } = new Dictionary<string, object>();
}
public class SingleMarketSetting
{
2018-05-22 10:11:50 +02:00
public string SettingName { get; set; }
public string TriggerConnection { get; set; } = "AND";
[DefaultValue("AND")]
public string OffTriggerConnection { get; set; } = "AND";
[DefaultValue(true)]
public bool RefreshOffTriggers { get; set; } = true;
[DefaultValue("")]
public string IgnoredMarkets { get; set; } = "";
[DefaultValue("")]
public string AllowedMarkets { get; set; } = "";
[DefaultValue("")]
public string IgnoredGlobalSettings { get; set; } = "";
[DefaultValue("")]
public string AllowedGlobalSettings { get; set; } = "";
[DefaultValue(false)]
public bool StopProcessWhenTriggered { get; set; } = false;
public List<Trigger> Triggers { get; set; } = new List<Trigger>();
public List<OffTrigger> OffTriggers { get; set; } = new List<OffTrigger>();
public Dictionary<string, object> PairsProperties { get; set; } = new Dictionary<string, object>();
public Dictionary<string, object> DCAProperties { get; set; } = new Dictionary<string, object>();
public Dictionary<string, object> IndicatorsProperties { get; set; } = new Dictionary<string, object>();
}
public class Trigger
{
2018-05-22 10:11:50 +02:00
[DefaultValue("")]
public string MarketTrendName { get; set; } = "";
[DefaultValue("Relative")]
public string MarketTrendRelation { get; set; } = "Relative";
[DefaultValue(Constants.MaxTrendChange)]
public double MaxChange { get; set; } = Constants.MaxTrendChange;
[DefaultValue(Constants.MinTrendChange)]
public double MinChange { get; set; } = Constants.MinTrendChange;
[DefaultValue(Constants.Max24hVolume)]
public double Max24hVolume { get; set; } = Constants.Max24hVolume;
[DefaultValue(0.0)]
public double Min24hVolume { get; set; } = 0.0;
[DefaultValue(0)]
public int AgeDaysLowerThan { get; set; } = 0;
}
public class OffTrigger
{
2018-05-22 10:11:50 +02:00
[DefaultValue("")]
public string MarketTrendName { get; set; } = "";
[DefaultValue("Relative")]
public string MarketTrendRelation { get; set; } = "Relative";
[DefaultValue(Constants.MaxTrendChange)]
public double MaxChange { get; set; } = Constants.MaxTrendChange;
[DefaultValue(Constants.MinTrendChange)]
public double MinChange { get; set; } = Constants.MinTrendChange;
[DefaultValue(Constants.Max24hVolume)]
public double Max24hVolume { get; set; } = Constants.Max24hVolume;
[DefaultValue(0.0)]
public double Min24hVolume { get; set; } = 0.0;
[DefaultValue(0)]
public int HoursSinceTriggered { get; set; } = 0;
}
#endregion
#region SecureSettings
public class SecureSettings
{
2018-05-22 10:11:50 +02:00
public string MonitorPassword { get; set; } = "";
}
#endregion
#endregion
#region Market Analyzer Objects
public class Market
{
2018-05-22 10:11:50 +02:00
public int Position;
public string Name = "";
public string Symbol = "";
public double Volume24h = 0.0;
public double Price = 0.0;
public double TrendChange24h = 0.0;
public double MainCurrencyPriceUSD = 0.0;
}
public class MarketTick
{
2018-05-22 10:11:50 +02:00
public double Volume24h = 0.0;
public double Price = 0.0;
public DateTime Time = Constants.confMinDate;
}
public class MarketTrendChange
{
2018-05-22 10:11:50 +02:00
public string MarketTrendName = "";
public string Market = "";
public double LastPrice = 0.0;
public double Volume24h = 0.0;
public double TrendMinutes = 0.0;
public double TrendChange = 0.0;
public DateTime TrendDateTime = Constants.confMinDate;
}
public class MarketInfo
{
2018-05-22 10:11:50 +02:00
public string Name = "";
public DateTime FirstSeen = Constants.confMinDate;
public DateTime LastSeen = Constants.confMaxDate;
}
#endregion
#region Summary Objects
public class Summary
{
2018-05-22 10:11:50 +02:00
public string Version { get; set; } = "";
public DateTime LastRuntime { get; set; } = Constants.confMinDate;
public int LastRuntimeSeconds { get; set; } = 0;
public DateTime LastGlobalSettingSwitch { get; set; } = Constants.confMinDate;
public GlobalSetting CurrentGlobalSetting { get; set; } = null;
public GlobalSetting FloodProtectedSetting { get; set; } = null;
public bool IsSOMActive { get; set; } = false;
public Dictionary<string, MarketPairSummary> MarketSummary { get; set; } = new Dictionary<string, MarketPairSummary>();
public Dictionary<string, List<MarketTrendChange>> MarketTrendChanges { get; set; } = new Dictionary<string, List<MarketTrendChange>>();
public List<GlobalSettingSummary> GlobalSettingSummary { get; set; } = new List<DataObjects.PTMagicData.GlobalSettingSummary>();
public double BuyValue { get; set; } = 0;
public double TrailingBuy { get; set; } = 0;
public double SellValue { get; set; } = 0;
public double TrailingProfit { get; set; } = 0;
public double MaxTradingPairs { get; set; } = 0;
public double MaxCost { get; set; } = 0;
public double MaxCostPercentage { get; set; } = 0;
public double MinBuyVolume { get; set; } = 0;
public double DCALevels { get; set; } = 0;
public double DCATrigger { get; set; } = 0;
public Dictionary<int, double> DCATriggers { get; set; } = new Dictionary<int, double>();
public double DCAPercentage { get; set; } = 0;
public Dictionary<int, double> DCAPercentages { get; set; } = new Dictionary<int, double>();
public string DCABuyStrategy { get; set; } = "";
public string BuyStrategy { get; set; } = "";
public string SellStrategy { get; set; } = "";
public string MainMarket { get; set; } = "";
public double MainMarketPrice { get; set; } = 0;
public string MainFiatCurrency { get; set; } = "USD";
public double MainFiatCurrencyExchangeRate { get; set; } = 1;
public List<StrategySummary> BuyStrategies { get; set; } = new List<StrategySummary>();
public List<StrategySummary> SellStrategies { get; set; } = new List<StrategySummary>();
public List<StrategySummary> DCABuyStrategies { get; set; } = new List<StrategySummary>();
public List<StrategySummary> DCASellStrategies { get; set; } = new List<StrategySummary>();
}
public class StrategySummary
{
2018-05-22 10:11:50 +02:00
public string Name { get; set; } = "";
public double Value { get; set; } = 0;
}
public class GlobalSettingSummary
{
2018-05-22 10:11:50 +02:00
public string SettingName { get; set; }
public DateTime SwitchDateTime { get; set; }
public int ActiveSeconds { get; set; } = 0;
public Dictionary<string, MarketTrendChange> MarketTrendChanges { get; set; } = new Dictionary<string, MarketTrendChange>();
}
public class MarketPairSummary
{
2018-05-22 10:11:50 +02:00
public bool IsTradingEnabled { get; set; } = false;
public bool IsSOMActive { get; set; } = false;
public bool IsDCAEnabled { get; set; } = false;
public List<SingleMarketSetting> ActiveSingleSettings { get; set; } = null;
public double CurrentBuyValue { get; set; } = 0;
public double CurrentTrailingBuy { get; set; } = 0;
public double CurrentSellValue { get; set; } = 0;
public double CurrentTrailingProfit { get; set; } = 0;
public double LatestPrice { get; set; } = 0;
public double Latest24hVolume { get; set; } = 0;
public Dictionary<string, double> MarketTrendChanges { get; set; } = new Dictionary<string, double>();
public List<StrategySummary> BuyStrategies { get; set; } = new List<StrategySummary>();
public List<StrategySummary> SellStrategies { get; set; } = new List<StrategySummary>();
public List<StrategySummary> DCABuyStrategies { get; set; } = new List<StrategySummary>();
public List<StrategySummary> DCASellStrategies { get; set; } = new List<StrategySummary>();
}
#endregion
#region Transaction Objects
public class Transaction
{
2018-05-22 10:11:50 +02:00
public string GUID { get; set; } = "";
public DateTime UTCDateTime { get; set; } = Constants.confMinDate;
public double Amount { get; set; } = 0.0;
public DateTime GetLocalDateTime(string offset)
{
2018-05-22 10:11:50 +02:00
DateTimeOffset result = this.UTCDateTime;
// Convert UTC sales time to local offset time
TimeSpan offsetTimeSpan = TimeSpan.Parse(offset.Replace("+", ""));
result = result.ToOffset(offsetTimeSpan);
return result.DateTime;
}
}
#endregion
#region SingleMarketSettingSummary Objects
public class SingleMarketSettingSummary
{
2018-05-22 10:11:50 +02:00
public string Market { get; set; } = "";
public DateTime ActivationDateTimeUTC { get; set; } = Constants.confMinDate;
public SingleMarketSetting SingleMarketSetting { get; set; } = null;
public TriggerSnapshot TriggerSnapshot { get; set; } = null;
}
public class TriggerSnapshot
{
2018-05-22 10:11:50 +02:00
public Dictionary<int, double> RelevantTriggers { get; set; } = new Dictionary<int, double>();
public List<string> MatchedTriggersContent { get; set; } = new List<string>();
public double LastPrice { get; set; } = 0;
public double Last24hVolume { get; set; } = 0;
}
#endregion
#region Profit Trailer JSON Objects
public class SellLogData
{
2018-05-22 10:11:50 +02:00
public double SoldAmount { get; set; }
public DateTime SoldDate { get; set; }
public int BoughtTimes { get; set; }
public string Market { get; set; }
public double ProfitPercent { get; set; }
public double Profit { get; set; }
public double AverageBuyPrice { get; set; }
public double TotalCost { get; set; }
public double SoldPrice { get; set; }
public double SoldValue { get; set; }
}
public class PTStrategy
{
2018-05-22 10:11:50 +02:00
public string type { get; set; }
public string name { get; set; }
public double entryValue { get; set; }
public double entryValueLimit { get; set; }
public double triggerValue { get; set; }
public double currentValue { get; set; }
public double currentValuePercentage { get; set; }
public int decimals { get; set; }
public string positive { get; set; }
}
public class Strategy
{
2018-05-22 10:11:50 +02:00
public string Type { get; set; }
public string Name { get; set; }
public double EntryValue { get; set; }
public double EntryValueLimit { get; set; }
public double TriggerValue { get; set; }
public double CurrentValue { get; set; }
public double CurrentValuePercentage { get; set; }
public int Decimals { get; set; }
public bool IsTrailing { get; set; }
public bool IsTrue { get; set; }
2018-05-22 10:11:50 +02:00
}
public class DCALogData
{
2018-05-22 10:11:50 +02:00
public int BoughtTimes { get; set; }
public double CurrentLowBBValue { get; set; }
public double CurrentHighBBValue { get; set; }
public double BBTrigger { get; set; }
public double BuyTriggerPercent { get; set; }
public bool IsTrailing { get; set; }
public bool IsTrue { get; set; }
2018-05-22 10:11:50 +02:00
public string Market { get; set; }
public double ProfitPercent { get; set; }
public double AverageBuyPrice { get; set; }
public double TotalCost { get; set; }
public double CurrentValue { get; set; }
public double? TargetGainValue { get; set; }
2018-05-22 10:11:50 +02:00
public double Amount { get; set; }
public double CurrentPrice { get; set; }
public double SellTrigger { get; set; }
public double PercChange { get; set; }
public DateTime FirstBoughtDate { get; set; }
public string SellStrategy { get; set; }
public string BuyStrategy { get; set; }
2020-07-17 13:35:43 +02:00
public double Leverage { get; set; }
2018-05-22 10:11:50 +02:00
public List<Strategy> BuyStrategies { get; set; } = new List<Strategy>();
public List<Strategy> SellStrategies { get; set; } = new List<Strategy>();
}
public class BuyLogData
{
2018-05-22 10:11:50 +02:00
public double CurrentLowBBValue { get; set; }
public double CurrentHighBBValue { get; set; }
public double BBTrigger { get; set; }
public double CurrentValue { get; set; }
public double TriggerValue { get; set; }
public string BuyStrategy { get; set; }
2018-05-22 10:11:50 +02:00
public bool IsTrailing { get; set; }
public bool IsTrue { get; set; }
public bool IsSom { get; set; }
public int TrueStrategyCount { get; set; }
2018-05-22 10:11:50 +02:00
public string Market { get; set; }
public double ProfitPercent { get; set; }
public double CurrentPrice { get; set; }
public int BoughtTimes { get; set; }
2018-05-22 10:11:50 +02:00
public double PercChange { get; set; }
public List<Strategy> BuyStrategies { get; set; } = new List<Strategy>();
}
public class SummaryData
{
public double Balance { get; set; }
public double StartBalance { get; set; }
public double PairsValue { get; set; }
public double DCAValue { get; set; }
public double PendingValue { get; set; }
public double DustValue { get; set; }
public string Market { get; set; }
}
2018-05-22 10:11:50 +02:00
#endregion
}