New PolyFit Tools - page 2

 

Polyfit Derivative in Dynamic Zones

I initially came across the polyfit indicators while using tradestation. Someone coded the indicator into Dynamic Zones. Is it possible using the MT4 platform?polyfitderivative_v2.mq4

Files:
 

I hope I understood correctly

Here is the dynamic zone poly fit derivative. Probably the look back length should be experimented with. I used a conservative default parameters (order and degree) in order to see what can we get in a "conservative scenario"

regards

Mladen

mugskei:
I initially came across the polyfit indicators while using tradestation. Someone coded the indicator into Dynamic Zones. Is it possible using the MT4 platform?polyfitderivative_v2.mq4
 

Thank You

mladen,

Your generosity is greatly appreciated, thank you.

 

This is poly fit rsi and poly fit derivative using nrp coloring.

 

One more, this is the dynamic zone poly fit derivative same as the one posted by Mladen except added nrp coloring and price is presmoothed by a choice of the 18 moving averages, the averages to use are mentioned in the indicator setting, by default its using non lag ma for pre smooth.

ps) one thing have been noticing in early testing is when the signal starts separating the furthest its usually meaning a possible turn.

 

Hi all,

Is it possible to add arrows and alerts for PolyFit derivative v2?

I love this indicator and I think this is the only thing missing.

thank you

Files:
 
gafet:
Hi all,

Is it possible to add arrows and alerts for PolyFit derivative v2?

I love this indicator and I think this is the only thing missing.

thank you

Hi Gafet,

Added alerts and arrows for the polyfit derivative and signal cross.

 

Thank you very much mrtools for your quickly answer and the indicator.

 

Updated polyfit rsi (with some minor code changes too) : polyfitrsi_v1_nmc.mq4

Originally it was posted here : https://www.mql5.com/en/forum/179731

Files:
 

Dynamic zone PolyFit derivative averages_nrp from here: https://www.mql5.com/en/forum/179731 updated to be compatible with new mt4 builds and added 2 more averages for presmoothing now the averages list includes;

extern string __0 = "SMA";

extern string __1 = "EMA";

extern string __2 = "Double smoothed EMA";

extern string __3 = "Double EMA (DEMA)";

extern string __4 = "Triple EMA (TEMA)";

extern string __5 = "Smoothed MA";

extern string __6 = "Linear weighted MA";

extern string __7 = "Parabolic weighted MA";

extern string __8 = "Alexander MA";

extern string __9 = "Volume weghted MA";

extern string __10 = "Hull MA";

extern string __11 = "Triangular MA";

extern string __12 = "Sine weighted MA";

extern string __13 = "Linear regression";

extern string __14 = "IE/2";

extern string __15 = "NonLag MA";

extern string __16 = "Zero lag EMA";

extern string __17 = "Leader EMA";

extern string __18 = "Super smoother";

extern string __19 = "Smoother";

Reason: