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"); ===================================================== Quote
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 cazador, PSmith41 and scratch 3 Quote
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? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.