Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Trend Rider for Amibroker (AFL)
Judge the trend oscillator is a very simple formula to judge the trend.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | _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.
Back