+91-0000000000

}

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

Natasha

Natasha AFL in Amibroker focuses on technical analysis indicators for market trend identification. Integrated with Amibroker data feed, this AFL aids traders in analyzing price movements and potential trend reversals. By utilizing Amibroker data feed capabilities, Natasha assists traders in decision-making by evaluating indicators to identify potential entry or exit points.

/
_SECTION_BEGIN("Natasha");
 // Simple Math Targets -Supports/Resistances - Natasha !!
      
       Sen=Param("Zig",0.03,0.01,20,0.01)  ;
                          

                   PeakVal = Peak( H, Sen ) ;
                   TroughVal = Trough( L, Sen ) ;  
                   Plot(Zig(C,Sen)," Zig " ,  colorBlue,styleLine) ;
                   Plot(C," close",colorBlack,64) ;

         PivotTop = sqrt (PeakVal);
         PivotBottom= sqrt (TroughVal);
        
          ResA = (PivotTop + 1.618) ^ 2 ; // Fibonacci Golden Ratio
          ResB = (PivotBottom + 1.618) ^ 2 ; 
	SupportA = (PivotTop - 1.618) ^ 2 ;
	SupportB = (PivotBottom - 1.618) ^ 2 ;
          
                       Plot(ResA,"ResTop",colorRed,1);            
                       Plot(ResB,"ResBottom",colorPink,1);
                                              Plot(SupportA,"SupTop",colorBrightGreen,1);
                                             Plot(SupportB,"SupBottom",colorDarkGreen,1);
                 Filter=1;
        
       AddColumn(PeakVal,"peak",1.2,colorGreen);
       AddColumn(TroughVal,"Trough",1.2,colorRed);      
                 AddColumn(ResA,"ResTop",1.2,colorRed); 
                 AddColumn(ResB,"ResBot",1.2,colorPlum);
                 AddColumn(SupportA,"SupTop",1.2,colorGreen);
                 AddColumn(SupportB,"SupBottom",1.2,colorDarkGreen); 

   GraphXSpace =8 ;

           
       
_SECTION_END();

Open chat
1
Hi, how can I help you?