Use martingale until profit is not less then 1000

thread: Use martingale until profit is not less then 1000

  1. #1

    Use martingale until profit is not less then 1000

    if(UseMartingleHistoryProfit(MagicNumber2)lt;0)Lot s=NextLot(MagicNumber2);elseLots=LotSize;(BUY CONDITION. .)



    AND

    //==========
    dual HistoryProfit(int magic)
    dual hp=0;
    for(int I=0;ilt;=OrdersHistoryTotal();I )
    if(OrderSelect(I,SELECT_BY_POS,MODE_HISTORY))
    if(OrderSymbol()==Symbol()OrderMagicNumber()==magi c)
    hp=OrderProfit();



    return(hp);

    dual NextLot(int magic)

    double lot=0;
    for(int I=0;ilt;=OrdersHistoryTotal();I )
    if(OrderSelect(I,SELECT_BY_POS,MODE_HISTORY))
    if(OrderSymbol()==Symbol()OrderMagicNumber()==magi c)
    lot=OrderLots()*2;



    return(lot);

  2. #2
    Martingale = threat adding to winners.
    Works great until you get a strong trend against you. . And you continue adding. . but prices keep going and going and going and going. .
    Why not put in to winners. . and cut losses short?

  3. #3
    I avaobe 2 components of my martingle stategy. Ea near open martingle order if profit is less then 0. I need change it 1000. What affects I do

  •