getTradeId (SDK Trading)

getTradeId is a Fintechee API to get the ID of the specific open trade.

getTradeId(openTrade) ⇒ string

EA SDK This function gets the trade ID of the specific open trade. Phase (this API's scope): onTick | deinit

Kind: global function
Returns: string - trade ID.

Param Type Description
openTrade object specific open trade

getTradeId (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 tradeId = getTradeId(openTrade)
        }
    }
})