PointValue
<< Click to Display Table of Contents >> PointValue |
Indicates the currency value of 1 full point of movement. For example, 1 point in the S&P 500 Emini futures contract (ES) is $50 USD which is equal to $12.50 USD per tick.
A double value representing the currency value of 1 point of movement.
Instrument.MasterInstrument.PointValue
protected override void OnBarUpdate() { // Displays the master instrument's point value at the bottom right of the chart Draw.TextFixed(this, "Point value: ", Bars.Instrument.MasterInstrument.PointValue.ToString(), TextPosition.BottomRight); } |