How to set 1 minute Open High Low and close with candle

Sir Pl guide for getting 1 minute Open High Low and close with candle . How will fill following thing
"count": ,
"granularity": ,
"ticks_history": "R_50",
"subscribe": ,
"style": "candles",
"end": " "
Pl help

Comments

  • edited May 2016
    var request = {
      "ticks_history": "R_50",
      "style": "candles",
      "end": "latest",
      "count": 100,
      "granularity": 60
    }
    ws.send(JSON.parse(request));
    
Sign In or Register to comment.