Fix spike candle
FixSpikeHistory¶
Description: Removes or adjusts erroneous spike values in candlestick history for a given symbol using a threshold delta.
Request Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Trading symbol to apply spike fix (e.g., "EURUSD") |
| change | double | Yes | Maximum allowed delta value to consider as a spike |
Request Example¶
{
"symbol": "EURUSD",
"change": 0.0005
}
Response Parameters¶
| Name | Type | Description |
|---|---|---|
| data | string | Returns "OK" if successful |
Response Example¶
{
"data": "OK"
}