Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

trader273

Median in Easylanguage

Recommended Posts

Was trying to find an easy way to find the median of a given set of numbers. I've searched the pdf files that are available and the only thing remotely close was related to activity bars, so that didnt really help.:confused:

 

anyone got an ideas?

Share this post


Link to post
Share on other sites

ok, i guess its just median( )

duh

 

Then I guess what I don't understand is how to get the median of a set of numbers I have.

 

If anyone reads Dr.Steenbarger's blog he showed what he uses for price projections, and I was trying to code something up. I have five variables and I need to take the median of those 5.

Share this post


Link to post
Share on other sites

There is some good background here Selection algorithm - Wikipedia, the free encyclopedia.

 

Are you actually talking about price data arriving in real time? That's a wee bit tricky. Trouble with EL is that it's not great for more complex data structures. You could probably sort data into an array as it arrived. Whilst not difficult a bit fiddly.

 

Median is the mid price in a sorted set of numbers right? (not the mid price).

Share this post


Link to post
Share on other sites
ok, i guess its just median( )

duh

 

Then I guess what I don't understand is how to get the median of a set of numbers I have.

 

If anyone reads Dr.Steenbarger's blog he showed what he uses for price projections, and I was trying to code something up. I have five variables and I need to take the median of those 5.

 

you have to use the medianarray

 

first, create an array,

then put the 5 numbers in the array,

then use medianarray to interrogate the array for the median.

Share this post


Link to post
Share on other sites

Ok, I gave this my best shot. I have never used arrays, so this is fun:crap:

 

I searched through TL and some other pdf's.

 

Here is what I got so far:

 

Array:
MyArray[5](0);
ArrayElement[1]=((yesthi-yestlo)/yestop)*100;
ArrayElement[2]=((H2-L2)/O2)*100;
ArrayElement[3]=((H3-L3)/O3)*100;
ArrayElement[4]=((H4-L4)/O4)*100;
ArrayElement[5]=((H5-L5)/O5)*100;

V=MedianArray(myArray,5);

 

 

I have everything defined, and it plots correctly. The error I got is "Index was outsite the bounds of the array"

 

Googled that, and I thought I fixed it but not so much. Probably missing something easy...

Share this post


Link to post
Share on other sites

Array:
MyArray[6](0);

MyArray[1] = ((yesthi-yestlo)/yestop)*100;
MyArray[2] = ((H2-L2)/O2)*100;
MyArray[3] = ((H3-L3)/O3)*100;
MyArray[4] = ((H4-L4)/O4)*100;
MyArray[5] = ((H5-L5)/O5)*100;

Value1 = MedianArray(myArray,6);

 

 

array numbering starts with zero,

but medianarray referencing begins with array element 1.

therefore you need an array of 6 to handle 5 numbers.

Edited by Tams

Share this post


Link to post
Share on other sites
you have to use the medianarray

 

first, create an array,

then put the 5 numbers in the array,

then use medianarray to interrogate the array for the median.

 

This would certainly work but grows exponentially slower as the set of data increases. (It calls SortArray which is a bubble sort and fairly highly iterative). Not a problem if you are looking at (for example) the close of 5 minute bars (small data set) but possibly an issue if you are using say tick data (a large data set).

 

Just offering this for consideration :).

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • ...hallucinates.... Student: “What if we gave the monkey LSD?” Guru: “The monkey already did LSD”
    • Question: To those that had/have cancer, what were the signs that made you think “something is not right here” to make you go see a doctor? Answer: So, 5/25/2018, I woke up, got ready for work, and as I walked to my car, I started gagging. Like something was stuck in my throat and I needed to clear it. And then it went away.   But 10 minutes after that, I was T-boned at 40mph on the driver side door. But what made me see a doctor was while my muscles felt better and bruises were going away, the gagging still continued, I started having fevers, my neck felt swollen, I was having such a hard time breathing, and I'd have random sharp pains in my chest, but not from where the seat belt saved me.   2 weeks after the accident, I finally see an urgent care doctor, who looks me over, tells me I'm fine, but luckily requests a neck X-ray. And I ask for a chest X-ray, which he rolls his eyes but let me have (most of my pain was in the neck, so I understand).   The very next day, he calls and says “So, that chest X-ray shows there's a 4 inch mass on your heart and lungs, and your lungs have been filling up with fluid, as well as in your pericardial (heart) wall. We need you to come in tomorrow.”   Turns out the big mass, due to the accident, caused my heart and lungs to tear and fill with fluid, the swollen neck and gagging was caused by 2 metastasized tumors, and the fevers and weight loss were symptoms. Stage 4b Hodgkin's Lymphoma.   But thankfully, we went very aggressive with chemo (and had a lot of bad side effects that don't normally happen to patients), and now I'm about 16 months cancer-free. Yay lucky X-rays! Rachel Jurina, Quora Source: https://www.quora.com/To-those-that-had-have-cancer-what-were-the-signs-that-made-you-think-something-is-not-right-here-to-make-you-go-see-a-doctor   Profits from free accurate cryptos signals: https://www.predictmag.com/  
    • As a man, the reality of life is the harshest part. I don’t mind looking older or becoming weaker over time; it’s nature.   Have you ever heard that the only people who will be loved unconditionally are women and children? Men will only be loved as long as they can provide until they are no longer needed. It doesn’t matter if you already did your best to get your kids to the best school or get the best things for them, if you stop before they’re done with it, there will be no thank you. The only thing they will remember is that they have to quit school at 15, ignoring all the previous 15 years of life you provided for them. The only people who will accept you, no matter what, are your parents. But in this situation, you might be that ungrateful child.   EDIT: Wow, I didn’t think this would get so much attention.   For those who disagree, I can only say that everyone has their problem. If you don’t get the chance to face such a thing, be grateful. Remember, sometimes what you throw in the garbage is something that someone wishes ever to have.” – ElZee, Quora   Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • The good thing i had noticed so far is that the traderpot value is also on the rise..
    • yup its a gradual rollout the right way in my opinion, its really good and its exciting for the sto in 2027
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.