0
(0)
ชื่อ:
RosePipsIndicator
ผู้เขียน: หลุยส์ คริสเตียน สโตลซ์ (2014.02.11 14:58)
ดาวน์โหลดแล้ว: 135
ดาวน์โหลด:
RosePipsIndicator 1
RosyPipsIndicator.mq4 (7.9 Kb) ดู
ผู้เขียน: หลุยส์ คริสเตียน สโตลซ์

คำอธิบาย:

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.

#ลิงค์คุณสมบัติ      "[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,เสนอราคา,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(symbol,MODE_POINT);
   bool res = false;

   สำหรับ(int cnt = 0 ; cnt < ทั้งหมด ; 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())/จุด;
           ถ้า (glbOrderType == OP_SELL)gblOrderPips = (OrderOpenPrice() - OrderClosePrice())/จุด;
           res = true;

         }

     }

 return(res);

}

โพสต์นี้มีประโยชน์เพียงใด?

คลิกที่ดาวเพื่อให้คะแนน!

คะแนนเฉลี่ย 0 / 5. นับคะแนนเสียง: 0

ยังไม่มีคะแนนโหวต! เป็นคนแรกที่ให้คะแนนโพสต์นี้.

ขออภัยที่โพสต์นี้ไม่มีประโยชน์สำหรับคุณ!

ให้เราปรับปรุงโพสต์นี้!

บอกเราว่าเราจะปรับปรุงโพสต์นี้ได้อย่างไร?



ผู้เขียน: ทีมงาน Forex Wiki
เราคือทีมผู้ซื้อขาย Forex ที่มีประสบการณ์สูง [2000-2023] ที่อุทิศตนเพื่อใช้ชีวิตในแบบของเรา. วัตถุประสงค์หลักของเราคือการได้รับอิสรภาพทางการเงินและอิสรภาพ, และเราได้ติดตามการศึกษาด้วยตนเองและได้รับประสบการณ์ที่กว้างขวางในตลาด Forex เพื่อเป็นหนทางในการบรรลุวิถีชีวิตที่ยั่งยืนด้วยตนเอง.