Page 124 of 168

Re: v2v dynamic system

Posted: Sat Aug 05, 2023 1:27 am
by nathanvbasko
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

Re: v2v dynamic system

Posted: Sun Aug 06, 2023 3:56 am
by nathanvbasko
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

Re: v2v dynamic system

Posted: Sun Aug 06, 2023 4:56 am
by nathanvbasko
As soon as the trading week begins, I'm eager to put my Swiss Army Knife to the test






Re: v2v dynamic system

Posted: Mon Aug 07, 2023 1:49 am
by nathanvbasko
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

Re: v2v dynamic system

Posted: Mon Aug 07, 2023 5:41 am
by nathanvbasko
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

Re: v2v dynamic system

Posted: Mon Aug 07, 2023 5:14 pm
by nathanvbasko
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

Re: v2v dynamic system

Posted: Tue Aug 08, 2023 1:19 pm
by nathanvbasko
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

Re: v2v dynamic system

Posted: Tue Aug 08, 2023 1:27 pm
by Chickenspicy
do you have custom timeframe heikin ash?

Re: v2v dynamic system

Posted: Tue Aug 08, 2023 1:35 pm
by nathanvbasko
Chickenspicy wrote: Tue Aug 08, 2023 1:27 pm do you have custom timeframe heikin ash?
No, I don't have yet

Re: v2v dynamic system

Posted: Wed Aug 09, 2023 2:55 am
by nathanvbasko
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