I want to calculate "change" value :
change = prev - last
the "last" value could get from API esignal.get_GetBasicQuote(symbol);
string dAsk = quote.dAsk.ToString();
string dBid = quote.dBid.ToString();
string dLast = quote.dLast.ToString();
string lAskSize = quote.lAskSize.ToString();
string lBidSize = quote.lBidSize.ToString();
string lLastSize = quote.lLastSize.ToString();
But I don't know the method to get "prev close" value from Desktop API.
Please help me !
Thanks,
change = prev - last
the "last" value could get from API esignal.get_GetBasicQuote(symbol);
string dAsk = quote.dAsk.ToString();
string dBid = quote.dBid.ToString();
string dLast = quote.dLast.ToString();
string lAskSize = quote.lAskSize.ToString();
string lBidSize = quote.lBidSize.ToString();
string lLastSize = quote.lLastSize.ToString();
But I don't know the method to get "prev close" value from Desktop API.
Please help me !
Thanks,
Comment