afl for ROC with little change

XRAY27

Well-Known Member
#1
Dear members,

In normal roc formula .......i want to hide the periods and just want to have value of Roc
Please arrange this:thanx:
 
#3
Dear members,

In normal roc formula .......i want to hide the periods and just want to have value of Roc
Please arrange this:thanx:
Code:
_SECTION_BEGIN("ROC");
P = ParamField( "Price field" );
periods = Param("Periods", 15, 1, 200, 1 );
Plot( ROC( P, periods), "No Period. Just the Value of ROC is :   ", ParamColor( "Color", colorCycle ), ParamStyle("Style")  );
_SECTION_END();
:D
 

KelvinHand

Well-Known Member
#4
Code:
_SECTION_BEGIN("ROC");
P = ParamField( "Price field" );
periods = Param("Periods", 15, 1, 200, 1 );
Plot( ROC( P, periods), "No Period. Just the Value of ROC is :   ", ParamColor( "Color", colorCycle ), ParamStyle("Style")  );
_SECTION_END();
:D

Code:
_SECTION_BEGIN("ROC");
P = ParamField( "Price field" );
Length = Param("Length", 15, 1, 200, 1 );
Plot( ROC( P, Length), "No Period. Just the Value of ROC is :   ", ParamColor( "Color", colorCycle ), ParamStyle("Style")  );
_SECTION_END();
:cool:
 

XRAY27

Well-Known Member
#5
Code:
_SECTION_BEGIN("ROC");
P = ParamField( "Price field" );
Length = Param("Length", 15, 1, 200, 1 );
Plot( ROC( P, Length), "No Period. Just the Value of ROC is :   ", ParamColor( "Color", colorCycle ), ParamStyle("Style")  );
_SECTION_END();
:cool:
Thanks happysingh and kelvinhand
 

Similar threads