Skip to main content

Trend Rider for Amibroker (AFL)

sandeepkj about 16 years ago Amibroker (AFL)

  • Rating:
    2 / 5 (Votes 3)
  • Tags:
    oscillator, amibroker

Judge the trend oscillator is a very simple formula to judge the trend.

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("trendrider");
//------------------------------------------------------------------------------
//
//  Formula Name:    trendrider
//  Author/Uploader: sandeep 
//
//------------------------------------------------------------------------------
//
//  
//
//------------------------------------------------------------------------------


/* Set Scaling to Automatic, Show dates On, Percent On, Middle On */

Title = "sunny trend Close - Ref(Close,-7)"; 
GraphXSpace = 5;
Graph0 = MA(Close - Ref(Close,-7),1); 
Graph0Style = 5; 
Graph0Color = 34;
Graph1 = MA(Graph0,5);
Graph1Style = 1;  
Graph1Color = 32;
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.