Fisher Transform Signals
Posted in Indicator on Mar 7th, 2009
Here’s a reader request for an upper study that plots Fisher Transform signals on the price bars. # FisherTransformSignals # http://www.thinkscripter.com # thinkscripter@gmail.com # Last Update 20 June 2010 input signalOffsetFactor = 0.20; input length = 10; input threshold = 2.0; def signalOffset = AvgTrueRange(high,close,low,10)*signalOffsetFactor; def maxHigh = Highest(high, length); def minLow = Lowest(low, length); [...]



