Venta script no hace nada?VENTA, CUENTA DEMO CON 200€
Porque cuando le pincho dos veces o lo ejecuto no me hace la orden de venta? sin embarlo la misma en compra si la hace. gracias //+------------------------------------------------------------------+ //| Sell with SL and TP | //| Copyright © 2008, smjones | //| sjcoinc | //+------------------------------------------------------------------+ #property copyright "Copyright © 2008, smjones" #property link "sjcoinc2000@yahoo.com" //#property show_inputs extern double Lots = 1; extern bool UseMoneyMgmt = false; extern double RiskPercent = 2; extern bool UseStop = true; extern bool UseTakeProfit = true; extern double StopLoss = 110; extern double TakeProfit = 45; extern string Note="0 in Entry field means Market Order Sell"; extern double Entry = 0.0000; string Input = " Sell Price "; //+------------------------------------------------------------------+ //| script program start function | //+------------------------------------------------------------------+ int start() { double Risk = RiskPercent / 100; if (UseMoneyMgmt) Lots = NormalizeDouble( AccountBalance()*Risk/StopLoss/(MarketInfo(Symbol(), MODE_TICKVALUE)),2); int Mode = OP_SELLSTOP; if (Bid < Entry && Entry > 0) Mode = OP_SELLLIMIT; if (Entry == 0) {Entry = Bid; Mode = OP_SELL;} double SLS = Entry+StopLoss*Point, TPS = Entry - TakeProfit * Point; if (UseStop == false) SLS = 0; if (UseTakeProfit == false) TPS = 0; if(Lots > 0) OrderSend(Symbol(),Mode, Lots, Entry, 2, SLS, TPS, "Sell Script",0, NULL, white); return(0); }
Re: Venta script no hace nada?Lo he estado revisando y tiene varios errores de programación, ¿por qué no pruebas a invertir el que colgué en el Foro?
Saludos, FXWizard
Re: Venta script no hace nada?El que pusistes no me fue tampoco.
Si puedes poner el enlace de nuevo. gracias
Re: Venta script no hace nada?Mira aquí:
poner-stoploss-profit-automaticamente-t2340.html#p18122 Aquí lo tienes tambien modificado para las ventas: poner-stoploss-profit-automaticamente-t2340-30.html#p18654 Saludos, FXWizard
4 mensajes
• Página 1 de 1
|
|
Usuarios navegando por este Foro: No hay usuarios registrados visitando el Foro y 1 invitado