Skip to content

DeleteChartCandle

DeleteChartCandle

Description: Deletes a single candlestick record for a specific symbol and time. This method is used to remove incorrect or invalid data from historical charts.

Request Parameters

Name Type Required Description
candle array Yes Candle format: [open, high, low, close, time, volume]
symbol string Yes Trading symbol to delete the candle from (e.g., "EURUSD")

Request Example

{
  "symbol": "EURUSD",
  "candle": [1.1010, 1.1050, 1.1000, 1.1040, 1630066400, 950]
}

Response Parameters

Name Type Description
data string Returns "OK" if successful

Response Example

{
  "data": "OK"
}