Hello,
I want to create a complex statement(shown right below) but it doesn't work. The reason why I want one line is so I can change the 27 to a counter and change the parameters over and over drawing lines.
temp= study.getValue(DonchianStudy.BASIS,26,27);
Instead of doing the following in separate statements:
TenkanSen = new DonchianStudy(9, 0);
var nTurningLine = TenkanSen.getValue(DonchianStudy.BASIS);
Can someone assist me here?
-Manesh
I want to create a complex statement(shown right below) but it doesn't work. The reason why I want one line is so I can change the 27 to a counter and change the parameters over and over drawing lines.
temp= study.getValue(DonchianStudy.BASIS,26,27);
Instead of doing the following in separate statements:
TenkanSen = new DonchianStudy(9, 0);
var nTurningLine = TenkanSen.getValue(DonchianStudy.BASIS);
Can someone assist me here?
-Manesh
Comment