velecasni Posted October 22, 2012 Report Posted October 22, 2012 There is no under basic Indicators in TradeStation and Multicharts Indicator: SMOOTHED MOVING AVERAGE. Does somebody know where to find it? Thank You, velecasni
Tostao Posted October 22, 2012 Report Posted October 22, 2012 actually not that difficult to build: Inputs: Price(close), Period(5); Variables: PriceSum(0),SSMA(0); if CurrentBar <= Period then begin PriceSum = Summation(Price, Period); SSMA = PriceSum/Period; end else begin SSMA = (SSMA[1]*(Period-1) + Price)/Period; Plot1( SSMA, "SSMA" ) ; end;
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now