TheLark

FREE INDICATOR: POLARIZED FRACTAL EFFICIENCY

Looking for something other than a moving average to help determine not only a trend's strength, but also it's direction? Try PFE!

PFE was developed by Hans Hannula that was invented to determine price efficiency over a user-defined time period.

The Polarized Fractal Efficiency indicator is, in the essence, an exponentially smoothed ratio of the length of two lines: (1) of a straight line between today’s close and the close Period days ago, and (2) of a broken line connecting all Close points between today and Period days ago. The indicator output varies between -100 and 100. The theory behind this indicator is that if it is >50 (or <-50) then the market is likely to reverse its trend from positive to negative (or from negative to positive).

Other usage:
Securities with a PFE greater than zero are deemed to be trending up, while a reading of less than zero indicates the trend is down. The strengh of the trend is measured by the position of the PFE relative to the zero line. As a general rule, the further the PFE value is away from zero, the stronger and more efficient the given trend is. A PFE value that fluctuates around the zero line could indicate that the supply and demand for the security are in balance and price may trade sideways.

As with all indicators, finding something that works well along side this would be the most beneficial way to use it.
Perhaps something like the Choppiness Index (related idea below) could do the trick.

Grab the source code here: pastebin.com/TyTuWQ3s
Installation video by @ChrisMoody here : blog.tradingview.com/?p=265
Open-source Skript

Ganz im Spirit von TradingView hat der Autor dieses Skripts es als Open-Source veröffentlicht, damit Trader es besser verstehen und überprüfen können. Herzlichen Glückwunsch an den Autor! Sie können es kostenlos verwenden, aber die Wiederverwendung dieses Codes in einer Veröffentlichung unterliegt den Hausregeln. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.

Möchten Sie dieses Skript auf einem Chart verwenden?
study(title="TheLark: Polarized Fractal Efficiency", shorttitle="Lark: PFE", overlay=false)

        //•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•//   
        //                                             //
        //   POLARIZED FRACTAL EFFICIENCY BY THELARK   //
        //                 ~ 5-21-14 ~                 //
        //                                             //
        //                     •/•                     //
        //                                             //
        //    https://www.tradingview.com/u/TheLark    //
        //                                             //
        //•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•/•//

// PFE was developed by Hans Hannula that was invented to determine price efficiency over a user-defined time period. 

// The Polarized Fractal Efficiency indicator is, in the essence, an exponentially smoothed ratio of the length of 
// two lines: (1) of a straight line between today’s close and the close Period days ago, and 
// (2) of a broken line connecting all Close points between today and Period days ago. The indicator output 
// varies between -100 and 100. The theory behind this indicator is that if it is >50 (or <-50) then the market is 
// likely to reverse its trend from positive to negative (or from negative to positive).

// Other useage: 
// Securities with a PFE greater than zero are deemed to be trending up, while a reading of less 
// than zero indicates the trend is down. 
// The strengh of the trend is measured by the position of the PFE relative to the zero line. 
// As a general rule, the further the PFE value is away from zero, the stronger and more efficient 
// the given trend is. A PFE value that fluctuates around the zero line could indicate that the supply 
// and demand for the security are in balance and price may trade sideways.

Length = input(10)
Smoothing = input(5)
SingleColor = input(false, title="Single Color?")
bgcol = input(true, title="Color Background?")

// Calcs
ln = Length - 1
diff = close - close[ln]
pfetmp = 100 * sqrt(pow(diff,2) + pow(Length,2)) / sum(sqrt(1 + pow(close - close[1],2)), Length - 1)
pfe = ema( diff > 0 ? pfetmp : -pfetmp, Smoothing)

// Plots
col = pfe > 50 or pfe < -50 ? #FF8D6F : #FFD9CF
plot(pfe, color=SingleColor ? #FFD9CF : col,linewidth=1)

hline(50, color=#FFD105, linestyle=dotted)
hline(-50, color=#FFD105, linestyle=dotted)
hline(0, color=#FFD105, linestyle=dotted)

bgcolor(bgcol ? col : na)