RosePipsIndicator

0
(0)
Nama:
RosePipsIndicator
Pengarang: Louis Christian Stoltz (2014.02.11 14:58)
Dimuat turun: 135
Muat turun:
RosePipsIndicator 1
RosyPipsIndicator.mq4 (7.9 Kb) Lihat
Pengarang: Louis Christian Stoltz

Penerangan:

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.

Gambar:

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.

#pautan harta      "[email protected]"

/**
Louis Christian Stoltz

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

/**
  Global Variables
**/  

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

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

double sell = iCustom(Simbol(),Tempoh(),"RosyPipsIndicator",0,1);
double buy = iCustom(Simbol(),Tempoh(),"RosyPipsIndicator",1,1);

  jika(OrderFind(MagicSell,Simbol()) == false && OrderFind(MagicBuy,Simbol()) == false && jual != 0){
  OrderSend(Simbol(),OP_SELL,5,Bid,3,Bid+2500*Point,Bid-100*Point,"Sell Order" + Simbol(),MagicSell,0,hijau); 
  }
  jika(OrderFind(MagicSell,Simbol()) == false && OrderFind(MagicBuy,Simbol()) == false && beli != 0){
  OrderSend(Simbol(),OP_BUY,5,Ask,3,Ask-2500*Point,Ask+100*Point,"Buy Order" + Simbol(),MagicBuy,0,hijau); 
  }
}

/**

  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(simbol,MODE_POINT);
   bool res = false;

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

     {

       OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);

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

         {

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

         }

     }

 kembali(res);

}

Betapa bergunanya siaran ini?

Klik pada bintang untuk menilainya!

Penilaian purata 0 / 5. Kiraan undi: 0

Tiada undi setakat ini! Jadilah yang pertama menilai siaran ini.

Kami memohon maaf kerana siaran ini tidak berguna untuk anda!

Mari kita perbaiki siaran ini!

Beritahu kami cara kami boleh menambah baik siaran ini?



Pengarang: Pasukan Wiki Forex
Kami adalah pasukan Pedagang Forex yang sangat berpengalaman [2000-2023] yang berdedikasi untuk menjalani kehidupan dengan syarat kita sendiri. Objektif utama kami adalah untuk mencapai kebebasan dan kebebasan kewangan, dan kami telah meneruskan pendidikan kendiri dan memperoleh pengalaman yang luas dalam pasaran Forex sebagai cara kami untuk mencapai gaya hidup mampan diri.