Defines the functions available for the TRSHighLowAverageChartFunction class
Namespace: RSChartConsts
Delphi
|
type
TRSHiLoAvgChartFunctionType = (
hlaCustom,
hlaHighLow,
hlaHighLowAverage,
hlaHighLowMedian,
hlaMeanStdDev,
hlaHighLowAverageOpenClose);
|
|
Name
|
Description
|
|
hlaCustom
|
Uses OnCustomFunction event handler as the function
|
|
hlaHighLow
|
Calculates the high and low for the period and adds them as one point of the TargetChart
|
|
hlaHighLowAverage
|
Calculates the high, low, and average (mean) for the period and adds them as one point of the TargetChart
|
|
hlaHighLowAverageOpenClose
|
Calculates the high, low, average (mean), Open, and Close for the period and adds them as one point of the TargetChart
|
|
hlaHighLowMedian
|
Calculates the high, low, and median for the period and adds them as one point of the TargetChart
|
|
hlaMeanStdDev
|
Calculates the average (mean) and standard deviation for the period and adds them as one point of the TargetChart. The mean+stddev = High and mean-stddev = Low.
|
Top
|
Reference
•RSCharting|RSBarCharts|TRSHighLowAverageChartFunction •RSChartConsts |