//+------------------------------------------------------------------+ //| 10 Minute trader | //+------------------------------------------------------------------+ #property copyright "Ron T" #property link "http://www.lightpatch.com" #property indicator_chart_window #property indicator_buffers 6 #property indicator_color1 White // arrow up for moving average #property indicator_color2 White // arrow down for moving average #property indicator_color3 Aqua // box for stoch #property indicator_color4 Red // box for rsi #property indicator_color5 White // box for macd #property indicator_color6 White // dot for early stoch cross //---- buffers double ExtMapBuffer1[]; double ExtMapBuffer2[]; double ExtMapBuffer3[]; double ExtMapBuffer4[]; double ExtMapBuffer5[]; double ExtMapBuffer6[]; // User Input //+------------------------------------------------------------------+ //| Custom indicator initialization function | //|------------------------------------------------------------------| int init() { // 233 up arrow // 234 down arrow // 159 big dot // 168 open square SetIndexStyle(0,DRAW_ARROW); SetIndexBuffer(0, ExtMapBuffer1); SetIndexArrow(0,233); //up SetIndexStyle(1,DRAW_ARROW); SetIndexBuffer(1, ExtMapBuffer2); SetIndexArrow(1,234); //down SetIndexStyle(2,DRAW_ARROW); SetIndexBuffer(2, ExtMapBuffer3); SetIndexArrow(2,168); //open square SetIndexStyle(3,DRAW_ARROW); SetIndexBuffer(3, ExtMapBuffer4); SetIndexArrow(3,168); //open square SetIndexStyle(4,DRAW_ARROW); SetIndexBuffer(4, ExtMapBuffer5); SetIndexArrow(4,168); //open square SetIndexStyle(5,DRAW_ARROW); SetIndexBuffer(5, ExtMapBuffer6); SetIndexArrow(5,159); //dot return(0); } //+------------------------------------------------------------------+ //| Custor indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { int i; for( i=0; i=0) { wma_p=wma; // save previous calculations wma=iMA(Symbol(),0,10,0,MODE_LWMA,PRICE_CLOSE,pos); sma_p=sma; // save previous calculations sma=iMA(Symbol(),0,20,0,MODE_SMA,PRICE_CLOSE,pos); stochm_p=stochm; stochm=iStochastic(Symbol(),0,10,6,6,0,1,0,pos); stochs_p=stochs; stochs=iStochastic(Symbol(),0,10,6,6,0,1,1,pos); rsi=iRSI(Symbol(),0,28,PRICE_CLOSE,pos); rsi1=iRSI(Symbol(),0,28,PRICE_CLOSE,pos+1); rsi2=iRSI(Symbol(),0,28,PRICE_CLOSE,pos+2); rsi3=iRSI(Symbol(),0,28,PRICE_CLOSE,pos+3); rsi4=iRSI(Symbol(),0,28,PRICE_CLOSE,pos+4); // RISING stochastic cross // if (stochm_p>stochm && stochs_pstochm) // FALLING stochastic cross // if (stochm_pstochs && stochs sma ) { ExtMapBuffer1[pos]=wma - 0.0006; if (rsi > 52 ) //blue { ExtMapBuffer3[pos]=wma + 0.0003; } if (stochm > stochs) //red { ExtMapBuffer4[pos]=wma + 0.0006; } // if ( rsi>55 && (rsi1<45||rsi2<45||rsi3<45) && (stochm>80||stochs>80) ) //white if ( rsi > 55 ) //white { ExtMapBuffer5[pos]=wma + 0.0009; } } if ( wma_p > sma_p && wma < sma ) { ExtMapBuffer2[pos]=wma + 0.0006; if (rsi < 48 ) { ExtMapBuffer3[pos]=wma - 0.0003; } if (stochm < stochs) { ExtMapBuffer4[pos]=wma - 0.0006; } // if ( rsi<45 && (rsi1>55||rsi2>55||rsi3>55) && (stochm<20||stochs<20) ) //white if ( rsi < 45 ) //white { ExtMapBuffer5[pos]=wma - 0.0009; } } pos--; } return(0); } //+------------------------------------------------------------------+