getOpenTime (SDK Trading)
getOpenTime is a Fintechee API to get the open time of the specific open trade.
getOpenTime(openTrade) ⇒ number
EA SDK This function gets the open time(UTC time stamp) of the specific open trade. Phase (this API's scope): onTick | deinit
Kind: global function
Returns: number - open time(UTC time stamp).
| Param | Type | Description |
|---|---|---|
| openTrade | object | specific open trade |
getOpenTime (SDK Trading)
registerEA(
"test_api",
"An EA to test APIs",
[],
function (context) { // Init()
},
function (context) { // Deinit()
},
function (context) { // OnTick()
var length = getOpenTradesListLength(context)
for (var i = 0; i < length; i++) {
var openTrade = getOpenTrade(context, i)
if (openTrade != null) {
var time = getOpenTime(openTrade)
}
}
})