Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 42
Like Tree5Likes

Thread: MartinGaile+ Overlaping !?

  1. #11
    Master Tang is offline FX-Men Honorary Member
    Join Date
    Dec 2009
    Location
    reno nv
    Posts
    3,015
    I don't see any stop losses on any of the visible trades. And the fact that "Martingale" is used in the title, I would say yes.

    Hundreds win, but one and done on the losers.
    IyaJenkei likes this.


  2. #12
    pocariz is offline Newbie
    Join Date
    May 2012
    Posts
    1
    may i try this ea?
    i also using INSTAFOREX
    plz send

  3. #13
    advisor's Avatar
    advisor is offline Newbie
    Join Date
    Feb 2012
    Posts
    47
    Quote Originally Posted by slandrath View Post
    looking good, can use with cent account? i will test itAttachment 25205Attachment 25205
    Quote Originally Posted by pocariz View Post
    may i try this ea?
    i also using INSTAFOREX
    plz send
    Yes. Yes.
    Please open 10000 demo at insta and send me screenshots on MAIL advisorseller@gmail.com. I have now 4 different EAs.
    If you wonna test all 4 EAs - you can open 4 demo accounts.
    Last edited by advisor; 06-10-2012 at 04:32 PM.

  4. #14
    advisor's Avatar
    advisor is offline Newbie
    Join Date
    Feb 2012
    Posts
    47
    Quote Originally Posted by Master Tang View Post
    I don't see any stop losses on any of the visible trades. And the fact that "Martingale" is used in the title, I would say yes.

    Hundreds win, but one and done on the losers.
    extern string TPSet = "TakeProfit Settings";
    extern int InitTP = 1000; // reaches several pips to close the deal (seria)
    extern int LastTP_On_Off = 1; // 0-Off, 1-On, TP of the last order
    // !If LastTP_On_Off=1 than its not bring the line TP seria!
    // but will give a chance to make money by LastTP in flat
    extern double LastTPk = 0.02; // How many points (in % from InitTP)in the past came close warrant
    // example: 0,5 - 50% from InitTP
    extern int StartLastTP = 10; // From what knee start lastTP
    extern int LastSL_On_Off = 0; // OnOff LastSL

    extern double LastSLk = 0.1; // How many points (in % from InitTP)in the past came close warrant
    // example: 0,5 = 50% from InitTP

    extern int StartLastSL = 5; // From what knee start lastSL
    //------------------------------------
    I add for you LastSL in EA "UniMartinEQ". you can test it and optimise how you need. I do not like SL
    Last edited by advisor; 06-10-2012 at 04:28 PM.

  5. #15
    advisor's Avatar
    advisor is offline Newbie
    Join Date
    Feb 2012
    Posts
    47
    Quote Originally Posted by bigshow View Post
    Is this one of those robots, that only take 1 los to wipe out your balance? Or no?
    Hi.I thought about it, and united all the robots in this one! I think this one is awesome! There are many parametres:

    - 2 sides MartinGaile
    - 4 sides OverLap
    - 2 sidesLast TP
    - 4 sides Pyramid
    - 2 indicator
    - HandKeys (NEW develop) for Halp EA in drowdown>10%.
    On this video i have find lock set - looking very profit



    There descriptoin of parameters:

    #property copyright "advisorseller@gmail.com"

    extern bool NoNewTrade = False; // open new series after close all or not
    extern bool TradeBuy = True; // open all Buy orders Type
    extern bool TradeSell = True; // open all Sell odrers Type
    extern bool NewSerialBuy = True; // open new seria MartinGaile Buy
    extern bool NewSerialSell = True; // open new seria MartinGaile Sell
    extern bool NewKneeIlanBuy = True; // open new knee MartinGaile (level) Buy
    extern bool NewKneeIlanSell = True; // open new knee MartinGaile (level)Sell
    extern bool TradePyrBuy = True; // open Pyramid Buy
    extern bool TradePyrSell = True; // open Pyramid Sell

    extern string _s2_ = "--> Use Indicators ? ";
    extern bool SglStartMartin = false; // open new MartinGaile series by Indicators (start order)
    extern bool SglKneeMartin = False; // open new MartinGaile knees by Indicators (all Martin order)
    extern bool SglStartPyramid = False; // Open Pyramid orders by Indicators

    extern string _s3_ = "--> Lots Settings <---";
    extern int lotdecimal = 2; // 2 - MicroLots 0.01, 1 - MiniLots 0.1, 0 - NormalLots 1.0
    extern double StartLot = 0.1; // StartLot if Risk = 0
    extern double Risk = 0.01; // First Order in % from depo(0.05...3), if = 0, when StartLot
    extern double MaxLot = 10000; // MaxLot of MartinGaile
    extern double MaxLotP = 10000; // MaxLot of Pyramid
    extern double MaxLotLock = 1.5; // MaxLot when start Lock
    extern int MaxTrades = 100; // Maximal orders of Martingaile
    extern string _s4_ = "--> MartinGaile Settings <---";
    extern int IlanStep = 30; // Step between MartinGaile Orders
    extern double IlanLotExponent = 1.7; // LotExponent of MartinGaile (next Lot = prev*LotExp)
    extern bool NonStopIlan = True; // True - New Knee Martin will open always(with any Pyramid), False - New Knee Martin will not open if there is just 1 order of Pyramid
    extern bool OppositeOrder = false; // True - open opposite order with last Martim Order(in % from Last)
    extern double OppositeOrderKoef = 0.3; // what % of Last Martin order will open Opposite
    extern int StartOpposite = 5; // from what knee Martin start Opposite order
    extern bool RybDrawdownTrendOps = true; // Open Trend order in % from sumBuy-sumSell?
    extern int DrawdownTrendOps = 20; // In what drowdownopen trend order?
    extern double KoefDrawdownTrendOps = 0.2; // % from sumBuy-sumSell?
    extern string _s5_ = "--> Pyramid & Lock Settings <---";
    extern string _s5_1_ = "--> Pyramid <---";
    extern int MethodPyr = 1; // 0- in % from sum Martin orders(1+2+3+all knees), 1- in % only from Last Martin order
    extern int PyramidStart = 6; // From what knee start Pyramid
    extern double PyramidKoef = 0.5; // what % from Sum Martin knees (levels) or Last Martin order we open Lot Piramid
    extern int PyramidStep = 30; // Step of "counter_MartinGaile" Pyramid
    extern int PyrMaxOrder = 10000; // Max Orders of Pyramid
    extern int PyramidStepI = 30; // Step Pyramid if it go in trend
    extern double PyramidLotExponent = 5; // Multiplier for pyramid: NewPyrLot = preLotRyr/PyramidLotExponent
    extern bool KysKys = True; // If we have Profit in CounterTrendPyramide - use Overlap for overcome(eat) bad Martin orders by this profit?
    extern bool KysKysT = True; // If we have Profit in TrendPyramide - use Overlap for overcome(eat) bad Martin orders by this profit?
    extern string _s5_2_ = "--> Lock <---";
    extern bool OpenLock = False; // Use Lock?(only if sum MartinOrders>=MaxLotLock
    extern double LockKoef = 0.8; // Lock lot in % from sum Martin orders
    extern int DistanLock = 15; // Distance to pending order Lock
    extern string _s5_3_ = "--> Swing Settings<---";
    extern bool OpenSwing = False; // Use Swing_Lock (only if sum MartinOrders>=MaxLotLock & OpenLock=true)
    extern double SwingKoef = 0.8; // Swing_Lock lot in % from sum Martin orders
    extern int DistanSwing = 15; // Distance to pending order Swing_Lock

    extern string _s6_ = "--> Martingaile LAST TP <---";
    extern bool LastTP = true; // Use Last TP?
    extern bool KysKysLast = True; // Use Overlap first order of the series by Last TP?
    extern double KoefLast = 0.2; // Coefficient of Overlap LastTP (how many profit we use for overlap)
    extern int LastTPTake = 25; // Take Last TP (in Pips)
    extern int ColOrLastOn = 5; // From what # of MartinLevel(knee) start LastTP
    extern bool LastTradePir = false; // if True - always LastTP, if False - LastTP stop if there is order of Pyramid

    extern string _s7_ = "--> Close Settings <---";
    extern string _s7_1_ = "--> Close Serieses separately by TP in DD(pips) <---";
    extern bool CloseTP = True; // Use Close the series separate TP in DD
    extern int ColCloseTP = 6; // Over how many Martin orders that he should closed TP(# Martin order)
    extern double TakeProfit = 10; // TP of Series (pips)
    extern string _s7_2_ = "--> Close Global TP (all serieses,pips) <---";
    extern bool CloseTPALL_OT = True; // Use Close TP Martin separately
    extern bool CloseTPALL = True; // Global TP
    extern double TakeProfitALL = 50; // TP (pips)
    extern string _s7_3_ = "--> Global Close in Money <---";
    extern bool CloseProfit = False; // Use Close Money
    extern double MinProfit = 100; // Min Profit for Global close(money)
    extern string _s7_4_ = "--> Swing Close Settings <---";
    extern bool CloseProfitSwing = False; // Use Close Swing Money
    extern double MinProfitSwing = 0; // Min Profit for Swing close(money)
    extern string _s7_5_ = "--> Eqity Close <---";
    extern bool CloseEquity = false; // Use Eqity Close
    extern double MaxEquityProfit = 5; // what %% +depo need for close Eqity
    extern string _s8_ = "--> Other Settings <---";
    extern bool CloseBY = True; // Use CloseBy function for close in Eqity? (close by lock, do not reboot terminal!)
    extern bool UseNewBar = False; // Use filter NewBar? If TRUE - 1 odrer per 1 candle, not more
    extern int Pause = 120; // at InstaForex we cannot close order 120 sec after his open
    extern bool Debug = False; // draw debuggin ? (better FALSE in tests & optimisations)
    //-------------------для Show_Info()--------------------------------------------
    extern bool DisplayInfo = true; // draw info indicators (better FALSE in tests & optimisations)
    extern bool VisualButton = True; // draw key-scripts (better FALSE in tests & optimisations)

    extern int ExMagicBuy = 1000; // Magic Martin Buy
    extern int ExMagicBuyP = 2000; // Magic trend_Pyramid Buy
    extern int ExMagicBuyPT = 3000; // Magic countertrend_Pyramid Buy
    extern int ExMagicSell = 4000; // Magic Martin Sell
    extern int ExMagicSellP = 5000; // Magic trend_Pyramid Buy
    extern int ExMagicSellPT = 6000; // Magic countertrend_Pyramid Buy
    extern int Slippage = 5; // requotes

    bool DeleteOrders=True; // Удалять отложенные ордера
    //----------------------------------------------------------
    extern string t101 = "Indicator SAR settings";
    extern double Sar_Step = 0.02; // Add to stop level
    extern double Sar_maximum = 0.2; // Max stop level
    extern int SAR_TF = 60; // 1-1 min 5-5 min 15-15 min 30-30 min 60-1 h 0-current TF
    extern string t102 = "Indicator MA settings";
    extern int MA_period = 3; // period of MA fast
    extern int MA_Method = 1; // (MODE_SMA=0; MODE_EMA=1; MODE_SMMA=2; MODE_LWMA=3)
    extern int MA_Price = 0; // (PRICE_CLOSE=0; PRICE_OPEN=1; PRICE_HIGH=2; PRICE_LOW=3; PRICE_MEDIAN=4, (high+low)/2;
    //PRICE_TYPICAL=5, (high+low+close)/3; PRICE_WEIGHTED=6, (high+low+close+close)/4)
    extern int MA_TF = 60; // 1-1 min 5-5 min 15-15 min 30-30 min 60-1 h 0-current TF
    //-----------------------------------------------------------
    extern string t11 = "Profit indicator settings";
    extern color ColorInd = Silver; // text Color
    extern int xDist = 50; // x coordinates
    extern int yDist = 100; // y coordinates
    extern int FontSize = 0; // text size
    PS: This EA very universal, stabil and profit. You can use also KEY-script for scalping inside EA trading.
    Best work at InstaForex.com.

    Сonclusion - the Martingale can be stable in conjunction with Locks
    Last edited by advisor; 07-27-2012 at 09:32 AM.

  6. #16
    richbugger is offline Junior Member
    Join Date
    Oct 2011
    Posts
    126
    Quote Originally Posted by advisor View Post
    Hi.I thought about it, and united all the robots in this one! I think this one is awesome! There are many parametres:



    On this video i have find lock set - looking very profit



    There descriptoin of parameters:

    #property copyright "advisorseller@gmail.com"


    PS: This EA very universal, stabil and profit. You can use also KEY-script for scalping inside EA trading.
    Best work at InstaForex.com.

    Сonclusion - the Martingale can be stable in conjunction with Locks
    I agree with you that it is possible to be profitable with a martingale ea. I am actually using a martingale ea called forex grid trader and it seems to working alright for me. The trick is to just use small lot sizes from what I've seen.

    Do you mind sharing your ea with me? I would also like to test it and see how it performs. It looks promising to me so far.

  7. #17
    advisor's Avatar
    advisor is offline Newbie
    Join Date
    Feb 2012
    Posts
    47
    Quote Originally Posted by richbugger View Post
    I agree with you that it is possible to be profitable with a martingale ea. I am actually using a martingale ea called forex grid trader and it seems to working alright for me. The trick is to just use small lot sizes from what I've seen.

    Do you mind sharing your ea with me? I would also like to test it and see how it performs. It looks promising to me so far.
    No problem! advisorseller@gmail.com
    But You use simple NartinGaile - it is danger. I use Martin + Lock(hedge) it is better
    Last edited by advisor; 07-30-2012 at 05:52 AM.

  8. #18
    richbugger is offline Junior Member
    Join Date
    Oct 2011
    Posts
    126
    got your email today. So let me get you right....if I open an account of $100.00 with Insta Forex then you'll share the ea with me?

  9. #19
    advisor's Avatar
    advisor is offline Newbie
    Join Date
    Feb 2012
    Posts
    47
    Quote Originally Posted by richbugger View Post
    got your email today. So let me get you right....if I open an account of $100.00 with Insta Forex then you'll share the ea with me?
    i sad that if you open demo - i will send you Ea for this demo, and you will try it for free

    But why insta?
    becausse:
    1)it has cent accounts 100$ = 10000 depo in cent
    2)always 3 pips spread
    3)Hedge margin is 25%
    4)MaxLot = 10000
    5)Max leverage = 1:1000 ~ low margin

    Also i find today this broker- Trading Conditions | Lucror FX
    1)no ccent akk
    2)var pips
    3)HedgeMargin=0
    4)MaxLot = any
    5)max leverage = 1:500


    This brokers are the best for martin+hedge systems. Let me cnow if cnow good brookers like this conditions
    Last edited by advisor; 07-30-2012 at 08:52 PM.

  10. #20
    force199 is offline Newbie
    Join Date
    Apr 2012
    Posts
    10
    Hiya,

    Can I just butt in with a question please. I'm trialing another Martingale based system at the moment and am a bit worried about leverage.

    Question 1:
    If I have a leverage of 1:300 for example, and if I'm trading during a market crash like the one in 2007 or the one in September 2001 that shook the market, would I end up owing 300 times my fund value to the broker? What are the chances of this happening?

    Question 2:
    Is it not safer and better to trade on a 1:1 leverage? And program the EA to not open trades when more than 70% of the funds are in use?

    Thanks for your time in helping me with this dilemma.

Page 2 of 5 FirstFirst 1234 ... LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
"You become what you think about."
Earl Nightingale