Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
gmma for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | //+------------------------------------------------------------------+ //| Guppy Mulitple Moving Average (Short).mq4 | //| Code written by - Matt Trigwell | //| | //+------------------------------------------------------------------+ // ***** For information on how to use this fantastic indicator ***** // http://www.guppytraders.com/ // http://www.market-analyst.com/kb/article.php/Guppy_Multiple_Moving_Average // http://tradermike.net/2004/05/another_look_at_multiple_moving_averages // ***** INSTRUCTIONS ***** // Add the GMMA Short indicator and the GMMA Long indicator to your charts. // This is the GMMA Short indicator #property copyright "Code written by - Matt Trigwell" #property indicator_chart_window #property indicator_buffers 5 #property indicator_color1 ForestGreen #property indicator_color2 ForestGreen #property indicator_color3 ForestGreen #property indicator_color4 ForestGreen #property indicator_color5 ForestGreen //---- buffers double ExtMapBuffer1[]; double ExtMapBuffer2[]; double ExtMapBuffer3[]; double ExtMapBuffer4[]; double ExtMapBuffer5[]; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- indicators SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,ExtMapBuffer1); SetIndexStyle(1,DRAW_LINE); SetIndexBuffer(1,ExtMapBuffer2); SetIndexStyle(2,DRAW_LINE); SetIndexBuffer(2,ExtMapBuffer3); SetIndexStyle(3,DRAW_LINE); SetIndexBuffer(3,ExtMapBuffer4); SetIndexStyle(4,DRAW_LINE); SetIndexBuffer(4,ExtMapBuffer5); //---- return (0); } int deinit() { return (0); } int start() { int i,j,limit,counted_bars=IndicatorCounted(); if (counted_bars<0) return (-1); if (counted_bars>0) counted_bars--; limit=Bars-counted_bars; for (i=0; i<limit; i++){ ExtMapBuffer1[i]=iMA( NULL ,0,3,0,MODE_EMA,PRICE_CLOSE,i); ExtMapBuffer2[i]=iMA( NULL ,0,7,0,MODE_EMA,PRICE_CLOSE,i); ExtMapBuffer3[i]=iMA( NULL ,0,10,0,MODE_EMA,PRICE_CLOSE,i); ExtMapBuffer4[i]=iMA( NULL ,0,12,0,MODE_EMA,PRICE_CLOSE,i); ExtMapBuffer5[i]=iMA( NULL ,0,15,0,MODE_EMA,PRICE_CLOSE,i); } return (0); } //+------------------------------------------------------------------+ |