scratch Posted July 2, 2011 Report Posted July 2, 2011 ===================================================== Vars: IFish(0); Value1 = .1*(RSI(Close, 5) - 50); Value2 = WAverage(Value1, 9); IFish = (ExpValue(2*Value2) - 1) / (ExpValue(2*Value2) + 1); Plot1(IFish, "IFish"); Plot2(0.5, "Sell Ref"); Plot3(-0.5, "Buy Ref"); ============================================================ new one ==================================================== Inputs: Price((H+L)/2), alpha(.07); Vars: Smooth(0), Cycle(0), ICycle(0); Smooth = (Price + 2*Price[1] + 2*Price[2] + Price[3])/6; Cycle = (1 - .5*alpha)*(1 - .5*alpha)*(Smooth - 2*Smooth[1] + Smooth[2]) + 2*(1 - alpha)*Cycle[1] - (1 – alpha)*(1 - alpha)*Cycle[2]; If currentbar < 7 then Cycle = (Price - 2*Price[1] + Price[2]) / 4; ICycle = (ExpValue(2*Cycle) - 1) / (ExpValue(2*Cycle) + 1); Plot1(ICycle, "Cycle"); Plot2(0.5, "Sell Ref"); Plot3(-0.5, "Buy Ref"); =====================================================
soundfx Posted July 2, 2011 Report Posted July 2, 2011 These are Ehler's RSI Fisher Transform and Cyber Cycle: http://www.multiupload.com/QE92OG9LNR PSmith41, scratch and cazador 3
scratch Posted July 5, 2011 Author Report Posted July 5, 2011 These are Ehler's RSI Fisher Transform and Cyber Cycle: http://www.multiupload.com/QE92OG9LNR Thanks SoundFX is there any chance you could code the IFish so when it goes up it turns blue, and red for down?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now