Summary: This heat study script generates values based directly on the value of a single indicator. Returns: The indicator value
' Use for holding indicator keys based on the first specified indicator key, indexed by symbol index. Redefine _indicatorKeys(SymbolCount() - 1) ' Iterate over all of the account symbols. For i As Integer = 0 To SymbolCount() - 1 ' Create an indicator for each account symbol, based on the specified indicator. _indicatorKeys(i) = IndicatorCopy(indicatorKey, i) Next
' Get the indicator value, of the last bar index. Return IndicatorValue(_indicatorKeys(symbolIndex))