Jump to content

azam575

Members
  • Posts

    56
  • Joined

  • Last visited

Posts posted by azam575

  1. Hi all,

     

    Ive been reading a bit on this forum about trade copiers.. seems most of them have issues such as

    * cant close correct lot size?

    * big lag

    * not free!

     

    anyone have any suggestions on an Trade Copier that really works and is free or low cost?

    Need to share my tradees with about 4 others

     

    cheers

     

    Do you mind share your trade to me too ? i will share my copytrade :D

  2. based on my (maybe inaccurate) observation, that Cable EA is opening the buy-limit and sell-limit at the safe price (after filtered with ATR), AND expecting the opened orders will hit TP or close in total profit/pips. If no reverse and price against, Cable EA will open another against trend order, until close in total profit/pips OR ...

    IF the price never comes back (and Cable had opened some positions), then we may see a trader with sad face..

     

    i think this Cable EA is good for swinging/flatting season, but is a disaster at a really strong trend market..

     

    yup that is the main problem ... that why we have to use time filter :D .... if we run the CR 24H than there will be a drawdown ....... like happen to my fxc account .... when that happen .... i will run 1 more instances of the EA until the first EA close all orders.... then i will turn off the 2nd instances :D

     

    cycle 1 ---- if negative float then run cycles 2... if all float order close then turn off cycle 2

    cycle 2

  3. .... CableLarikanMuruku V4 QUOTE]

     

    Oh, which Version was that? I might have missed that one though :) Can you guide me to that or post a link?

     

    I have tried CableLarikan Ok 24HR which runs fine till it closes the first order and delete all pending... Then its stuck/dead... And there is this profit mode which places pending orders in addition depending on the value selected.... Check it in the tester in visual mode.

     

    The GMT version runs but shows lots of errors (130...) in the Journal while in the tester. I have put it in demo to see whats going on there. However, this version does not have the ATR filter...

     

    While having my accounts in EUR, I have reduced the MINProf about 3 points... It helps driving the PF up.

     

    Would be great if the mods or somebody who is really deep into this thread here can wrap it up for a common understanding.

     

    Cheers

     

    This is what its means :D

     

    extern int ProfitMode = 2; // 0 by pips;1 by profit;2 by totalpips,3 by totalprofit;

     

    it is for close order mode ... :D

  4. Hi muruku, I saw there is a buystop, sellstop in coding, does it works?. What is the function of his pending order in coding. Thanks. It seem when all the total floating profit reach MinProfit = 1.5 or 1.5 t/p reach it wont close all the position including the pending order. I'm testing the code by Azam.

     

    for closing the order.... i`m using other basket close ea :D .....

  5.  

    Is important check the maximum trades too, and that can be dynamic too, due to the volatility of market - for now i´m using 5 trades with step level distance, then 3 trades with 3 X the step level distance. It could handle the major drops and almost catch the tops and bottoms of sudden news and breakout of market.

     

    could you share the code ?

  6. HI EGGZACTLY,

     

    this is my idea for dynamics STEP

    string ATRCONTROL = "=======FIBO/ATR PIP CONTROL Entry=======";

     

    bool VolatilityBasedSTEP= FALSE;

    double StepFactor = 0.8;

    double ATRIncreaseDecreaseFactor = 1.0;

    int ATR_Period = 20;

    int ATR_Timeframe = 240;

     

     

     

    start()

     

    double ld_0 = iATR(NULL, ATR_Timeframe, ATR_Period2, 0);

    if (Poin == 0.01) ld_0 = ATRIncreaseDecreaseFactor * (100.0 * ld_0);

    if (Poin == 0.0001) ld_0 = ATRIncreaseDecreaseFactor * (10000.0 * ld_0);

    if (VolatilityBasedSTEP) {

    Step= NormalizeDouble(ld_0 * StepFactor, 0);

    ratio = NormalizeDouble(1, 0);

    }

     

    what do you think ?

  7. hi muruku,

     

    i`m still using the Zone A & zone B coding on my cent live account ....

     

    if(/*BandWidth >=17 && BandWidth <= 67 ATRPips <= ATRPipsLimit*/ ((ATRPrePips1 >= ATRDnLimit1 && ATRPrePips1 <= ATRUpLimit1 && ATRPrePips2 >= ATRDnLimit1 && ATRPrePips2 <= ATRUpLimit1 && ATRPips >= ATRDnLimit1 && ATRPips <= ATRUpLimit1)

    || (ATRPrePips1 >= ATRDnLimit2 && ATRPrePips1 <= ATRUpLimit2 && ATRPrePips2 >= ATRDnLimit2 && ATRPrePips2 <= ATRUpLimit2 && ATRPips >= ATRDnLimit2 && ATRPips <= ATRUpLimit2)) && MyOrdersTotal(Magic) == 0)

     

    but maybe now i`ll try your new setting ..... :D

×
×
  • Create New...