佳礼资讯网

 找回密码
 注册

ADVERTISEMENT

查看: 1083|回复: 5

新手小户操盘护单必要

[复制链接]
发表于 26-8-2009 06:09 PM | 显示全部楼层 |阅读模式
新手小户操盘护单必要

              当单子进入市场后,如果盘面获利超过30点后,就务必将止损前移到进场价前,不管行情后市怎样走,我们的本金都不会受到威胁,就算后市震荡回调.变盘,我们都不怕,最多单子白干孬赚又或者小赚,绝不会赔本。
              当盘面牛皮.胶着盘整,现在虽然巳经获利{巳前移止损了,单子不存在亏损},但是,却又未能到达我设定的止赢位时,如果,连续三小时都冲不破当前最高点{多单}.最低点{空单},那就先找位置平仓离场观望,怕万一变盘,将本来赢利的都吐出来,于心不甘。
              当行情破位后,我们不要急于马上进场,应该等行情回调十来二十点后,行情不再往下了,往回抽头后再点击进场{多单}{空单反之},这样,单子进场位离我设定的止损位又少了十来二十点{成本少了},而获利后也等于多赚十来二十点{赢利大}
              当单子进场后,行情上行没力{多单}.下行没力{空单},虽然获利,但又没到30点前移止损的位置,而行情又往回打压,靠近我们的进场位时,应该在不亏损的情况底下坚决平仓离场观望,等行情稳定后看情况再决定进场,这时进场比刚才进场位置更好,止损更少,获利相对更多,就算损了,也就那一点点,要赚回来根本不费吹灰之力。
              当行情快到我设定的止赢位时,可以自行让电脑止赢,也可以看看它的势头力度是否强势,如果是强势可以改成第二止赢又戓者下移动止损{30点比较合适}搏它更大利润。
              谋事在人,成事在市场。
              虽然我对行情后市的预判是在80120点之间,但是,我只是人,不是神,市场永远都是对的,所以盘中必须灵活自行掌据,从而提高单子质量。
              新手入市,先不要想着要从汇市赚多少多少,反而时刻想着怎样去保护本金安全,只要你本金还在,你才能向明天的汇市说再见,赔光了这个再见是加双引号的!
              祝大家好运,合作共赢!!!


新手忠告

                                         个人认为。

这样可能比较怕死,赚不了大钱,起码保本。

小仓者可在订下的进场位破位回调再破才进场,这样它变盘的机率相对少很多,也就是本金更安全,如果能赚,那赚少几十点又何妨?
忠告。
新手入市,首先不是想着在汇市赚多少,而最重要的是先保本。

回复

使用道具 举报


ADVERTISEMENT

发表于 26-8-2009 06:13 PM | 显示全部楼层
很多人都懂 可是不是个个都做得到 。。。
回复

使用道具 举报

 楼主| 发表于 26-8-2009 06:37 PM | 显示全部楼层
心态决定一切。
汇市之中市场千变万化,灵活的操盘手法必不可少!
回复

使用道具 举报

发表于 27-8-2009 01:45 AM | 显示全部楼层
心态 60 % 市场永远都是对的.
回复

使用道具 举报

发表于 27-8-2009 02:25 AM | 显示全部楼层
原帖由 镑美ATM 于 26-8-2009 06:09 PM 发表
新手小户操盘护单必要

              当单子进入市场后,如果盘面获利超过30点后,就务必将止损前移到进场价前,不管行情后市怎样走,我们的本金都不会受到威胁,就算后市震荡回调.变盘,我们都不怕,最多单子白 ...


获利 30 点后自动将止损前移到进场价前 5 点的 ea 。。。

用 H4 的 RSI 来决定什么时候可以开始买卖。。。

用 M5 的 ema 和 RSI 来决定比较精确的布局时机。。。

就是这样简单啦。。。通常从开始布局 2 到 3 天之后都可以至少赚  100 点。。。



~~~~~~~~~~~~~~~~~~~~~~~~


//+------------------------------------------------------------------+
//|                                                   Sound_Only.mq4 |
//|                       Copyright ?2009, MetaQuotes Software Corp. |
//|                                        http://www.metaquotes.net |
//+------------------------------------------------------------------+

#property copyright "Copyright 2009, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net"

double ProtectPips = 0.0030;
double TakeProfitPips = 0.0005;

int Frame_SR = 0;  
int EMA_SR = 250;

double LeftSeconds = 0.0;

string PrintDetails = "no";

string SoundText = "none";
string OrderProtected = "no";

string EMA_Status = "none";

int cnt = 0;   
int count = 0;

int init()
{
   Print("init";

   return(0);
}

int deinit()
{
   Print("deinit";
   return(0);
}

int start()
{

   Print("";
   
   double TotalPips = 0.0;
   double StopProfitLoss = 0.0;
   double TakeProfitLoss = 0.0;
   double ProfitLoss = 0.0;

   cnt = 0;
   count = 0;

   int cntBuy = 0;
   int cntSell = 0;
   int cntUnprotected = 0;

   double StopLossNewValueBuy = 0.00;

   for(cnt = 0 ; cnt < OrdersTotal() ; cnt++)
   {
      OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
      if (OrderSymbol() == Symbol())
      
      if(OrderType() == 0)
      {
         TotalPips = TotalPips + (Bid - OrderOpenPrice());
         StopProfitLoss = OrderStopLoss() - OrderOpenPrice();
         TakeProfitLoss = OrderTakeProfit() - OrderOpenPrice();
         ProfitLoss = Bid - OrderOpenPrice();
         cntBuy++;
         if(Bid - OrderOpenPrice() > ProtectPips && OrderStopLoss() == 0.0000)
         {
            StopLossNewValueBuy = OrderOpenPrice() + TakeProfitPips;
            OrderModify(OrderTicket(),OrderOpenPrice(),StopLossNewValueBuy,OrderTakeProfit(),0,Blue);
            OrderProtected = "yes";
         }
         if(OrderStopLoss() == 0.0000 || OrderStopLoss() - OrderOpenPrice() < 0)
         {
            cntUnprotected++;
         }
      }
      
      if(OrderType() == 1)
      {
         TotalPips = TotalPips + (OrderOpenPrice() - Ask);
         StopProfitLoss = OrderOpenPrice() - OrderStopLoss();
         TakeProfitLoss = OrderOpenPrice() - OrderTakeProfit();
         ProfitLoss = OrderOpenPrice() - Ask;
         cntSell++;
         if(OrderOpenPrice() - Ask > ProtectPips && OrderStopLoss() == 0.0000)
         {
            StopLossNewValueBuy = OrderOpenPrice() - TakeProfitPips;
            OrderModify(OrderTicket(),OrderOpenPrice(),StopLossNewValueBuy,OrderTakeProfit(),0,Blue);
            OrderProtected = "yes";
         }
         if(OrderStopLoss() == 0.0000 || OrderOpenPrice() - OrderStopLoss() < 0)
         {
            cntUnprotected++;
         }
      }

      if(OrdersTotal() - cnt < 2)
      {
         LeftSeconds = TimeCurrent() - OrderOpenTime();
      }

      if(PrintDetails == "yes"
      {
         Print("OT = ", OrderTicket(), "  ", TimeToStr(OrderOpenTime()), "    TY = ", OrderType(), "    LT = ", OrderLots(), "    OP = ", OrderOpenPrice(), "    SP = ", StopProfitLoss, "    PL = ", ProfitLoss);
      }
            
      count++;

   }  

   Print("Frame = ", Frame_SR, "    EMA = ", EMA_SR);

   double EMA_SR_150_Value = iMA(NULL,Frame_SR,150,0,1,0,0);  
   double EMA_SR_250_Value = iMA(NULL,Frame_SR,250,0,1,0,0);  
   
   double EMA_SR_Value = iMA(NULL,Frame_SR,EMA_SR,0,1,0,0);  
   
   double RSI_SR = iRSI(NULL,Frame_SR,14,PRICE_CLOSE,0);
   
   // news stops expert ok alert tick starwars robocop wmpaud4 wmpaud2 bugsbunny2 daffyduck2

   if(OrderProtected == "yes"
   {
      SoundText = "Order Protect";
      OrderProtected = "no";
      PlaySound("Love_of_Siam_Gun_lae_gun.wav";
   }else{      
      if(RSI_SR > 70)
      {
         SoundText = "Over Bought";
         PlaySound("starwars.wav";
      }else{
         if(RSI_SR >65 && RSI_SR <= 70)
         {
            SoundText = "UP +++";
            PlaySound("news.wav";
         }else{            
            if(RSI_SR >60 && RSI_SR <= 65)
            {
               SoundText = "UP ---";
               PlaySound("expert.wav";
            }else{
               if(RSI_SR >=35 && RSI_SR < 40)
               {
                  SoundText = "DOWN ---";
                  PlaySound("ok.wav";
               }else{            
                  if(RSI_SR >= 30 && RSI_SR < 35)
                  {
                     SoundText = "DOWN +++";
                     PlaySound("stops.wav";
                  }else{
                     if(RSI_SR < 30)
                     {
                        SoundText = "Over Sold";
                        PlaySound("robocop.wav";
                     }else{
                        if(EMA_SR_150_Value > EMA_SR_250_Value){
                           SoundText = "Up Trend";
                           PlaySound("alert.wav";        
                        }else{
                           SoundText = "Down Trend";
                           PlaySound("tick.wav";        
                        }                        
                     }
                  }
               }
            }
         }
      }
   }                                          
   
   double SpreadDiffrence = Bid - Ask;

   Print("Spread = ", DoubleToStr(SpreadDiffrence,4), "    TotalOrders = ", OrdersTotal(), "    Buy = ", cntBuy, "    Sell = ", cntSell, "    Unprotected = ", cntUnprotected, "    TotalPips = ", DoubleToStr(TotalPips,4), "    ***";
   
   if(EMA_SR_150_Value > EMA_SR_250_Value){
      EMA_Status = "BUY";
   }else{
      EMA_Status = "SELL";
   }
   
   Comment("UP = ", cntUnprotected, "  OT = ", OrdersTotal(), "  PP = ", DoubleToStr(ProtectPips,4), "  TP = ", DoubleToStr(TakeProfitPips,4), "  ACT = ", EMA_Status, "  ST = ", SoundText, "  LM = ", DoubleToStr(LeftSeconds/60,2), "  SP = ", DoubleToStr(Bid - Ask,4), "  Bid = ", DoubleToStr(Bid - EMA_SR_250_Value,4));

   return(0);

}
回复

使用道具 举报

 楼主| 发表于 27-8-2009 10:50 AM | 显示全部楼层
通常从开始布局 2 到 3 天之后都可以至少赚  100 点。。。

??????????????????????
不会吧?
2~3天才赚那百点?
是不是要求底了点?
就以昨晚我的投资方案为例:高空gbpusd+eurusd随便都能赚过150点啦!
这可只是晚盘而已!
回复

使用道具 举报

Follow Us
您需要登录后才可以回帖 登录 | 注册

本版积分规则

 

ADVERTISEMENT



ADVERTISEMENT



ADVERTISEMENT

ADVERTISEMENT


版权所有 © 1996-2023 Cari Internet Sdn Bhd (483575-W)|IPSERVERONE 提供云主机|广告刊登|关于我们|私隐权|免控|投诉|联络|脸书|佳礼资讯网

GMT+8, 10-3-2025 05:06 AM , Processed in 0.142949 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表