scratch Posted July 2, 2011 Report Share 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 Link to comment Share on other sites More sharing options...
soundfx Posted July 2, 2011 Report Share Posted July 2, 2011 These are Ehler's RSI Fisher Transform and Cyber Cycle: http://www.multiupload.com/QE92OG9LNR PSmith41, scratch and cazador 3 Quote Link to comment Share on other sites More sharing options...
scratch Posted July 5, 2011 Author Report Share 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 Link to comment Share on other sites More sharing options...
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.