Skip to content

Instantly share code, notes, and snippets.

@Fyzu
Last active January 27, 2026 11:31
Show Gist options
  • Select an option

  • Save Fyzu/560b6b9bcbe04972bff156ac4fdfd086 to your computer and use it in GitHub Desktop.

Select an option

Save Fyzu/560b6b9bcbe04972bff156ac4fdfd086 to your computer and use it in GitHub Desktop.
dxLink Indichart
{
"type": "INDICHART_SNAPSHOT_CANDLE",
"channel": 5,
"reset": true,
"pending": false,
"candles": [
{"open": 12, "high": 13, "close": 14, "index": "123123123"},
]
}
{
"type": "INDICHART_CANDLE_SNAPSHOT",
"channel": 5,
"reset": true,
"pending": false
}
{
"type": "INDICHART_INDICATORS_SNAPSHOT",
"channel": 5,
"pending": false
}
{
"type": "INDICHART_UPDATE",
"channel": 5,
"pending": true,
"candles": [
{"open": 12, "high": 13, "close": 14, "index": "123123123"},
]
"indicators": {
"indi-1": {
"spline": {
"1": []
}
}
}
}
{
"type": "INDICHART_SNAPSHOT_INDICATORS",
"channel": 5,
"pending": true,
"indicators": {
"indi-1": {
"spline": {
"1": []
}
}
}
}
{
"type": "INDICHART_DATA",
"channel": 5,
"reset": false,
"pending": false,
"candles": [
{"open": 12, "high": 13, "close": 14, "index": "123123123"},
],
"indicators": {
"indi-1": {
"sma": [13]
},
"indi-4": {
"close": [14, 14, 14, 14],
"open": [12, 12, 12, 12]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment