dime

Moving Median

This simple script was a collaborative effort with 4X4good.

It plots a moving median for the period using the 50th percentile value.

We wanted to know the median value of VIX but surprisingly, a median indicator wasn't yet available in the indicators library.

So we did a little research & put this together.

סקריפט קוד פתוח

ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יכולים להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אך שימוש חוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.

כתב ויתור

המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.

רוצה להשתמש בסקריפ זה בגרף?
//@version=2
//  Moving Median
//  developed by dime & 4X4good - 09/04/2016
//  Plots a moving median value for the period  
//  by using the 50th percentile value
//  

study(title="median", shorttitle="median", overlay=true, precision=0)
length1 = input(20, minval=1, title="Period")

median = percentile_nearest_rank (close,length1,50)  //this returns the 50th percentile value

//alternative function
//level = percentile_linear_interpolation (close,length1,50)

plot (median,color=lime, transp=0, linewidth=2 )