|
NormanH
 Member
 Posts: 38
Joined: 11/23/2011
Location: Richmond VA
User Profile |
I want to display an indicator of a 10 period moving average of the median price. I would prefer an exponential average but a simple average would do. I am trying to do a Quick Indicator. I have tried the formula below but the program doesn't like it.
EMA( MP(10) )
I tried a simple formula with MP(0) + MP(-1) etc. That didn't work either.
Does anyone have any hints? I have Omnitrader 2022.
Thanks
|
|
Jim Dean
 Sage
  Posts: 3022
Joined: 9/21/2006
Location: L'ville, GA
User Profile |
I haven’t used Median Price aka MP before, so I can’t comment on its syntax. If it’s the average of OHLC, then it has no param’s. That’s what I’ll assume.
However the EMA that you are wrapping it in needs the periods specified. Try this:
EMA( MP(), 10 )
|
|
NormanH
 Member
 Posts: 38
Joined: 11/23/2011
Location: Richmond VA
User Profile |
Thanks so much! It works!
|