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.

cunparis

How to Make a Data into an Oscillator?

Recommended Posts

Hi, this is one of my first posts here but I've been lurking for a while. I'm a professional software develop (Java) and I've been developing trading systems and tools, both automated and discretionary. However I'm not that good at math.

 

I have some data that I'd like to turn into an oscillator but I'm not sure how. Ideally I'd like my oscillator to go between 0 and 100 if possible but that's not totally necessary. I've been playing around with the stochastic formula and also MACD. It seems those are the most used to make oscillators.

 

To take a couple examples, I'd like to make an oscillator of the put/call ratio. One could say it's already an oscillator but it's not centered around zero and it often leans one way or the other for long periods of time.

 

Another example is the TICK index. I'd like to come up with an oscillator for that.

 

Another example is I'd like to see if I can use the overnight range (using ES for this example) to make something useful. I have no idea if this will work but I'd like to give it a shot.

 

I can handle the coding, so if you feel like sharing some ideas I'll code it up and post the code & charts for everyone's benefits. I'm hoping we can come up with something useful together.

Share this post


Link to post
Share on other sites

You might want to look at John Ehlers work. he approaches things from a signal processing point of view which is quite appropriate for oscillators. A variety of his ideas have been coded in a variety of languages. Often he starts by trying to isolate the cyclical component from any trending component.

 

Cynthia Kase has some interesting ideas like the Kase Peak Oscillator.

Share this post


Link to post
Share on other sites
You might want to look at John Ehlers work. he approaches things from a signal processing point of view which is quite appropriate for oscillators. A variety of his ideas have been coded in a variety of languages. Often he starts by trying to isolate the cyclical component from any trending component.

 

Cynthia Kase has some interesting ideas like the Kase Peak Oscillator.

 

 

Hi, thanks for your reply. It's a coincidence that you mention these two because I have recently been looking at both of them.

 

I am currently playing with Ehler's sine wave but I thought it only applied to price. Could it apply to other data too?

 

I have also demo'd the kase oscillator. It's great for detecting divergences but I couldn't get her method (from her book) to be profitable, nor could I get her kase easy entry system to be profitable. I concluded that it's good for detecting divergence which can be warning signs but often I found a strong trend and I'd get out because of the divergence only to watch it continue on for a while. Price often does pullback after a divergence but often it resumes. So I wasn't able to find a way to incorporate it into my trading.

 

Also on the kase peak, can it be applied to non-price data? I didn't try this.

 

In summary, I'm looking for a way to take data and make my own oscillator. For example the trin goes from say near 0 to 2. I'd like to make it 0 to 100 and have it centered at zero. Same for pc ratio, a/d line, etc.

Share this post


Link to post
Share on other sites

I'd like to make an oscillator of the put/call ratio. One could say it's already an oscillator but it's not centered around zero and it often leans one way or the other for long periods of time.

 

Another example is the TICK index. I'd like to come up with an oscillator for that.

 

 

If you want an "indicator" that can only vary within a certain range (e.g. 0-100) you can always use the stochastic formula as a basis.

As input you would use e.g. the put/call ratio or the tick value (instead of price, as usually done).

 

 

But: Please think if it is wise to do so.

 

In my view it is important to get as much information as you can from the data you have access to.

If you notice that P/C ratio is "leaning" then this is valuable information which should not be eliminated by a formula that forces values into an artificial range. For me it is clearly the task to get as much (valuable) information as possible not to cut it down.

Share this post


Link to post
Share on other sites
Hi, this is one of my first posts here but I've been lurking for a while. I'm a professional software develop (Java) and I've been developing trading systems and tools, both automated and discretionary. However I'm not that good at math.

 

I have some data that I'd like to turn into an oscillator but I'm not sure how. Ideally I'd like my oscillator to go between 0 and 100 if possible but that's not totally necessary. I've been playing around with the stochastic formula and also MACD. It seems those are the most used to make oscillators.

 

To take a couple examples, I'd like to make an oscillator of the put/call ratio. One could say it's already an oscillator but it's not centered around zero and it often leans one way or the other for long periods of time.

 

Another example is the TICK index. I'd like to come up with an oscillator for that.

 

Another example is I'd like to see if I can use the overnight range (using ES for this example) to make something useful. I have no idea if this will work but I'd like to give it a shot.

 

I can handle the coding, so if you feel like sharing some ideas I'll code it up and post the code & charts for everyone's benefits. I'm hoping we can come up with something useful together.

 

 

 

fit a moving average on the basis...

then the data can oscillate around it.

Share this post


Link to post
Share on other sites
But: Please think if it is wise to do so.

For me it is clearly the task to get as much (valuable) information as possible not to cut it down.

 

This wasn't the answer I was looking for but after playing around with various combinations of stochastics and bollinger bands, I have to agree with you that the pc ratio data has more information in it than the oscillators I made. The only problem is I wanted to do some backtests to test out some ideas and for that oscillators are useful.

Share this post


Link to post
Share on other sites

I had a few things done and tradestation crashed and the stupid thing lost everything I've done since my last backup which was Friday. (What a POS!!!). At least Ninjatrader kept the source code in ascii files on the PC so they could never get corrupted. Anyway, the stuff I made was simple so I'll redo it and if there is interest I'll post what I come up with...

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.


×
×
  • Create New...

Important Information

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