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 Quote
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; Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.