Nirvana.afl by MRTQ13

sr114

Well-Known Member
okay thanks..... so happy that i could got hold of you....

lastly can u through some brief insights on the line in the first nirvana (i mean the ma lines)... how many r they? and which line depicts what? i know all is given in all the post but it is very tiresome to do all over again...

just brief words will do.....

thanks!!!
ritesh

ask amibroker fans - abut nirvana/rocket jet afl - he is the expert abut this system.

but if u r going to use the nirvana systen in positional trade or in intraday trade - discard the MAs (thru the the parameters ) - its useless in intrday and in positional - discard all MAs

u will get better result

sr
 
Last edited:
dear

i wish i can give u a clear ans about those mov avg for positional trading... but unfortunately i cant :( i still now confuse , will i use it or not. i take it for prevent OVERTRADE. MRTQ13 also did not tell anything about his system.

anyway there is 4 mov avg as u can see in parameter.

article by mrtq13 on mov avg u can read http://www.traderji.com/amibroker/69660-myth-southwind.html post no .10
awesome thanks....

will post more once i know more abt the system.... pls keep checking this post i will ask more Q's as and when i progress..... :))
 
ritesh

ask amibroker fans - abut nirvana/rocket jet afl - he is the expert abut this system.

but if u r going to use the nirvana systen in positional trade or in intraday trade - discard the MAs (thru the the parameters ) - its useless in intrday and in positional - discard all MAs

u will get better result

sr
ur version also very good(nirvan) me using in intra. expecting more work like that
 


this is the eror im gettin
u r probably missing an AFL

follow these steps:
1. copy the below pasted code as it is via formula editor in amibroker.
2. save at "c:\program files\amibroker\formula\include" by naming it T3.afl

your afl must work now....





function T3(price,periods) //AMA-based
{
s=Param("Hot ?",0.618,0,100,0.001,0);
periods = 2/(periods+1);
e1=AMA(price,periods);
e2=AMA(e1,Periods);
e3=AMA(e2,Periods);
e4=AMA(e3,Periods);
e5=AMA(e4,Periods);
e6=AMA(e5,Periods);
c1=-s*s*s;
c2=3*s*s+3*s*s*s;
c3=-6*s*s-3*s-3*s*s*s;
c4=1+3*s+s*s*s+3*s*s;
Ti3=c1*e6+c2*e5+c3*e4+c4*e3;
return ti3;
}
P = ParamField("Price field");
periods = Param( "Periods", 3, 1, 100, 1 );
 
u r probably missing an AFL

follow these steps:
1. copy the below pasted code as it is via formula editor in amibroker.
2. save at "c:\program files\amibroker\formula\include" by naming it T3.afl

your afl must work now....





function T3(price,periods) //AMA-based
{
s=Param("Hot ?",0.618,0,100,0.001,0);
periods = 2/(periods+1);
e1=AMA(price,periods);
e2=AMA(e1,Periods);
e3=AMA(e2,Periods);
e4=AMA(e3,Periods);
e5=AMA(e4,Periods);
e6=AMA(e5,Periods);
c1=-s*s*s;
c2=3*s*s+3*s*s*s;
c3=-6*s*s-3*s-3*s*s*s;
c4=1+3*s+s*s*s+3*s*s;
Ti3=c1*e6+c2*e5+c3*e4+c4*e3;
return ti3;
}
P = ParamField("Price field");
periods = Param( "Periods", 3, 1, 100, 1 );

i have t3 but pattern explorer not working
 

Similar threads