Page History: INPUT Function
Compare Page Revisions
Page Revision: 2012/08/14 10:34
The input function allows for user configuration of script parameters to customize a script on a chart. For example, a script that used a moving average would use the INPUT function to get the number of periods to use for the moving average. That would allow the same script to be used on multiple charts with different values for the number of periods.
Numeric Values
INPUT(<
label>, <
number>, <
min value>, <
max value>);
Function ParametersParameter | Description |
---|
<label> | The label that appears on the property page for this value. |
<number> | The number of periods to compute the moving average over. |
<min value> | The minimum value allowed for this input. |
<max value> | The maximum value allowed for this input. |
Examples:
periods = input("Moving Average Periods", 14, 1, 1000);
variance = input("Variance", 0.25, 0, 1.0);
INPUT(<
label>, <
text>);
INPUT(<
label>, <
color>);
INPUT(<
label>, <
lookup>);
Function ParametersParameter | Description |
---|
<label> | The label that appears on the property page for this value. |
<periods> | The number of periods to compute the moving average over. |
<MAType> | The type of moving average to compute. |