+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Natasha Trix

Natasha Trix AFL in Amibroker combines multiple technical indicators for trend analysis and trade signals. Integrated with Amibroker data feed, this AFL offers a comprehensive approach to identifying potential market trends and trade opportunities. By leveraging Amibroker data feed capabilities, Natasha Trix assists traders in making informed decisions based on the amalgamation of various indicators within the AFL.

/
function Trix2( array, period )
{
tmp = DEMA(DEMA( DEMA( array, period ), period ), period );
result = (tmp - Ref( tmp , -1 ))/Ref( tmp, -1 ) ;
return result;
}
//(O+C)/2
Trixline = Trix2( (C), 5 );
TrixSignal = DEMA( Trixline, 3 );

Plot( Trixline, "TRIX(5)", colorRed ,4);
Plot( TrixSignal, "DMA(TRIX,3)", colorBlue ,4);

GoldenCross = Cross( TrixLine, TrixSignal );
TrixFall = Trixline < Ref( Trixline, -1 ) AND Ref( Trixline, -1 ) > Ref( Trixline, -2 );

Buy = GoldenCross;
Sell = TrixFall;
Plot( Flip( Buy, Sell ), "Trade", colorPaleGreen, styleArea | styleOwnScale, 0, 1 );
GraphXSpace=7;

Open chat
1
Hi, how can I help you?