Is there a way to add a MA or a Parabolic SAR to the following efs?
/************************************************** *****************
Description : This Indicator plots Rate Of Change indicator
Provided By : Developed by TS Support, LLC for eSignal. (c) Copyright 2002
************************************************** ******************/
function preMain()
{
setPriceStudy(false);
setStudyTitle("RateOChangeFromStart");
setCursorLabelName("RateOChangeFromStart");
}
var FVal = null;
function main(sPrice)
{
if (sPrice == null) sPrice = "Close";
var Price = getValue(sPrice, 0);
if (FVal == null) FVal = Price;
var RateOChangeFromStart = (Price * 100) / FVal - 100;
return RateOChangeFromStart;
/************************************************** *****************
Description : This Indicator plots Rate Of Change indicator
Provided By : Developed by TS Support, LLC for eSignal. (c) Copyright 2002
************************************************** ******************/
function preMain()
{
setPriceStudy(false);
setStudyTitle("RateOChangeFromStart");
setCursorLabelName("RateOChangeFromStart");
}
var FVal = null;
function main(sPrice)
{
if (sPrice == null) sPrice = "Close";
var Price = getValue(sPrice, 0);
if (FVal == null) FVal = Price;
var RateOChangeFromStart = (Price * 100) / FVal - 100;
return RateOChangeFromStart;
Comment