Level(Number)

Level procedure is used to add horizontal lines in an indicator, at the selected level. You can define more than one level, simply by adding a new line with an another level.

 

This procedure has one parameter:
Number   This parameter represents the level where to draw an horizontal line.

 

Example:

' This is an indicator
Sub Main()
  Temp = GetIndic("RSI")
  Temp = Slope(Temp, 10)
  Level(0)
  SetIndic Temp
End Sub