Avg?

 

Hello

i have found codeTC2000 (AVGC13-AVGC13.4)>0

C=Close

13 = Bar or Bars

but what is

AVG ? indicator ?

andwhat is 13.4 ?

Thanks

A

 

I have anti-virus program: AVG Free Edition.

Very good anti-virus.

 
newdigital:
I have anti-virus program: AVG Free Edition.

Very good anti-virus.

you testing PRO Edition this is Great (i have PRO )

Help please

--

 
Alex.Piech.FinGeR:
Hello

i have found codeTC2000 (AVGC13-AVGC13.4)>0

C=Close

13 = Bar or Bars

but what is

AVG ? indicator ?

andwhat is 13.4 ?

Thanks

A

AVGC13-AVGC13.4)>0

This line means:

Is the 13day simple moving average of the close - 13day simple moving average of the close 4 DAYS AGO greater than 0?

 

Thanks

13day simple moving average of the close 4 DAYS AGO

iMA(NULL,0,13,0,MODE_SMA,PRICE_ClOSE,4) correct ?

 

Right!

Alex.Piech.FinGeR:
Thanks

13day simple moving average of the close 4 DAYS AGO

iMA(NULL,0,13,0,MODE_SMA,PRICE_ClOSE,4) correct ?

I think yes.

AVGC13-AVGC13.4)>0

if( ( iMA(NULL,0,13,0,MODE_SMA,PRICE_ClOSE,0) - iMA(NULL,0,13,0,MODE_SMA,PRICE_ClOSE,4) ) > 0 )

{

//do something

}
 

Alex,

Did it work?

 

Hello

yes Thanks

Reason: