RosePipsIndicator

0
(0)
Nombre:
RosePipsIndicator
Autor: Luis Christian Stoltz (2014.02.11 14:58)
descargado: 135
Descargar:
RosePipsIndicator 1
RosyPipsIndicator.mq4 (7.9 Kb) Vista
Autor: Luis Christian Stoltz

Descripción:

This indicator will calculate pips wins and losses for any pair with a parsar and doji star trading strategy. You can see pip targets and losses and see if you can find a winning pair with this.

5MIN charts are the best on current settings. Dont risk your account on this, there still high pip losses I see that are high risk. If you use micro lots then maybe its ok.

This can save your life in forex.

Imagen:

RosePipsIndicator 2

Here is an expert to backtest. You can see its pretty risky so use microlots. This is just for studying the market, I havent traded with this.

#enlace de propiedad      "[email protected]"

/**
Louis Christian Stoltz

                        _____
                      /  ___  \
                    /  /  _  \  \
                  /( /( /(_)\ )\ )\
                 (  \  \ ___ /  /  )
                 (    \ _____ /    )
                 /(               )\
                |  \             /  |
                |    \ _______ /    |
                 \    / \   / \    /
                   \/    | |    \/
                         | |
                         | |
                         |_|
**/

/**
  Global Variables
**/  

double glbOrderProfit;
double glbOrderOpen;
double glbOrderStop;
double glbOrderType;
double glbOrderTicket;
int gblOrderPips;

inicio int()
{
int MagicBuy = 7647;
int MagicSell = 7648;

double sell = iCustom(Símbolo(),Período(),"RosyPipsIndicator",0,1);
double buy = iCustom(Símbolo(),Período(),"RosyPipsIndicator",1,1);

  si(OrderFind(MagicSell,Símbolo()) == false && OrderFind(MagicBuy,Símbolo()) == false && vender != 0){
  OrderSend(Símbolo(),OP_SELL,5,Licitación,3,Bid+2500*Point,Bid-100*Point,"Sell Order" + Símbolo(),MagicSell,0,Verde); 
  }
  si(OrderFind(MagicSell,Símbolo()) == false && OrderFind(MagicBuy,Símbolo()) == false && comprar != 0){
  OrderSend(Símbolo(),OP_BUY,5,Ask,3,Ask-2500*Point,Ask+100*Point,"Buy Order" + Símbolo(),MagicBuy,0,Verde); 
  }
}

/**

  Order Find Function

**/  

bool OrderFind(int Magic, string symbol) 
{

   glbOrderType = -1;
   glbOrderTicket = -1;
   glbOrderProfit = 0;
   glbOrderOpen = -1;
   glbOrderStop = -1;
   gblOrderPips = 0;
   int total = OrdersTotal();
   double point =MarketInfo(símbolo,MODE_POINT);
   bool res = false;

   para(int cnt = 0 ; cnt < total ; cnt++)

     {

       OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);

       si(OrderMagicNumber() == Magic && OrderSymbol() == symbol)

         {

           glbOrderType = OrderType();
           glbOrderTicket = OrderTicket();
           glbOrderProfit = OrderProfit();
           glbOrderOpen = OrderOpenPrice();
           glbOrderStop = OrderStopLoss();
           si (glbOrderType == OP_BUY)gblOrderPips = (OrderClosePrice() - OrderOpenPrice())/punto;
           si (glbOrderType == OP_SELL)gblOrderPips = (OrderOpenPrice() - OrderClosePrice())/punto;
           res = true;

         }

     }

 devolver(res);

}

¿De cuánta utilidad te ha parecido este contenido?

¡Haz clic en una estrella para puntuarlo!

Promedio de puntuación 0 / 5. Recuento de votos: 0

Hasta ahora, ¡no hay votos!. Sé el primero en puntuar este contenido.

¡Siento que este contenido no te haya sido útil!

¡Déjame mejorar este contenido!

Diez centavos, ¿cómo puedo mejorar este contenido?



Autor: Equipo Wiki de Forex
Somos un equipo de comerciantes de Forex altamente experimentados [2000-2023] que se dedican a vivir la vida en nuestros propios términos. Nuestro principal objetivo es lograr la independencia financiera y la libertad., y hemos buscado la autoeducación y adquirido una amplia experiencia en el mercado Forex como nuestro medio para lograr un estilo de vida autosostenible..