Advertisement
albin900

Untitled

Aug 9th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [
  2.     {
  3.         "name": "How often do you want BOT to check prices?",
  4.         "fields": [
  5.             {
  6.                 "id": "sleep",
  7.                 "input_type": "dropdown-time",
  8.                 "inputs": [15, 30, 60, 120, 300, 600, 3600]
  9.             }
  10.         ],
  11.         "help": "help-str"
  12.     },
  13.     {
  14.         "name": "Which candle do you want to trade with?",
  15.         "fields": [
  16.             {
  17.                 "id": "candle",
  18.                 "input_type": "dropdown-time",
  19.                 "inputs": [ 300, 900, 1800, 3600 ],
  20.             }
  21.         ],
  22.        
  23.         "help": "help-str"
  24.     },
  25.     {
  26.         "name": "How many data points to include in ema1",
  27.         "fields":[
  28.             {
  29.                 "id": "ema1",
  30.                 "input_type": "number",
  31.                 "input_title": "points",
  32.                 "min": 2,
  33.                 "max": 16,
  34.                 "step": 2,
  35.                 "value": 8,
  36.             }
  37.         ],
  38.         "help": "help-str"
  39.     },
  40.     {
  41.         "name": "How many data points to include in ema2",
  42.         "fields":[
  43.             {
  44.                 "id": "ema2",
  45.                 "input_type": "number",
  46.                 "input_title": "points",
  47.                 "min": 2,
  48.                 "max": 16,
  49.                 "step": 2,
  50.                 "value": 8,
  51.             }
  52.         ],
  53.         "help": "help-str"
  54.     },
  55.     {
  56.         "name": "What time period to include in trendline",
  57.         "fields": [
  58.             {
  59.                 "id": "trendline",
  60.                 "input_type": "number",
  61.                 "input_title": "minutes",
  62.                 "min": 5,
  63.                 "max": 720,
  64.                 "step": 5,
  65.                 "value": 15,
  66.             }
  67.         ],
  68.         "help": "help-str"
  69.     },
  70.     {
  71.         "name": "Upward trend % strength",
  72.         "fields": [
  73.             {
  74.                 "id": "trend_strength",
  75.                 "input_type": "float",
  76.                 "input_title": "%",
  77.                 "min": 0.01,
  78.                 "max": 1,
  79.                 "step": 0.01,
  80.                 "value": 0.01,
  81.             }
  82.         ],
  83.         "help": "help-str"
  84.     },
  85.     {
  86.         "name": "What % price below lowest ema to buy at",
  87.         "fields": [
  88.             {
  89.                 "id": "buy_pct",
  90.                 "input_type": "float",
  91.                 "input_title": "%",
  92.                 "min": 1,
  93.                 "max": 50,
  94.                 "step": 0.1,
  95.                 "value": 4
  96.             }
  97.         ],
  98.         "help": "help-str"
  99.     },
  100.     {
  101.        
  102.         "name": "What % profit to aim for on each trade",
  103.         "fields":[
  104.             {
  105.                 "id": "sell_pct",
  106.                 "input_type": "float",
  107.                 "input_title": "%",
  108.                 "min": 0.1,
  109.                 "max": 50,
  110.                 "step": 0.1,
  111.                 "value": 1.0,
  112.             }
  113.         ],
  114.         "help": "help-str"
  115.     },
  116.     {
  117.         "name": "Instant sell order upon buy or wait until profit detected",
  118.         "fields": [
  119.             {
  120.                 "id": "sell_method",
  121.                 "input_type": "dropdown",
  122.                 "inputs": [
  123.                     {
  124.                         "title": "Sell upon buy",
  125.                         "value": "instant"
  126.                     },
  127.                     {
  128.                         "title": "Wait until profit is detected and sell at risk",
  129.                         "value": "wait"
  130.                     }
  131.                 ],
  132.             }
  133.         ],
  134.         "help": "help-str"
  135.     },
  136.     {
  137.         "name": "Amount per trade in % or value",
  138.         "fields":[
  139.             {
  140.                 "id": "amount",
  141.                 "input_type": "float",
  142.             },
  143.             {
  144.                 "input_type": "dropdown",
  145.                 "id": "amount-type",
  146.                 "inputs": [ {"title": "%","value": "pct" },{"title": "value","value": "value"} ],
  147.             }
  148.         ],
  149.         "help": "help-str"
  150.     },
  151.     {
  152.         "name": "Stoploss % sell at",
  153.         "fields":[
  154.             {
  155.                 "id": "stoploss",
  156.                 "input_type": "float",
  157.                 "input_value": "%",
  158.                 "min": 0,
  159.                 "max": 1000,
  160.                 "step": 0.5,
  161.                 "value": 0,
  162.             }
  163.         ],
  164.         "help": "help-str"
  165.            
  166.     },
  167.     {
  168.         "name": "Auto sell after time period",
  169.         "fields":[
  170.             {
  171.                 "input_type": "field-toggle",
  172.                 "target": "auto_sell"
  173.             },
  174.             {
  175.                 "id": "auto_sell",
  176.                 "input_type": "number",
  177.                 "input_value": "minutes",
  178.             }
  179.         ],
  180.         "help": "help-str"
  181.     },
  182. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement