Hi everyone,
How do I define the price source of a Parabolic SAR? I want to specify a MA as source, but it pics up main symbol as source by default.
var study1 = new MAStudy(12, 0, "Close", MAStudy.EXPONENTIAL);
var study2 = new MAStudy(21, 0, "Close", MAStudy.EXPONENTIAL);
var xPARstudy = sar( 0.015, 0.015, 0.200, study2);
Any help would be appreciated.
Kind regards,
tbfx
How do I define the price source of a Parabolic SAR? I want to specify a MA as source, but it pics up main symbol as source by default.
var study1 = new MAStudy(12, 0, "Close", MAStudy.EXPONENTIAL);
var study2 = new MAStudy(21, 0, "Close", MAStudy.EXPONENTIAL);
var xPARstudy = sar( 0.015, 0.015, 0.200, study2);
Any help would be appreciated.
Kind regards,
tbfx
Comment