2012年4月26日 星期四

賠了十餘年還留在市場中

 

進行金融投機行為已經十餘年。賠掉的金額加總起來還挺觸目驚心的。換個角度想,我還真不簡單可以弄到這麼多錢賠進去。

最初一開始是台灣股票市場,印象最深的是上了九十的旺宏。最大的遺憾是沒有買剛上市的中碳作長期投資。

若純脆只是買股票也不至於到慘賠,很快的就玩起了認購權證。然後是認售權證。再來開期貨戶頭,玩了點小台,台指選。

人到了國外後開始買買美股,ETF。然後是 2倍 3倍的黃金 ETF。被洗光光後,用信用卡入金 2000 玩起了外匯保證金交易,一個月內賺到近兩萬美。以為從此一帆風順,要過著在 villa 沙灘上拿 ipad 下單爽爽賺的好日子了。下場就不再提了。

目前的我是背著債在試驗 MT4 的 EA。怎麼說了,不過就是茍延殘喘,死撐在那而已。過著賺 5元,賠 10元的日子,燒光的一天還是要到來的。

人生能有幾個十年?

現實生活中沒有人知道我的慘烈經歷,我也不想提。只是今天碰到有朋友興沖沖的跟我說他買了幾張龍頭股要擺著當定存,心有所感,來網路上唉一下~

雖然 blog 上沒啥留言,但意外的有許多人寄 email 給我加油打氣,在此要謝謝各位好心的朋友。

我將再起!

2012年4月4日 星期三

剩 400…

 

唉~ Loser 就是 loser…  一夜之間腦充血,入金 3000美元,一個晚上就玩完。

失敗的例子就沒什麼好說了…

 

努力工作賺錢比較實在..

2012年3月22日 星期四

簡單的 EA 分享

 

這個功用其實只是幫你把該貨幣對所有未平倉的損益加總,不管是 EA 下的單還是手動單。

第一列是損益 (包含利息跟手續費)

第二列是 未平倉淨口數

第三列是損益平衡點

 

image

 

extern string  DisplayControl      = "Used to Adjust Overlay";

extern bool    displayOverlay      = true; // Turns the display on and off
extern bool    displayLogo         = true; // Turns off copyright and icon
extern int     displayXcord        = 5;  // Moves display left and right
extern int     displayYcord        = 14;   // Moves display up and down
extern int     displayFontSize     = 7;    // Changes size of display characters
extern int     displaySpacing      = 12;   // Changes space between lines
extern color   displayColor        = DeepSkyBlue; // default color of display characters

double pipvalue;

int init()
{
  pipvalue=MarketInfo(Symbol(),MODE_TICKVALUE);
        LabelCreate();
        return(0);
}

//+------------------------------------------------------------------+
//| expert deinitialization function                                 |
//+------------------------------------------------------------------+

int deinit()
{
       
Refresh();
       
return(0);
}

//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+

int start()
{
     
        int y;
        int cb=0; // Count buy
        int cs=0; // Count sell
        double tbl=0; //Count lot size
        double tsl=0; //Count lot size
        double tl=0; //total lots out
        double to=0; //total buy and sell order out 
        double pr=0;
        double pBE=0;
        double opB=0;
        double opS=0;
       
        //+------------------------------------------------------------------+
        //| Calculate Total Profits, Profit Potential and Total Orders       |
        //+------------------------------------------------------------------+

        for (y = 0; y < OrdersTotal(); y++)
        {
                OrderSelect (y, SELECT_BY_POS, MODE_TRADES);
                if ( (OrderSymbol()==Symbol()) && (OrderType()==OP_BUY)) {
                        cb++;
                        pr=pr+OrderProfit() + OrderSwap() + OrderCommission();
                        tbl=tbl+OrderLots();
                        opB=opB+OrderLots()*OrderOpenPrice();

                }
                if ( (OrderSymbol()==Symbol()) && (OrderType()==OP_SELL)) {
                        cs++;
                        pr=pr+OrderProfit() + OrderSwap() + OrderCommission();
                        tsl=tsl+OrderLots();
                        opS=opS+OrderLots()*OrderOpenPrice();
                }
                   tl=tbl-tsl;
                to=cb+cs;}

        pr        = NormalizeDouble(pr,2);

        
   
          pBE=(opB-opS)/tl;
          pBE        = NormalizeDouble(pBE,Digits);
                ObjectSet("ObjLabel_BE",OBJPROP_PRICE1,pBE);
 
       
                ObjectSetText("ObjLabel73","Total Lots:",displayFontSize,"Arial Bold",displayColor);
                ObjectSet("ObjLabel73",OBJPROP_CORNER,0);
                ObjectSet("ObjLabel73",OBJPROP_XDISTANCE,(displayXcord));
                ObjectSet("ObjLabel73",OBJPROP_YDISTANCE,(displayYcord+(displaySpacing)));
               
                ObjectSetText("ObjLabel74",DoubleToStr(tl, 2),displayFontSize,"Arial Bold",displayColor);
                ObjectSet("ObjLabel74",OBJPROP_CORNER,0);
                ObjectSet("ObjLabel74",OBJPROP_XDISTANCE,(displayXcord+75));
                ObjectSet("ObjLabel74",OBJPROP_YDISTANCE,(displayYcord+(displaySpacing)));
                              
                ObjectSetText("ObjLabel75","BreakEven",displayFontSize,"Arial Bold",displayColor);
                ObjectSet("ObjLabel75",OBJPROP_CORNER,0);
                ObjectSet("ObjLabel75",OBJPROP_XDISTANCE,(displayXcord));
                ObjectSet("ObjLabel75",OBJPROP_YDISTANCE,(displayYcord+(displaySpacing*2)));
               
                ObjectSetText("ObjLabel76",DoubleToStr(pBE, Digits),displayFontSize,"Arial Bold",displayColor);
                ObjectSet("ObjLabel76",OBJPROP_CORNER,0);
                ObjectSet("ObjLabel76",OBJPROP_XDISTANCE,(displayXcord+75));
                ObjectSet("ObjLabel76",OBJPROP_YDISTANCE,(displayYcord+(displaySpacing*2)));
    
               
 
                ObjectSetText("ObjLabel21","Portion P/L:",displayFontSize,"Arial Bold",displayColor);
                ObjectSet("ObjLabel21",OBJPROP_CORNER,0);
                ObjectSet("ObjLabel21",OBJPROP_XDISTANCE,(displayXcord));
                ObjectSet("ObjLabel21",OBJPROP_YDISTANCE,(displayYcord));
               

                       
                if(pr >= 0){  
                        ObjectSetText("ObjLabel24",DoubleToStr(pr, 2),displayFontSize,"Arial Bold",Green);
                        ObjectSet("ObjLabel24",OBJPROP_CORNER,0);
                        ObjectSet("ObjLabel24",OBJPROP_XDISTANCE,(displayXcord+75));
                        ObjectSet("ObjLabel24",OBJPROP_YDISTANCE,(displayYcord));}
                if(pr < 0){  
                        ObjectSetText("ObjLabel24",DoubleToStr(pr, 2),displayFontSize,"Arial Bold",Red);
                        ObjectSet("ObjLabel24",OBJPROP_CORNER,0);
                        ObjectSet("ObjLabel24",OBJPROP_XDISTANCE,(displayXcord+75));
                        ObjectSet("ObjLabel24",OBJPROP_YDISTANCE,(displayYcord));}
    
               
   
        return(0);
}


//+------------------------------------------------------------------+
//| Refresh Object List Function                                     |
//+------------------------------------------------------------------+

void LabelCreate(){   
       
            ObjectCreate("ObjLabel_BE",OBJ_HLINE,0,0,0);
    
            ObjectCreate("ObjLabel21",OBJ_LABEL,0,0,0);
            ObjectCreate("ObjLabel24",OBJ_LABEL,0,0,0);
    
            ObjectCreate("ObjLabel73",OBJ_LABEL,0,0,0);
            ObjectCreate("ObjLabel74",OBJ_LABEL,0,0,0);
            ObjectCreate("ObjLabel75",OBJ_LABEL,0,0,0);
            ObjectCreate("ObjLabel76",OBJ_LABEL,0,0,0);
        return;
}

void Refresh(){   
        if (displayOverlay) {
 
                ObjectDelete("ObjLabel_BE");
                ObjectDelete("ObjLabel21");
                ObjectDelete("ObjLabel24");
    
                ObjectDelete("ObjLabel73");
                ObjectDelete("ObjLabel74");
                ObjectDelete("ObjLabel75");
                ObjectDelete("ObjLabel76");
                } }

2012年3月9日 星期五

淨值 1800

 

上次發了篇淨值上 1300, 不過這中間一度降到九百多。

趁著本日非農公布的大幅震蕩,一早醒來發現上了 1800。

不過心中卻也沒多大欣喜的感覺。

離損益兩平的 2300 還有 500 要走。

希望不要再 “蹲” 下去了,不跳也不要緊,就每天每天慢慢爬 50就好了。

2012年2月27日 星期一

淨值 1300

 

好不容易,上週經歷兩三個程式的 MDD , 差點要暴倉,淨值一度只剩六百多…

終於又重回上升軌道了~

希望早日損益兩平

2012年2月21日 星期二

黃金每日技術分析 2012/02/21 by GoMarkets


Pivot: 1742.00
Our Preference: LONG positions above 1742 with targets @ 1762 & 1772.
Alternative scenario: The downside penetration of 1742 will call for a slide towards 1733 & 1716.
Comment: intraday support around 1742

電子郵件訂閱 (Subscribe via email)

請輸入您的email: