Net Change Display
<< Click to Display Table of Contents >> Net Change Display |
Displays net change on the chart.
NetChangeDisplay(PerformanceUnit, NetChangePosition location)
NetChangeDisplay(ISeries<double> input, PerformanceUnit, NetChangePosition location)
double
input |
Indicator source data (?) |
PerformanceUnit |
Format of the calculation of net change |
NetChangePosition |
Location to display net change on the chart |
// Runs on realtime since there is no historical data for this indicator if (State == State.Historical) return; else if (State >= State.Realtime) { // Prints the current tick value of the net change var ncd = NetChangeDisplay(PerformanceUnit.Ticks, NetChangePosition.BottomRight); } |
Note: This indicator only plots real-time. Historical values will print as 0. |