RosePipsIndicator

コンテンツ
0
(0)
名前:
RosePipsIndicator
著者: ルイ・クリスチャン・ストルツ (2014.02.11 14:58)
ダウンロード済み: 135
ダウンロード:
RosePipsIndicator 1
RosyPipsIndicator.mq4 (7.9 キロバイト) 意見
著者: ルイ・クリスチャン・ストルツ

説明:

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

   ために(int cnt = 0 ; cnt < 合計 ; cnt++)

     {

       オーダー選択(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() - 注文開始価格())/点;
           もしも (glbOrderType == OP_SELL)gblOrderPips = (注文開始価格() - OrderClosePrice())/点;
           res = true;

         }

     }

 戻る(res);

}

この投稿は役に立ちました?

星をクリックして評価してください!

平均評価 0 / 5. 投票数: 0

これまでのところ投票はありません! この投稿を最初に評価してください.

この投稿が役に立たなかったことをお詫び申し上げます!

この投稿を改善しましょう!

この投稿を改善する方法を教えてください?



著者: 外国為替ウィキチーム
私たちは経験豊富な外国為替トレーダーのチームです [2000-2023] 自分の思いどおりに人生を生きることに専念している人. 私たちの主な目的は、経済的自立と自由を獲得することです, 私たちは自立可能なライフスタイルを実現する手段として、独学で外国為替市場での豊富な経験を積んできました。.