//+------------------------------------------------------------------+ //| icwr.mq4 | //| Copyright © 2006, tageiger aka fxid10t@yahoo.com | //| http://www.metatrader.org | //+------------------------------------------------------------------+ #property copyright "Copyright © 2006, tageiger aka fxid10t@yahoo.com" #property link "http://www.metatrader.org" #include extern double Min.Wave.Range =0; //if zero, 5m/240m defaults apply extern int StopLoss =0; //if zero, 5m/240m defaults apply extern double tsl.divisor =1.25; extern int RSI.TimeFrame =1440; //default daily timeframe extern int RSI.Period =14; //default 14 periods extern int RSI.Applied_Price =0; /*see below, default PRICE_CLOSE Applied price constants can be any of the following values: Constant Value Description PRICE_CLOSE 0 Close price. PRICE_OPEN 1 Open price. PRICE_HIGH 2 High price. PRICE_LOW 3 Low price. PRICE_MEDIAN 4 Median price, (high+low)/2. PRICE_TYPICAL 5 Typical price, (high+low+close)/3. PRICE_WEIGHTED 6 Weighted close price, (high+low+close+close)/4. */ extern int RSI.Shift =0; //default zero extern bool Use.Money.Mgt =true; //if false, uses Minimum.Lot extern double Minimum.Lot =0.1; //Smallest lot size to trade, Use.MM true or false extern double MaximumRisk =0.02; //%account balance to risk per position extern double DecreaseFactor =3; //lot size divisor(reducer) during loss streak extern double Lot.Margin =50; //Margin for 1 lot extern int Magic =69; extern string comment ="m icwr.19"; double rsi,temp.high,active.high,temp.low,active.low,r,x,SL,awp1,awp2,high.c,high.r,low.r,low.c; double rng,sum.rng,avg.rng,adx.plus.di,adx.minus.di; int a.high.shift,a.low.shift,shift,b,s,cnt,b.ticket,s.ticket; datetime a.high.time,a.low.time,awt1,awt2; string FiboName,fib.a,fib.b,TrendName,DR; int init(){return(0);} int deinit(){ int ret=MessageBox("Delete Fibo"+"\'"+"s & TrendLines?",Symbol()+" "+Period()+comment+" Deinitialization",MB_YESNO|MB_ICONQUESTION); if(ret==IDYES) {ObjectsDeleteAll(0,OBJ_FIBO);ObjectsDeleteAll(0,OBJ_TREND);} return(0);} int start(){ ObjectsDeleteAll(0,OBJ_ARROW); if(Bars<288) {return(0);} double spread; spread =Ask-Bid; int slip; slip =spread/Point; //ObjectsDeleteAll(0,22); if(ObjectsTotal(OBJ_FIBO)>0) { if(ObjectsTotal(OBJ_FIBO)>=3) { for(int f.d=0; f.d2) { Print("Deleting Fibo ",ObjectName(0)); ObjectDelete(ObjectName(0));}}} if(ObjectsTotal(OBJ_FIBO)==2) { for(int f=0;fObjectGet(fib.a,3)) { active.high=ObjectGet(fib.a,1); a.high.time=ObjectGet(fib.a,0); active.low=ObjectGet(fib.a,3); a.low.time=ObjectGet(fib.a,2);}}} PosCounter(); rsi=iRSI(Symbol(),RSI.TimeFrame,RSI.Period,RSI.Applied_Price,RSI.Shift); adx.plus.di=iADX(Symbol(),RSI.TimeFrame,RSI.Period,RSI.Applied_Price,MODE_PLUSDI,RSI.Shift); adx.minus.di=iADX(Symbol(),RSI.TimeFrame,RSI.Period,RSI.Applied_Price,MODE_MINUSDI,RSI.Shift); if(Min.Wave.Range==0) { if(Period()<240) { x=NormalizeDouble(Daily.Range()/2,Digits); if(x<1.25*(40*Point)) x=NormalizeDouble(Daily.Range(),Digits); if(x<40*Point) x=40*Point;} if(Period()>=240) {x=(150*Point);}} if(Min.Wave.Range>0) {x=(Min.Wave.Range*Point);} if(StopLoss==0) { if(Period()<240) { SL=NormalizeDouble(Daily.Range()/2,Digits); if(SL<50*Point) SL=NormalizeDouble(Daily.Range(),Digits); if(SL<50*Point) SL=50*Point;} if(Period()>=240) {SL=(100*Point);}} if(StopLoss>0) {SL=(StopLoss*Point);} if(a.high.time>0) {a.high.shift=iBarShift(Symbol(),Period(),a.high.time);} if(a.low.time>0) {a.low.shift=iBarShift(Symbol(),Period(),a.low.time);} //---initial fibo/active wave location for(int c=1;ractive.high) { active.high=temp.high; a.high.time=iTime(Symbol(),Period(),Highest(Symbol(),Period(),MODE_HIGH,c,0)); a.high.shift=iBarShift(Symbol(),Period(),a.high.time);} temp.low=Low[Lowest(Symbol(),Period(),MODE_LOW,c,0)]; if(temp.lowactive.high) { ObjectDelete(TimeToStr(a.high.time,TIME_DATE|TIME_MINUTES));//fibo name ObjectDelete(TimeToStr(a.low.time,TIME_DATE|TIME_MINUTES));//trend name active.high=High[Highest(Symbol(),Period(),MODE_HIGH,a.low.shift,0)]; a.high.time=iTime(Symbol(),Period(),Highest(Symbol(),5,MODE_HIGH,a.low.shift,0)); a.high.shift=iBarShift(Symbol(),Period(),a.high.time);} if(a.low.shift<=1 && Low[0]1 && high.r>0 && Close[Lowest(Symbol(),Period(),MODE_LOW,shift,0)]>high.r) { if(High[Highest(Symbol(),Period(),MODE_HIGH,shift,0)]>active.high) { ObjectDelete(TimeToStr(a.high.time,TIME_DATE|TIME_MINUTES));//fibo name ObjectDelete(TimeToStr(a.low.time,TIME_DATE|TIME_MINUTES));//trend name active.high=High[Highest(Symbol(),Period(),MODE_HIGH,shift,0)]; a.high.time=iTime(Symbol(),Period(),Highest(Symbol(),5,MODE_HIGH,shift,0)); a.high.shift=iBarShift(Symbol(),Period(),a.high.time);}}} if(a.low.shift1 && low.r>0 && Close[Highest(Symbol(),Period(),MODE_HIGH,shift,0)]1 && (High[Highest(Symbol(),Period(),MODE_HIGH,shift,0)]-Low[Lowest(Symbol(),Period(),MODE_LOW,shift,0)]>=x)) { active.high=0;a.high.time=0;a.high.shift=0; active.low=0;a.low.time=0;a.low.shift=0; temp.high=High[Highest(Symbol(),Period(),MODE_HIGH,shift,0)]; if(temp.high>active.high) { active.high=temp.high; a.high.time=iTime(Symbol(),Period(),Highest(Symbol(),Period(),MODE_HIGH,shift,0)); a.high.shift=iBarShift(Symbol(),Period(),a.high.time);} temp.low=Low[Lowest(Symbol(),Period(),MODE_LOW,shift,0)]; if(temp.low50 && adx.plus.di>adx.minus.di) { for(int i=0;ilow.r && Low[1]>high.c) || Corrective()=="buy" || (a.low.shifthigh.c)) { b.ticket=OrderSend(Symbol(), OP_BUY, LotsOptimized(), NormalizeDouble(Ask,Digits), slip, NormalizeDouble(Ask-SL,Digits), 0, Period()+comment, Magic,0,Blue); if(b.ticket>0) { if(OrderSelect(b.ticket,SELECT_BY_TICKET,MODE_TRADES)) { Print(b.ticket); } else Print("Error Opening BuyStop Order: ",GetLastError()); return(0);}}}} if(s==0 && rsi<50 && rsi>0 && adx.minus.di>adx.plus.di) { for(int ii=0;iilow.r && High[1]active.low && High[1]0) { if(OrderSelect(s.ticket,SELECT_BY_TICKET,MODE_TRADES)) { Print(s.ticket); } else Print("Error Opening SellStop Order: ",GetLastError()); return(0);}}}} if(b.ticket>0) { OrderSelect(b.ticket,SELECT_BY_TICKET); if(High[1]0)*/ && OrderProfit()>0) { OrderClose(OrderTicket(),OrderLots(),NormalizeDouble(Bid,Digits),slip,Blue);}} /* if(active.low>OrderOpenPrice() && active.low>OrderStopLoss()) { OrderModify(OrderTicket(),OrderOpenPrice(),active.low,0,0,LightBlue);}} */ if(s.ticket>0) { OrderSelect(s.ticket,SELECT_BY_TICKET); if(Low[1]>high.c/* || Corrective() || b.ticket>0)*/ && OrderProfit()>0) { OrderClose(OrderTicket(),OrderLots(),NormalizeDouble(Ask,Digits),slip,Red);}} /* if(active.high50) { //determine if the prior wave is corrective if(pawp1>pawp2 && Low[1]>NormalizeDouble((pawp2+((pawp1-pawp2)*0.75)),Digits)) {return("buy");}//} //--bearish trend // if(rsi<50 && rsi>0) { //determine if the prior wave is corrective if(pawp2>pawp1 && High[1]0) string swap="longs."; else swap="shorts."; if(MarketInfo(Symbol(),MODE_SWAPLONG)<0 && MarketInfo(Symbol(),MODE_SWAPSHORT)<0) swap="your broker. :("; Comment("Last Tick: ",TimeToStr(CurTime(),TIME_DATE|TIME_SECONDS),"\n", "Swap favors ",swap,"\n", "Daily RSI= ",rsi,"\n", "Daily ADX DI+: ",adx.plus.di,"\n", "Daily ADX DI-: ",adx.minus.di,"\n", "Active High: ",active.high,"\n", "High Confirm: ",high.c,"\n", "High Retrace: ",high.r,"\n", "Low Retrace: ",low.r,"\n", "Low Confirm: ",low.c,"\n", "Active Low: ",active.low,"\n", //"High shift: ",a.high.shift,"\n", //"Low shift: ",a.low.shift,"\n", //"Total Waves: ", ObjectsTotal(OBJ_FIBO),"\n", "Average Daily Range: ",Daily.Range(),"\n", "Minimum Wave Height: ",x,"\n","Active Wave Height: ",active.high-active.low,"\n", "Open Long/Short Ticket #","\'","s: ",b.ticket," ",s.ticket); } void PosCounter() { b=0;s=0;b.ticket=0;s.ticket=0; for(cnt=0;cnt<=OrdersTotal();cnt++) { OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES); if(OrderSymbol()==Symbol() && OrderMagicNumber()==Magic) { if(OrderType()==OP_SELL) { s.ticket=OrderTicket(); s++;} if(OrderType()==OP_BUY) { b.ticket=OrderTicket(); b++;} }}} double LotsOptimized() { double lot; int orders=HistoryTotal(); int losses=0; lot=NormalizeDouble(AccountFreeMargin()*MaximumRisk/Lot.Margin,2); if(DecreaseFactor>0) { for(int i=orders-1;i>=0;i--) { if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY)==false) { Print("Error in history!"); break; } if(OrderSymbol()!=Symbol() || OrderType()>OP_SELL) continue; if(OrderProfit()>0) break; if(OrderProfit()<0) losses++; } if(losses>1) lot=NormalizeDouble(lot-lot*losses/DecreaseFactor,2); } if(lot0) { double bsl=NormalizeDouble(x,Digits);double b.tsl=0; OrderSelect(b.ticket,SELECT_BY_TICKET); //if stoploss is less than minimum wave range, set bsl to current SL if(OrderStopLoss()=x) {bsl=NormalizeDouble(x,Digits);} //determine if stoploss should be modified if(Bid>(OrderOpenPrice()+bsl) && OrderStopLoss()<(OrderOpenPrice()+(Bid-(OrderOpenPrice()+bsl))/tsl.divisor)) { b.tsl=NormalizeDouble(OrderOpenPrice()+((Bid-(OrderOpenPrice()+bsl))/tsl.divisor),Digits); Print("b.tsl ",b.tsl); OrderModify(b.ticket,OrderOpenPrice(),b.tsl,OrderTakeProfit(), OrderExpiration(),MediumSpringGreen);}} //--Short TSL calc... if(s.ticket>0) { double ssl=NormalizeDouble(x,Digits);double s.tsl=0; OrderSelect(s.ticket,SELECT_BY_TICKET); //if stoploss is less than minimum wave range, set ssl to current SL if(OrderStopLoss()>OrderOpenPrice() && OrderStopLoss()-OrderOpenPrice()OrderOpenPrice() && OrderStopLoss()-OrderOpenPrice()>=x) {ssl=NormalizeDouble(x,Digits);} //determine if stoploss should be modified if(Ask<(OrderOpenPrice()-ssl) && OrderStopLoss()>(OrderOpenPrice()-((OrderOpenPrice()-ssl)-Ask)/tsl.divisor)) { s.tsl=NormalizeDouble(OrderOpenPrice()-(((OrderOpenPrice()-ssl)-Ask)/tsl.divisor),Digits); Print("s.tsl ",s.tsl); OrderModify(s.ticket,OrderOpenPrice(),s.tsl,OrderTakeProfit(), OrderExpiration(),MediumVioletRed);}} }//end Trail.Stop