Functions by Category Functions by Alphabetical list
SetColumnType([column],[type]) |  |
This function is used to set the type of the column. This function returns the passed in column and is therefor suitable to be used with the return statement. The only valid column type is 'Candlestick'. This function can only be used within the indicator object. Examples: #Sets the type of $new to be a candlestick, and returns the column
return SetColumnType($new,'Candlestick');
Related functions: ValidatePeriods , ValidateColumns , SetColumnName , Value , SetValue , BarsBack , NumberOfBars , NewColumn
|