For the life of me, I cannot figure out how to get the current market trading price, I can get the current and previous bar High, Low, Open and Close but just cant find the current price
the below works but how does one get the current price,
CurrentHigh = getValue( "High", 0);
CurrentLow = getValue( "Low", 0);
getValue( barType [, barIndex ][, numBars ][, Symbol ] )
???
the below works but how does one get the current price,
CurrentHigh = getValue( "High", 0);
CurrentLow = getValue( "Low", 0);
getValue( barType [, barIndex ][, numBars ][, Symbol ] )
barType | Required. String for type of value to retrieve: "open", "high", "low", "close", "time", "rawtime", "volume", "oi", "year", "month", "day", "hour", "minute", "second" |
Comment