Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.73 KB | None | 0 0
  1. [
  2.   {
  3.     "name":"EMA5",
  4.     "type":"EMA",
  5.     "candle_length":5
  6.   },
  7.   {
  8.     "name":"MACD",
  9.     "type":"MACD",
  10.     "fast":12,
  11.     "slow":26
  12.   },
  13.   {
  14.     "name":"EMAMACD",
  15.     "type":"EMA",
  16.     "candle_length":9
  17.   },
  18.   {
  19.     "name":"BBDeviation",
  20.     "type":"StandardDeviation",
  21.     "candle_length":20
  22.   },
  23.   {
  24.     "name":"BBSMA",
  25.     "type":"SMA",
  26.     "candle_length":20
  27.   },
  28.   {
  29.     "name":"BBMiddle",
  30.     "type":"BollingerBandsMiddle",
  31.     "sma_indicator":"BBSMA"    
  32.   },
  33.   {
  34.     "name":"BBHigh",
  35.     "type":"BollingerBandsUpper",
  36.     "sma_indicator":"BBSMA"
  37.     "deviation_indicator":"BBDeviation",
  38.     "deviation":2.0    
  39.   },
  40.   {
  41.     "name":"BBLow",
  42.     "type":"BollingerBandsLower",
  43.     "sma_indicator" : "BBSMA",
  44.     "deviation_indicator":"BBDeviation",
  45.     "deviation":2.0    
  46.   }  
  47. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement