getOpenPrice (SDK Trading)

getOpenPrice is a Fintechee API to get the open price of the specific open trade.

getOpenPrice(openTrade) ⇒ number

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

Kind: global function
Returns: number - open price.

Param Type Description
openTrade object specific open trade

getOpenPrice (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 price = getOpenPrice(openTrade)
        }
    }
})