Guest User

Untitled

a guest
Nov 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. y, is the simple moving average of 5 periods, starting at t4.
  2. r, is calculated with previous 5 periods.
  3. t0: x0=1, y0=(1)/1
  4. t1: x1=2, y1=(1+2)/2
  5. t2: x2=3, y2=(1+2+3)/3
  6. t3: x3=4, y3=(1+2+3+4)/4
  7. t4: x4=5, y4=(1+2+3+4+5)/5 ,r4=1
  8. t5: x5=7, y5=(2+3+4+5+7)/5 ,r5= 0.9974
  9. t6: x6=6, y6=(3+4+5+7+6)/5 ,r6=0.8826
  10. t7: x7=8, y7=(4+5+7+6+8)/5 ,r7= 0.906
  11. t8: x8=9, y8=(5+7+6+8+9)/5 ,r8= 0.917
  12.  
  13. Q: t9: x9=?, y9=(7+6+8+9+x9)/5, r9=0.9
  14. How do I get x9 (nearest to x8) for r9=0.9.
Add Comment
Please, Sign In to add comment