Thanks Henry 1224,
I now have the Formulae with fully adjustable parameters.
Pds1:= Input("Tenkan-Sen period:",1,200,9);
Pds2:= Input("Kijun-Sen period:",1,200,26);
Pds3:= Input("Senkou Span B period:",1,200,52);
Pds4:= Input("Chikou Span Backshift period:",1,200,26);
Pds5:= Input("Senkou Span A Forwardshift:",1,200,26);
Pds6:= Input("Senkou Span B Forwardshift:",1,200,26);
TenSen:=(HHV(H,pds1)+LLV(L,pds1))/2;
KijSen:=(HHV(H,pds2)+LLV(L,pds2))/2;
Chiklag:=Ref(C,-pds4);
SenkSpanA:=Ref((TenSen+KijSen)/2,+pds5);
SenkSpanB:=Ref((HHV(H,52)+LLV(L,52))/2,+pds6);
TenSen;
KijSen;
Chiklag;
SenkSpanA;
SenkSpanB
How do I modify the above formulae to fill in the area between the Senkou Span A and Senkou Span B lines, please refer to attached image above.
Anne.