Your line 'myFL = FIRELINETR();' is supplying no arguments to the indicator.
You need to supply FIRELINE, BANDASUPERIOR, BANDAINFERIOR, SUBBANDASUPERIOR, SUBBANDAINFERIOR arguments to the indicator.
myFL = FIRELINETR(FIRELINE, BANDASUPERIOR, BANDAINFERIOR, SUBBANDASUPERIOR, SUBBANDAINFERIOR)
Please note that these are supposed to be substituted by actual numbers (these may be ints or doubles). If you look at your screenshot of the Properties page for the indicator, you can see the arguments there and inputs you have assigned to them. This is what is being passed to the indicator.
myFL = FIRELINETR(14968, 14924, 14903, 0, 0);
You need to contact the vendor or author that creates the script for any information about how to use the script.

Comment