I do not know how to program nor do I have software that can take easy language but could some one put this code into their software and print me out a 6month chart of the QQQ? Its a lot to ask but It would be great. I got this from someone who says it works just like vantag points software.
The Easylanguage is here:
Input: DampFactor(.3), MALength(5) ;
Vars: ProjMA(0), Mid(0), MA(0) ;
Mid = (High + Low)/2 ;
ProjMA = Mid - (DampFactor * (Mid - ProjMA[1])) ;
MA = Average(close, MALength) ;
Plot1 (ProjMA, "ProjMA" ,cyan, default, 1 ) ;
Plot2 (MA, "Avg", yellow, default, 1 ) ;
The Easylanguage is here:
Input: DampFactor(.3), MALength(5) ;
Vars: ProjMA(0), Mid(0), MA(0) ;
Mid = (High + Low)/2 ;
ProjMA = Mid - (DampFactor * (Mid - ProjMA[1])) ;
MA = Average(close, MALength) ;
Plot1 (ProjMA, "ProjMA" ,cyan, default, 1 ) ;
Plot2 (MA, "Avg", yellow, default, 1 ) ;