Re: v2v dynamic system

1231
dynamic MyNET UPDATES

Finally! It's all good now ; )—

Now...The VHF is being turned OFF while the SSA is turned ON
Applied dumb proofing between
VHF and SSA button behaviors
New default parameter values (please get the new templates)





New users MUST read and follow these STEPS.
New templates (a must) ...with stripped template (
v2v_simple.tpl)
You can download and read more about the system by clicking »»
HERE
These users thanked the author nathanvbasko for the post:
Krunal Gajjar
Since Frank Sinatra sings in his own way, my charts sing... ♪  I did it, My... Way...  ♬ ; )─


Re: v2v dynamic system

1232
dynamic MyNET NEMA - DEMA - TEMA

If the depth is set to 1, NEMA is equal to EMA, for depth 2 it is equal to DEMA, for depth 3 it is equal to TEMA

Added NEMA on the MA Method parameter... Now... with KAMA, RMA, NEMA, DEMA, and TEMA
The implementation of Singular Spectrum Analysis (SSA) has been slightly adjusted.
New default parameter values (please use the new templates)


New users MUST read and follow these STEPS.
New templates (a must) ...with stripped template (
v2v_simple.tpl)
You can download and read more about the system by clicking »»
HERE
These users thanked the author nathanvbasko for the post (total 2):
kvak, Krunal Gajjar
Since Frank Sinatra sings in his own way, my charts sing... ♪  I did it, My... Way...  ♬ ; )─

Re: v2v dynamic system

1234
dynamic MyNET SmoothStep function

Adjusted and optimized the SmoothStep function (e.g. S0, S1, Sn)


New users MUST read and follow these STEPS.
New templates (a must) ...with stripped template (
v2v_simple.tpl)
You can download and read more about the system by clicking »»
HERE
These users thanked the author nathanvbasko for the post:
Krunal Gajjar
Since Frank Sinatra sings in his own way, my charts sing... ♪  I did it, My... Way...  ♬ ; )─

Re: v2v dynamic system

1235
dynamic MyNET VHF SmoothStep SSA

Due to a previously identified constraint...
I adjusted the switching behavior again to these buttons »» SSA, SmoothStep, and VHF.

Removed only the LWMA optional mode filter
Updated the default parameter values... As a result, please make use of the templates provided.


New users MUST read and follow these STEPS.
New templates (a must) ...with stripped template (
v2v_simple.tpl)
You can download and read more about the system by clicking »»
HERE
Since Frank Sinatra sings in his own way, my charts sing... ♪  I did it, My... Way...  ♬ ; )─


Re: v2v dynamic system

1236
dynamic MyNET Singular Spectrum Analysis (SSA)

Due to a previously identified issue, I finally found and resolved what causes it »» RMA phase accumulation of MACD.
Updated the default parameter values... As a result,
please make use of the templates provided.
SSA normally recalculates... Even more noticeable inside dynamic MyNET architecture.
Below code snippet shows an updated SSA's embedded parameter calculation:

Code: Select all

if(workSSA == ON) {//SSA calc
   double ssaIn[]; 
   double ssaOut[];
   int SSALag                        = workMTF != ON ? 21 : (global.period < 14 ? 14 : 9);
   int SSANumberOfComputations       = workMTF != ON ? 2 : 1;
   int SSAPeriodNormalization        = global.vhf == ON ? (int)global.vperiod : global.period;
   
   ChkPeriod(SSAPeriodNormalization,SSALag); //Check if SSALag < SSAPeriodNormalization... Else swap their value
   
   int SSANumberOfBars               = workMTF != ON ? MathMax(300,(MinBars/2)-100) : MathMax(150,(MinBars/3)-50);
   int FirstBar                      = workMTF != ON ? MathMax(400,MinBars/2) : MathMax(200,MinBars/3); 
   if (i<=FirstBar){
      int ssaBars = MathMin(Bars-i,SSANumberOfBars);
      if (ssaBars<SSALag) continue;
         if (ArraySize(ssaIn) != ssaBars){
            ArrayResize(ssaIn ,ssaBars);
            ArrayResize(ssaOut,ssaBars);
         }
         ArrayCopy(ssaIn,my,0,i,ssaBars);

      fastSingular(ssaIn,ssaBars,SSALag,SSANumberOfComputations,ssaOut);
      net[i] = DivZero(ssaOut[0],global.netDenom);
   }
} //End SSA calc


New users MUST read and follow these STEPS.
New templates (a must) ...with stripped template (
v2v_simple.tpl)
You can download and read more about the system by clicking »»
HERE
These users thanked the author nathanvbasko for the post (total 2):
Krunal Gajjar, Chickenspicy
Since Frank Sinatra sings in his own way, my charts sing... ♪  I did it, My... Way...  ♬ ; )─

Re: v2v dynamic system

1237
dynamic MyNET Singular Spectrum Analysis (SSA)

Just a simple optimization...
Updated the default parameter values... As a result, please make use of the templates provided.


New users MUST read and follow these STEPS.
New templates (a must) ...with stripped template (
v2v_simple.tpl)
You can download and read more about the system by clicking »»
HERE
Since Frank Sinatra sings in his own way, my charts sing... ♪  I did it, My... Way...  ♬ ; )─

Re: v2v dynamic system

1240
dynamic MyNET Adaptive Moving Average (AMA)

In “Adaptive Moving Averages”, author Vitali Apirine introduces an AMA technique based on Perry Kaufman’s KAMA (Kaufman adaptive moving average).

Added AMA as an MA Method


New users MUST read and follow these STEPS.
New templates (a must) ...with stripped template (
v2v_simple.tpl)
You can download and read more about the system by clicking »»
HERE
These users thanked the author nathanvbasko for the post (total 3):
Jedidiah, Chickenspicy, Krunal Gajjar
Since Frank Sinatra sings in his own way, my charts sing... ♪  I did it, My... Way...  ♬ ; )─


Who is online

Users browsing this forum: PaperLi [Bot], Ricstar_8, thomdel and 32 guests