This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input.n = 9 | |
| const n = input.n | |
| let logPrice = ResultSeries.apply("logPrice", () => { return Math.log(close.last()) }) | |
| let logPrevPrice = ResultSeries.apply("logPrevPrice", () => { return Math.log(close.last(1)) }) | |
| let triple = trix(logPrice, n); | |
| let triplePrev = trix1(logPrevPrice, n) | |
| output.TRIX = (triple - triplePrev) * 10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "DOM_SNAPSHOT", | |
| "channel": 0, | |
| "asks": [{ | |
| "price": 123, | |
| "size": 1, | |
| "orders": [{ | |
| "price": 123, | |
| "size": 1 | |
| }] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax="proto3"; | |
| package dxlink; | |
| message Setup { | |
| optional string agent = 1; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "INDICHART_SNAPSHOT_CANDLE", | |
| "channel": 5, | |
| "reset": true, | |
| "pending": false, | |
| "candles": [ | |
| {"open": 12, "high": 13, "close": 14, "index": "123123123"}, | |
| ] | |
| } |
OlderNewer