PureBytes Links
Trading Reference Links
|
I'm stuck on the "Value1=..." line of the following indicator. I keep
getting an error highlighting the parenthesis after the five and the
message, "more inputs expected here". Like what??? Any suggestions would be
appreciated.
Inputs: r(15),ZeroLine(0);
Value1=Function(Close,r,5);
Value2=Function(Function(Close,r,5),5);
Plot1(Value1, "BlaBla");
Plot2(Value2, "Blabla");
Plot3(ZeroLine, "Blabla");
|