Hoi,
Weet er iemand een oplossing voor de functie "SummationArrays" die niet aanwezig is in Vestics.
inputs: ?Price( Close ), ?LagReduction( 1.5 ) ;
variables: resto( 0 ) ;
arrays: Coeff[7]( 0 ) ;
if CurrentBar = 1 then begin
Coeff[1] = 1 ;
Coeff[2] = 2 + LagReduction ;
Coeff[3] = 3 + LagReduction ;
Coeff[4] = 3 ;
Coeff[5] = 2 - LagReduction ;
Coeff[6] = 1 - LagReduction ;
Coeff[7] = 0 - LagReduction ;
Resto = SummationArrays( Coeff, 7 ) ;
end ;
plot1(Resto);
Dank
Jo