GetSignal(Name, Place) as String

GetSignal returns the "Name" signal (From System Tester) of the selected day in Custom reports. It's usefull to see the signal of the day for all stocks.

 

This function has two parameters:
Name   The name of the signal as it appears in System Tester.
Place   The day you want to have the signal.

 

Example:

' This is a report
' Be sure that Aroon system exists in System Tester!!!
Sub Main()
  TakeThisStock

  Header 1, "Date"
  Header 2, "Last Close"
  Header 3, "Signal Aroon"

  PutInGrid 1, DateToStr(Last)
  PutInGrid 2, Close(Last)
  PutInGrid 3, GetSignal("Aroon", Last)
End Sub