अंतर्वस्तु
0
(0)
नाम:
RosePipsIndicator
लेखक: Louis Christian Stoltz (2014.02.11 14:58)
डाउनलोड: 135
डाउनलोड करना:
RosePipsIndicator 1
RosyPipsIndicator.mq4 (7.9 केबी) देखना
लेखक: Louis Christian Stoltz

विवरण:

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.

छवि:

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.

#property link      "[email protected]"

/**
Louis Christian Stoltz

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

/**
  Global Variables
**/  

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

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

double sell = iCustom(प्रतीक(),अवधि(),"RosyPipsIndicator",0,1);
double buy = iCustom(प्रतीक(),अवधि(),"RosyPipsIndicator",1,1);

  अगर(OrderFind(MagicSell,प्रतीक()) == false && OrderFind(MagicBuy,प्रतीक()) == false && बेचना != 0){
  OrderSend(प्रतीक(),OP_SELL,5,Bid,3,Bid+2500*Point,Bid-100*Point,"Sell Order" + प्रतीक(),MagicSell,0,हरा); 
  }
  अगर(OrderFind(MagicSell,प्रतीक()) == false && OrderFind(MagicBuy,प्रतीक()) == false && खरीदना != 0){
  OrderSend(प्रतीक(),OP_BUY,5,Ask,3,Ask-2500*Point,Ask+100*Point,"Buy Order" + प्रतीक(),MagicBuy,0,हरा); 
  }
}

/**

  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(प्रतीक,MODE_POINT);
   bool res = false;

   के लिए(int cnt = 0 ; cnt < total ; cnt++)

     {

       OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);

       अगर(OrderMagicNumber() == Magic && OrderSymbol() == symbol)

         {

           glbOrderType = OrderType();
           glbOrderTicket = OrderTicket();
           glbOrderProfit = OrderProfit();
           glbOrderOpen = OrderOpenPrice();
           glbOrderStop = OrderStopLoss();
           अगर (glbOrderType == OP_BUY)gblOrderPips = (OrderClosePrice() - OrderOpenPrice())/point;
           अगर (glbOrderType == OP_SELL)gblOrderPips = (OrderOpenPrice() - OrderClosePrice())/point;
           res = true;

         }

     }

 वापस करना(res);

}

ये पोस्ट कितनी उपयोगी थी?

इसे रेट करने के लिए किसी स्टार पर क्लिक करें!

औसत श्रेणी 0 / 5. वोटों की गिनती: 0

अभी तक कोई वोट नहीं! इस पोस्ट को रेट करने वाले पहले व्यक्ति बनें.

हमें खेद है कि यह पोस्ट आपके लिए उपयोगी नहीं रही!

आइए इस पोस्ट को बेहतर बनाएं!

हमें बताएं कि हम इस पोस्ट को कैसे बेहतर बना सकते हैं?



लेखक: विदेशी मुद्रा विकी टीम
हम अत्यधिक अनुभवी विदेशी मुद्रा व्यापारियों की एक टीम हैं [2000-2023] जो अपनी शर्तों पर जीवन जीने के लिए समर्पित हैं. हमारा प्राथमिक उद्देश्य वित्तीय स्वतंत्रता और स्वतंत्रता प्राप्त करना है, और हमने स्व-शिक्षा का अनुसरण किया है और एक स्व-टिकाऊ जीवन शैली प्राप्त करने के हमारे साधन के रूप में विदेशी मुद्रा बाजार में व्यापक अनुभव प्राप्त किया है।.