any close at equity and rise after x pips ea pleace
amitkk:
any close at equity and rise after x pips ea pleace
any close at equity and rise after x pips ea pleace
I've no idea what you are asking ???
//|$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ //| Close //| Last Updated 12-12-2006 10:00pm //UseEquityRaiseAfterClose //When this is set to true, it will utilize this "Equity Raise After Close" function. ///EquityRaisedByXAfterClose //This indicates how much equity that will be raised after the it closes all positions. //Calculation for this is: //New Equity Target = Original Equity Target + EquityRaisedByXAfterClose. //RunEquityRaiseContinuously //When this is set to true, it will run this new "Equity Raise" continuously after each "Close All Positions" function is performed. When this is set to false, it will run this new "Equity Raise" just once after a "Close All Positions" is performed. //|$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ #define NL "\n" extern int EquityTarget = 25; // closes all orders once Equity hits this $ amount extern bool UseEquityRaiseAfterClose = true; extern bool EquityRaisedByXAfterClose = 25; extern bool RunEquityRaiseContinuously = true; extern bool CloseAllNow = false; // closes all orders now extern bool CloseProfitableTradesOnly = false; // closes only profitable trades extern double ProftableTradeAmount = 1; // Only trades above this amount close out extern bool ClosePendingOnly = false; // closes pending orders only extern bool UseAlerts = false; bool run_status = false; //+-------------+ //| Custom init | //|-------------+ int init() { } //+----------------+ //| Custom DE-init | //+----------------+ int deinit() { } //+------------------------------------------------------------------------+ //| Closes everything //+------------------------------------------------------------------------+ void CloseAll() { for(int i=OrdersTotal()-1;i>=0;i--) { OrderSelect(i, SELECT_BY_POS); bool result = false; if ( OrderType() == OP_BUY) result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red ); if ( OrderType() == OP_SELL) result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red ); if ( OrderType()== OP_BUYSTOP) result = OrderDelete( OrderTicket() ); if ( OrderType()== OP_SELLSTOP) result = OrderDelete( OrderTicket() ); if (UseAlerts) PlaySound("alert.wav"); } return; } //+------------------------------------------------------------------------+ //| cancels all orders that are in profit //+------------------------------------------------------------------------+ void CloseAllinProfit() { for(int i=OrdersTotal()-1;i>=0;i--) { OrderSelect(i, SELECT_BY_POS); bool result = false; if ( OrderType() == OP_BUY && OrderProfit()+OrderSwap()>ProftableTradeAmount) result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red ); if ( OrderType() == OP_SELL && OrderProfit()+OrderSwap()>ProftableTradeAmount) result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red ); if (UseAlerts) PlaySound("alert.wav"); } return; } //+------------------------------------------------------------------------+ //| cancels all pending orders //+------------------------------------------------------------------------+ void ClosePendingOrdersOnly() { for(int i=OrdersTotal()-1;i>=0;i--) { OrderSelect(i, SELECT_BY_POS); bool result = false; if ( OrderType()== OP_BUYSTOP) result = OrderDelete( OrderTicket() ); if ( OrderType()== OP_SELLSTOP) result = OrderDelete( OrderTicket() ); } return; } //+-----------+ //| Main | //+-----------+ int start() { int OrdersBUY; int OrdersSELL; double BuyLots, SellLots, BuyProfit, SellProfit; //+------------------------------------------------------------------+ // Determine last order price | //-------------------------------------------------------------------+ for(int i=0;i<OrdersTotal();i++) { OrderSelect(i,SELECT_BY_POS,MODE_TRADES); if(OrderType()==OP_BUY) OrdersBUY++; if(OrderType()==OP_SELL) OrdersSELL++; if(OrderType()==OP_BUY) BuyLots += OrderLots(); if(OrderType()==OP_SELL) SellLots += OrderLots(); if(OrderType() == OP_BUY) BuyProfit += OrderProfit() + OrderCommission() + OrderSwap(); if(OrderType() == OP_SELL) SellProfit += OrderProfit() + OrderCommission() + OrderSwap(); } if(CloseAllNow) CloseAll(); if(CloseProfitableTradesOnly) CloseAllinProfit(); if(AccountEquity() >= EquityTarget) { CloseAll(); if(RunEquityRaiseContinuously==true) { run_status = false; } if(UseEquityRaiseAfterClose == true && run_status == false) { EquityTarget = EquityTarget + EquityRaisedByXAfterClose; run_status = true; } } if(ClosePendingOnly) ClosePendingOrdersOnly(); Comment(" Comments Last Update 12-12-2006 10:00pm", NL, " Buys ", OrdersBUY, NL, " BuyLots ", BuyLots, NL, " Sells ", OrdersSELL, NL, " SellLots ", SellLots, NL, " Balance ", AccountBalance(), NL, " Equity ", AccountEquity(), NL, " Margin ", AccountMargin(), NL, " MarginPercent ", MathRound((AccountEquity()/AccountMargin())*100), NL, " Current Time is ",TimeHour(CurTime()),":",TimeMinute(CurTime()),".",TimeSeconds(CurTime())); } // start()
extern bool EquityRaisedByXAfterClose = 25;
change bool by int. but even after it has no work only close at equity not rise. need proper setting
amitkk:
change bool by int. but even after it has no work only close at equity not rise. need proper setting
Why would you give a bool the value 25 ??
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register