This is a new neural indicator by Jaguar. This indicator uses a neural net as an input.
PFE: Polaryzed fractal efficiency mod: tracks the general direction, this indicator is available on the mql site.
OBV:On Balance Volume: the trend
Stochastic: Tracks the momentum
The neural net combines all those readings into a composite indicator.
The indicator is available only for registered users.
Comments
Well I am going to write an indie on FGDI and iVAR. I would like to add the Hurst difference, but the behaviour of the indie is curious.
I will try to improve it and I updload it soon
Rgds
In fact this concept of nasted percetrons opens a whole new world for composite meta trader indicators.
I worked on neural addon of the ASCtrend system, I will upload soon, I did not finish the tests yet.
For the dayly frame the original system seems better, on lower frames the neural net works better.
Hi John => important question
Tell me what is required to calcultate the Fractal Trend Line !!
Thank in advance
What is this Fractal Trend Line?
I have never heard about it.
it's a Trend Line to be calculated from Fractals stuff.
It's a new idea. It sounds nobody thought about this.
instead of the classical code based on daily tf
_________________________________________
ObjectCreate("BuyLimit", OBJ_TREND, 0, CurTime()-(Period()*60*30), Low[Lowest(NULL,0,MODE_LOW,10,1)]-15*Point,CurTime(),Low[Lowest(NULL,0,MODE_LOW,10,1)]-15*Point);
ObjectSet("BuyLimit",6,LightCyan);
ObjectSet("BuyLimit",7,STYLE_SOLID);
ObjectSet("BuyLimit",10,0);
ObjectSetText("BuyLimit","BuyLimit");
ObjectCreate("SellLimit", OBJ_TREND, 0, CurTime()-(Period()*60*30), High[Highest(NULL,0,MODE_HIGH,10,1)]+15*Point,CurTime(),High[Highest(NULL,0,MODE_HIGH,10,1)]+15*Point);
ObjectSet("SellLimit",6,MistyRose);
ObjectSet("SellLimit",7,STYLE_SOLID);
ObjectSet("SellLimit",10,0);
ObjectSetText("SellLimit","SellLimit");
ObjectCreate("BuyLimitSL", OBJ_TREND, 0, CurTime()-(Period()*60*30), Low[Lowest(NULL,0,MODE_LOW,10,1)]-20*Point,CurTime(),Low[Lowest(NULL,0,MODE_LOW,10,1)]-20*Point);
ObjectSet("BuyLimitSL",6,Honeydew);
ObjectSet("BuyLimitSL",7,STYLE_SOLID);
ObjectSet("BuyLimitSL",10,0);
ObjectSetText("BuyLimitSL","BuyLimitSL");
ObjectCreate("SellLimitSL", OBJ_TREND, 0, CurTime()-(Period()*60*30), High[Highest(NULL,0,MODE_HIGH,10,1)]+20*Point,CurTime(),High[Highest(NULL,0,MODE_HIGH,10,1)]+20*Point);
ObjectSet("SellLimitSL",6,LavenderBlush);
ObjectSet("SellLimitSL",7,STYLE_SOLID);
ObjectSet("SellLimitSL",10,0);
ObjectSetText("SellLimitSL","SellLimitSL");
ObjectCreate("BuyLimitTP", OBJ_TREND, 0, CurTime()-(Period()*60*30), High[Highest(NULL,0,MODE_HIGH,10,1)]+25*Point,CurTime(),High[Highest(NULL,0,MODE_HIGH,10,1)]+25*Point);
ObjectSet("BuyLimitTP",6,BlanchedAlmond);
ObjectSet("BuyLimitTP",7,STYLE_SOLID);
ObjectSet("BuyLimitTP",10,0);
ObjectSetText("BuyLimitTP","BuyLimitTP");
ObjectCreate("SellLimitTP", OBJ_TREND, 0, CurTime()-(Period()*60*30), Low[Lowest(NULL,0,MODE_LOW,10,1)]-25*Point,CurTime(),Low[Lowest(NULL,0,MODE_LOW,10,1)]-25*Point);
ObjectSet("SellLimitTP",6,LemonChiffon);
ObjectSet("SellLimitTP",7,STYLE_SOLID);
ObjectSet("SellLimitTP",10,0);
ObjectSetText("SellLimitTP","SellLimitTP");
_________________________________
this is the classical, it could be instead a Fibo calculation
For not being obliged to write something yet existing, I found a rvmFractals_Levels able to fetch a TL. I put it in download files
The polaryzed fractal efficiency mods this is really an advance. Really thank you Jaguar for this.
This indicator of polaryzed fractal efficiency is smoothed without lag.
Especially the release number 3 is very nice.