PTMagic/_Development/DevSettings/settings.analyzer.json

318 lines
11 KiB
JSON
Raw Normal View History

//
// The settings below offer a basic example of some of the options available when using PTMagic.
// You should take your time and adjust these settings according to your own personal preferences.
// Always test your PTMagic settings by running a Profit Trailer bot in TESTMODE, to make sure
// it is performing as you expect.
//
// For more information on these settings, see the wiki at: https://github.com/PTMagicians/PTMagic/wiki/settings.analyzer
2018-05-22 10:11:50 +02:00
{
"AnalyzerSettings": {
"MarketAnalyzer": {
"StoreDataMaxHours": 48, // Number of hours to store market data
2021-02-02 04:25:02 +01:00
"IntervalMinutes": 2, // Interval in minutes for PTMagic to check market trends and triggers
2018-05-22 10:11:50 +02:00
"ExcludeMainCurrency": true, // Excludes the main currency (for example BTC) from market trend analysis
"MarketTrends": [
{
2021-02-01 18:46:13 +01:00
"Name": "1h", // UNIQUE market trend name (to be referenced by your triggers below)
"Platform": "Exchange", // Platform to grab prices from (Allowed values are: CoinMarketCap, Exchange)
2021-02-02 04:25:02 +01:00
"MaxMarkets": 50, // Number of markets/pairs to analyze sorted by 24h volume
2021-02-01 18:46:13 +01:00
"TrendMinutes": 60, // Number of minutes to build a trend (1440 = 24h, 720 = 12h, 60 = 1h)
"TrendCurrency": "Market", // Trend Currency to build the trend against. If set to "Fiat", the trend will
2021-02-02 04:25:02 +01:00
// take the USD value of your main currency into account to build the trend.
2021-02-01 18:46:13 +01:00
// "Market" will build a trend against your base currency, such as BTC or USDT.
"TrendThreshold": 15, // Any coin that is above 15% or below -15% for this timeframe will not be used when calculating the market average.
2021-02-02 04:25:02 +01:00
"DisplayGraph": false, // Use this trend in the graph on the PTM Monitor dashboard and market analyzer
"DisplayOnMarketAnalyzerList": false // Disply this trend for all coins on the PTM Monitor market analyzer
2018-05-22 10:11:50 +02:00
},
{
"Name": "6h",
"Platform": "Exchange",
"MaxMarkets": 50,
"TrendMinutes": 360,
"TrendCurrency": "Market",
2021-02-01 18:46:13 +01:00
"TrendThreshold": 30,
2021-02-02 04:25:02 +01:00
"DisplayGraph": true,
"DisplayOnMarketAnalyzerList": true
},
{
"Name": "12h",
2018-05-22 10:11:50 +02:00
"Platform": "Exchange",
"MaxMarkets": 50,
"TrendMinutes": 720,
"TrendCurrency": "Market",
2021-02-01 18:46:13 +01:00
"TrendThreshold": 50,
2021-02-02 04:25:02 +01:00
"DisplayGraph": true,
"DisplayOnMarketAnalyzerList": true
2018-05-22 10:11:50 +02:00
},
{
"Name": "24h",
2018-05-22 10:11:50 +02:00
"Platform": "Exchange",
"MaxMarkets": 50,
"TrendMinutes": 1440,
"TrendCurrency": "Market",
2021-02-01 18:46:13 +01:00
"TrendThreshold": 75,
2021-02-02 04:25:02 +01:00
"DisplayGraph": true,
"DisplayOnMarketAnalyzerList": true
2018-05-22 10:11:50 +02:00
}
]
},
// ================================ GLOBAL SETTINGS ================================
//
2021-02-01 18:46:13 +01:00
"GlobalSettings": [ // Global settings for Profit Trailer properties
2021-02-02 04:25:02 +01:00
//
// ===================================================================================
// -----------------------------
2018-05-22 10:11:50 +02:00
{
"SettingName": "EndOfTheWorld", // ANY UNIQUE name of your setting
2018-05-22 10:11:50 +02:00
"TriggerConnection": "AND", // Define if triggers will be connected by AND or OR
"Triggers": [ // Your triggers for this setting. You can use any of your defined trends from above
{
"MarketTrendName": "1h", // Reference to the market trend specified above
"MaxChange": 0 // The maximum value for this trigger to be true. (Any value below "0" will trigger this)
},
2018-05-22 10:11:50 +02:00
{
"MarketTrendName": "12h",
"MaxChange": -2
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "24h",
2018-05-22 10:11:50 +02:00
"MaxChange": -5
}
],
"PairsProperties": { // Properties for PAIRS.PROPERTIES
2021-02-01 18:46:13 +01:00
// Any valid setting from https://wiki.profittrailer.com/en/config can be used here.
// You can use a specific value, or apply a discrete OFFSET or OFFSETPERCENT to the value in your default PAIRS setting.
2021-04-16 05:26:31 +02:00
"DEFAULT_sell_only_mode_enabled": "true",
2021-02-01 18:46:13 +01:00
"DEFAULT_trailing_profit_OFFSETPERCENT": -50
2018-05-22 10:11:50 +02:00
},
"DCAProperties": { // Properties for DCA.PROPERTIES
2021-02-01 18:46:13 +01:00
"DEFAULT_DCA_trailing_profit_OFFSETPERCENT": -75
2018-05-22 10:11:50 +02:00
}
},
2021-02-02 04:25:02 +01:00
// -----------------------------
2018-05-22 10:11:50 +02:00
{
"SettingName": "TankingDown",
"TriggerConnection": "AND",
2018-05-22 10:11:50 +02:00
"Triggers": [
2021-02-01 18:46:13 +01:00
{
"MarketTrendName": "1h",
"MaxChange": 0
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "12h",
"MaxChange": 0
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "24h", // Any value between -5 and -3 will make this trigger true.
"MaxChange": -3,
"MinChange": -5 // The minimum value for this trigger to be true. (Any value above "-5" will trigger this)
2018-05-22 10:11:50 +02:00
}
],
"PairsProperties": {
"max_trading_pairs_OFFSET": -2,
2021-04-16 05:26:31 +02:00
"DEFAULT_min_buy_volume_OFFSETPERCENT": 100,
//"DEFAULT_initial_cost_OFFSETPERCENT": -50,
//"DEFAULT_initial_cost_percentage_OFFSETPERCENT": -50,
"DEFAULT_trailing_buy_OFFSETPERCENT": 25,
"DEFAULT_trailing_profit_OFFSETPERCENT": -25
},
"DCAProperties": {
//"DEFAULT_DCA_rebuy_timeout_OFFSETPERCENT": 100,
"DEFAULT_DCA_trailing_buy_OFFSETPERCENT": 25,
2021-04-16 05:26:31 +02:00
"DEFAULT_DCA_trailing_profit_OFFSETPERCENT": -50
},
2021-02-02 04:25:02 +01:00
"IndicatorsProperties": {
2018-05-22 10:11:50 +02:00
}
},
2021-02-02 04:25:02 +01:00
// -----------------------------
2018-05-22 10:11:50 +02:00
{
"SettingName": "BearSighted",
"TriggerConnection": "AND",
2018-05-22 10:11:50 +02:00
"Triggers": [
{
"MarketTrendName": "1h",
"MaxChange": 1
},
2018-05-22 10:11:50 +02:00
{
"MarketTrendName": "12h",
"MaxChange": 0
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "24h",
"MaxChange": -1,
"MinChange": -3
2018-05-22 10:11:50 +02:00
}
],
"PairsProperties": {
"max_trading_pairs_OFFSET": -1,
2021-04-16 05:26:31 +02:00
//"DEFAULT_initial_cost_OFFSETPERCENT": -25,
//"DEFAULT_initial_cost_percentage_OFFSETPERCENT": -25,
"DEFAULT_trailing_buy_OFFSETPERCENT": 10,
"DEFAULT_trailing_profit_OFFSETPERCENT": -10
},
"DCAProperties": {
"DEFAULT_DCA_trailing_buy_OFFSETPERCENT": 10,
2021-04-16 05:26:31 +02:00
"DEFAULT_DCA_trailing_profit_OFFSETPERCENT": -10,
},
2021-02-02 04:25:02 +01:00
"IndicatorsProperties": {
2018-05-22 10:11:50 +02:00
}
},
2021-02-01 18:46:13 +01:00
// -----------------------------
2018-05-22 10:11:50 +02:00
{
"SettingName": "ReadyForLiftOff",
2018-05-22 10:11:50 +02:00
"TriggerConnection": "AND",
"Triggers": [
{
"MarketTrendName": "1h",
"MinChange": 0
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "12h",
"MinChange": 0
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "24h",
"MinChange": 1,
"MaxChange": 3
2018-05-22 10:11:50 +02:00
}
],
"PairsProperties": {
"max_trading_pairs_OFFSET": 1,
2021-04-16 05:26:31 +02:00
//"DEFAULT_initial_cost_OFFSETPERCENT": 10,
//"DEFAULT_initial_cost_percentage_OFFSETPERCENT": 10,
"DEFAULT_trailing_buy_OFFSETPERCENT": -10,
"DEFAULT_A_sell_value_OFFSETPERCENT": 10
2018-05-22 10:11:50 +02:00
},
"DCAProperties": {
"DEFAULT_DCA_trailing_buy_OFFSETPERCENT": -10,
2021-04-16 05:26:31 +02:00
"DEFAULT_DCA_trailing_profit_OFFSETPERCENT": 10,
},
2021-02-02 04:25:02 +01:00
"IndicatorsProperties": {
2018-05-22 10:11:50 +02:00
}
},
2021-02-02 04:25:02 +01:00
// -----------------------------
2018-05-22 10:11:50 +02:00
{
"SettingName": "ToTheMoon",
2018-05-22 10:11:50 +02:00
"TriggerConnection": "AND",
"Triggers": [
{
"MarketTrendName": "1h",
"MinChange": 1
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "12h",
"MinChange": 1
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "24h",
"MinChange": 3
2018-05-22 10:11:50 +02:00
}
],
"PairsProperties": {
"max_trading_pairs_OFFSET": 2,
2021-04-16 05:26:31 +02:00
//"DEFAULT_initial_cost_OFFSETPERCENT": 20,
//"DEFAULT_initial_cost_percentage_OFFSETPERCENT": 20,
"DEFAULT_trailing_buy_OFFSETPERCENT": -10,
"DEFAULT_A_sell_value_OFFSETPERCENT": 20
2018-05-22 10:11:50 +02:00
},
"DCAProperties": {
"DEFAULT_DCA_trailing_buy_OFFSETPERCENT": -20,
2021-04-16 05:26:31 +02:00
"DEFAULT_DCA_trailing_profit_OFFSETPERCENT": 20,
},
2021-02-02 04:25:02 +01:00
"IndicatorsProperties": {
2018-05-22 10:11:50 +02:00
}
},
// -----------------------------
2018-05-22 10:11:50 +02:00
{
"SettingName": "Default",
2018-05-22 10:11:50 +02:00
"PairsProperties": {
"File": "PAIRS.properties"
2018-05-22 10:11:50 +02:00
},
"DCAProperties": {
"File": "DCA.properties"
},
"IndicatorsProperties": {
"File": "INDICATORS.properties"
2018-05-22 10:11:50 +02:00
}
}
],
// ================================ COIN-SPECIFIC SETTINGS ================================
//
"SingleMarketSettings": [ // Single market/pair settings for Profit Trailer properties
2021-02-02 04:25:02 +01:00
// Any setting from https://wiki.profittrailer.com/en/config
// marked as CS (coin-specific) can be used here.
// Only coins that meet the triggered conditions will have the settings applied.
2018-05-22 10:11:50 +02:00
{
"SettingName": "BlacklistCoins",
2018-05-22 10:11:50 +02:00
"StopProcessWhenTriggered": true,
"Triggers": [
{
"AgeDaysLowerThan": 21
2018-05-22 10:11:50 +02:00
}
],
"PairsProperties": {
2021-04-16 05:26:31 +02:00
"DEFAULT_trading_enabled": "false",
"DEFAULT_sell_only_mode_enabled": "true",
"DEFAULT_DCA_enabled": "false"
2018-05-22 10:11:50 +02:00
}
},
2021-02-02 04:25:02 +01:00
// -----------------------------
2018-05-22 10:11:50 +02:00
{
"SettingName": "PumpNDumpProtection",
"TriggerConnection": "OR",
2018-05-22 10:11:50 +02:00
"Triggers": [
{
"MarketTrendName": "1h",
2021-02-01 18:46:13 +01:00
"MarketTrendRelation": "Relative", // The relation of the single market trend. Relative = Single market
2021-02-02 04:25:02 +01:00
// trend compared relative to the market trend
2021-04-16 05:26:31 +02:00
// Absolute = Single market trend viewed on its own
"MinChange": 8
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "12h",
"MarketTrendRelation": "Relative",
"MinChange": 10
2018-05-22 10:11:50 +02:00
},
{
"MarketTrendName": "24h",
"MarketTrendRelation": "Relative",
"MinChange": 12
}
],
2021-02-02 04:25:02 +01:00
"OffTriggers": [
{
"HoursSinceTriggered": 3 // Any coin that triggers this setting, will remain under this setting
2021-04-16 05:26:31 +02:00
// for 3 hours, since the last time it triggered.
2018-05-22 10:11:50 +02:00
}
],
"PairsProperties": {
2021-04-16 05:26:31 +02:00
"DEFAULT_sell_only_mode_enabled": "true",
"DEFAULT_DCA_enabled": "false"
2018-05-22 10:11:50 +02:00
}
},
2021-02-02 04:25:02 +01:00
// -----------------------------
2018-05-22 10:11:50 +02:00
{
"SettingName": "FreefallBlock",
"TriggerConnection": "OR",
2018-05-22 10:11:50 +02:00
"Triggers": [
{
"MarketTrendName": "1h",
2018-05-22 10:11:50 +02:00
"MarketTrendRelation": "Absolute",
"MaxChange": -5
2018-05-22 10:11:50 +02:00
}
],
2021-02-02 04:25:02 +01:00
"OffTriggers": [
{
"HoursSinceTriggered": 1
}
],
2021-02-02 04:25:02 +01:00
"PairsProperties": {
2021-04-16 05:26:31 +02:00
"DEFAULT_sell_only_mode_enabled": "true",
"DEFAULT_DCA_enabled": "false"
2018-05-22 10:11:50 +02:00
}
}
]
}
}